Question
Web Service Help
I am setting up a web service for my first time. I have two
"clients" that would like to access this web service but they would
like to pass data to me differently. One would like to pass it as
an array and the other would like to pass it as individual strings.
How would I write the conditional statement in the CFC? CF doesn't
seem to like the following...
<cfif cgi.remote_host EQ "##.##.##.##">
assign argument vars to values passed as array
<cfelseif cgi.remote_host EQ "XX.XX.XX.XX">
assign argument vars to values passed as strings
</cfif>
<cfif cgi.remote_host EQ "##.##.##.##">
assign argument vars to values passed as array
<cfelseif cgi.remote_host EQ "XX.XX.XX.XX">
assign argument vars to values passed as strings
</cfif>
