Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>The following solution was the answer to my problem. And Filburt, once I actually made a good SOAP call, I discovered that you're question was highly legitimate. The type and format mattered greatly!</p> <pre><code>'set up xmlhttp to checkout server Dim oRequest Set oRequest = Server.CreateObject("MSXML2.ServerXMLHTTP") 'setting this option will allow ServerXMLHTTP to ignore the certificate errors it encounters. oRequest.setOption(2) = SXH_SERVER_CERT_IGNORE_ALL_SERVER_ERRORS ' resolve, connect, send, receive - in milliseconds oRequest.setTimeouts 10000, 10000, 10000, 10000 'set the URL msURL = "[Service Url]" msSOAP = "&lt;?xml version=""1.0"" encoding=""utf-8"" ?&gt;" msSOAP = msSOAP &amp; "&lt;s:Envelope xmlns:s=""http://schemas.xmlsoap.org/soap/envelope/""&gt;" msSOAP = msSOAP &amp; "&lt;s:Body&gt;" msSOAP = msSOAP &amp; "&lt;[MethodName] xmlns=""[Some Namespace]""&gt;" msSOAP = msSOAP &amp; "&lt;methodParam1&gt;[Some value]&lt;/methodParam1&gt;" msSOAP = msSOAP &amp; "&lt;methodParam2&gt;[Some value]&lt;/methodParam2&gt;" msSOAP = msSOAP &amp; "&lt;methodParam3&gt;[Some value]&lt;/methodParam3&gt;" msSOAP = msSOAP &amp; "&lt;/MethodName&gt;" msSOAP = msSOAP &amp; "&lt;/s:Body&gt;" msSOAP = msSOAP &amp; "&lt;/s:Envelope&gt;" oRequest.Open "POST", msURL, False oRequest.setRequestHeader "Content-Type", "text/xml" oRequest.setRequestHeader "SOAPAction", "[Some Url]" oRequest.send msSOAP </code></pre> <p>I took the "?wsdl" off of the url and changed the envelope a bit and it works now. I also removed the setting of the SoapMethodName header.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload