HTTP get
At my workplace we have a trixbox phone system which has a module installed called CallerID lookup sources. We also have our CRM system which I
wrote in coldfusion.
The callerid module lets you set a lookup source as a webpage sending the telephone number using the GET method as shown below:
http://cfserver/cidlookup.cfm?cid=[number]
What I need to do is fill cidlookup.cfm with code that looks up the telephone no. in our database and then returns it, i believe on the Request-URI header?
I've plenty of CF experience but never really used the HTTP GET command (normally just use POST).
Can someone point me in the right direction as there is little or no documentation on this on internet searches/forums etc.