xmlUrl = 'https://apitest.authorize.net/soap/v1/Service.asmx'; // Set the URL
interopPermission = new InteropPermission(InteropKind::ComInterop);
InteropPermission.assert();
objXHTTP = new COM(#serverxmlHttp);
objXHTTP.settimeouts(#xmlResolve, #xmlConnect, #xmlSend, #xmlReceive);
objXHTTP.Open("POST", xmlUrl, false);
objXHTTP.setRequestHeader("Content-Type", "text/xml");
objXHTTP.setRequestHeader("SOAPAction", "https://apitest.authorize.net/soap/v1/#CreateCustomerProfile");
The new error is as follows:
Server did not recognize the value of HTTP Header SOAPAction: https://apitest.authorize.net/soap/v1/#CreateCustomerProfile
06-14-2013 03:47 PM
If you going to send xml, why not use the CIM XML?
06-14-2013 05:29 PM
What do you mean by using CIM XML.. Do you have an example?
Thanks
06-17-2013 07:17 AM
Look like it is simlar to the CIM - ASP Classic in
06-17-2013 07:45 AM