SSL Error

wxdqz

New Member
On my checkout page sending data using an XML form to the gateway I was getting an error:

msxml3.dll error '800c000e'
A security problem occurred.
/<domain>/store/secure_checkout.asp, line 149
************************

coding at these lines are:
Line 147 - 149 is:
Set xml = Server.CreateObject("Microsoft.XMLHTTP")
xml.open "POST", "https://secure.authorize.net/gateway/transact.dll?" & vPostData & "", false
xml.send ""

*******************

Tech support gave me this coding to insert to rectify the problem:

const SXH_SERVER_CERT_IGNORE_ALL_SERVER_ERRORS = 13056
xmlObject.setOption 2, SXH_SERVER_CERT_IGNORE_ALL_SERVER_ERRORS

I have tried multiple places on this page to insert these lines and it does not work when I insert them.

If you could tell me where to insert or if this coding to resolve the problem is incorrect.

My understanding is the coding will suppress the error and let the form continue to send the data.

Any help is appreciated!!

Teresa
 
Back
Top