CFHTTPParam - Multiple named pairs, same field name, passed
Hi,
I have to hit an API that accepts multiple variables with the post over the URL, but it wants the named pairs.
Here's an example of what they are looking form.
http://www.foo.com/sendEmail.js?CompanyName=ABCCompany&Address=27 Main Street&CompanyName=XYZ Company&Address=35 Main Street... so on and so forth.
However, using cfhttp and looping over cfhttpparam for each record, ColdFusion appears to be creating a comma-delimited list:
http://www.foo.com/sendEmail.js?CompanyName=ABCCompany,XYZ Company&Address=27 Main Street,35 Main Street... so on and so forth.
The API can not handle this method. Is there a way within the cfhttpparam to force it not create a list?
