Copy link to clipboard
Copied
I am stumped with a payment gateway integration. A client was forced to move to a new gateway processor. The new TSL requirement then forced me to upgrade the server & their site to CF11 (up from CF9).
I have replaced appropriate information but cannot make a connection to the new gateway.
I am not a strong programmer and have little CF knowledge. Does anyone have any insight or able to take a look? It is set up with a test sandbox.
I do not know if my issue is in formatting the XML or CFHTTP or...?
Any help appreciated, thanks.
Cheers
Copy link to clipboard
Copied
Yes, the latest TLS requirements the payment gateways must comply with require you to upgrade from CF9 to CF11 -- 9 does not support TLS 1.2 which is required. Depending on the SSL certificate (or more specifically, the authority that issued the certificate) you may need to import the certificate into the CF certificate store. There are several thread on certificate importing. Here is an Adobe KB article: Import certificates to Adobe ColdFusion's truststore
Copy link to clipboard
Copied
I have some projects that still use ColdFusion 8 & 9 (Windows) and am able to connect to everything using CFX_HTTP5. (Adiabata, Inc. - CFX_HTTP5)
In addition, CFX_HTTP5 can:
I've since upgraded some web applications to ColdFusion 11. I built in the option to use either CFHTTP or CFX_HTTP5 and I still prefer the performance & feature set of CFX_HTTP5.
Copy link to clipboard
Copied
Thank you Jamo!
Copy link to clipboard
Copied
Thank you Steve!