> Im trying to use a CFHTTP GET to a secure site for > transaction validation. I've verified that all the > code is OK (I can get the right response by using > the URL normally) but I cant GET the result. > > I've read that CF had a problem with certificates > under NT. Is there anything like this in the linux > version. Or has anyone had any experince of this? > > Heres some code where you can test out the problem: > > <CFHTTP > URL="https://www.paypal.com/cgi-bin/webscr?cmd=_notify-validat > e�ify_version=1%2E3&txn_id=test&payment_gross=what > &payment_status=goes&receiver_email=tallyho&payer_email=tallyho > &verify_sign=8273498739473947378" METHOD="GET" RESOLVEURL="false"> > </CFHTTP> > > <a > href="https://www.paypal.com/cgi-bin/webscr?cmd=_notify-valida > te�ify_version=1%2E3&txn_id=test&payment_gross=what > &payment_status=goes&receiver_email=tallyho&payer_email=tallyho > &verify_sign=8273498739473947378">test</a> > > The <a href> returns an INVALID statement but when using get > the query never returns - just eventually times out.
It looks to me like there are invalid characters in the URL in both cases. In the case of the browser, it'll probably escape the characters for you, but CFHTTP won't do that. CFHTTP in all versions should now work with HTTPS, although I haven't tested it under Linux. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444 ______________________________________________________________________ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm ------------------------------------------------------------------------------ Archives: http://www.mail-archive.com/cf-linux%40houseoffusion.com/ To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_linux or send a message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
