spacehog wrote:
> So then the webservice as we currently have it is not
useable?
>
> Is there any way then to pass a URL like:
>
>
http://servername/filename.pl?ID=12345
>
> and be able to use the string that is passed back?
>
Well that does not seem to be a web service. If you just want
to
request an HTTP url, the <cfhttp...> tag is pretty
useful for this.
<cfhttp url="
http://servername/filename.pl?id=12345">
OR
<cfhttp url="
http://servername/filename.pl">
<cfhttpparam name="id" value="12345" type="url">
</cfhttp>
and then
<cfoutput>#len(cfhttp.filecontent)#</cfoutput>
OR
<cfoutput>#httpCodeFormat(cfhttp.filecontent)#</cfoutput>