Note that there are some explanatory texts on larger screens.

plurals
  1. POWhat is the appropriate SOAP Action?
    primarykey
    data
    text
    <p>I am using Coldfusion 8. I have exceedingly limited experience with SOAP. </p> <p>I am trying to send out a SOAP request. My SOAP body looks like this:</p> <pre><code>&lt;cfsavecontent variable="SoapBody"&gt; &lt;cfoutput&gt; &lt;soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:v2="http://www.a2zshow.com/DataServices/v2/" &gt; &lt;soapenv:Header&gt; &lt;a2zAuthenticationHeader xmlns="http://www.a2zshow.com/DataServices/v2/"&gt; &lt;Key&gt;#Key#&lt;/Key&gt; &lt;UserName&gt;#UserName#&lt;/UserName&gt; &lt;Password&gt;#Password#&lt;/Password&gt; &lt;InstallName&gt;#InstallName#&lt;/InstallName&gt; &lt;/a2zAuthenticationHeader&gt; &lt;/soapenv:Header&gt; &lt;soapenv:Body&gt; &lt;DataService xmlns="http://www.a2zshow.com/DataServices/ExhibitorListRequest/v1"&gt; &lt;Request&gt; &lt;a2zXMLRootNode&gt; &lt;RequestHeader&gt; &lt;RequestAttribute Search="NONE"/&gt; &lt;/RequestHeader&gt; &lt;RequestCriteria&gt; &lt;EventID&gt;#EventID#&lt;/EventID&gt; &lt;/RequestCriteria&gt; &lt;/a2zXMLRootNode&gt; &lt;/Request&gt; &lt;/DataService&gt; &lt;/soapenv:Body&gt; &lt;/soapenv:Envelope&gt; &lt;/cfoutput&gt; &lt;/cfsavecontent&gt; </code></pre> <p>My SOAP request looks like this:</p> <pre><code>&lt;cfhttp url="#PostURL#" method="post" result="httpResponse"&gt; &lt;cfhttpparam type="header" name="SOAPAction" value="#SOAPAction#" /&gt; &lt;cfhttpparam type="xml" value="#trim(soapBody)#"/&gt; &lt;/cfhttp&gt; </code></pre> <p>The SOAPAction variable is set like this:</p> <pre><code>SOAPAction = "http://www.a2zshow.com/getExhibitorList"; </code></pre> <p>I think I am successfully posting to the right place, but I am getting an error message saying that client didn't recognize the SOAPAction. Here's my error:</p> <pre><code>soap:ClientServer did not recognize the value of HTTP Header SOAPAction: http://www.a2zshow.com/getExhibitorList. </code></pre> <p>This error seems to be telling me that I don't have the SOAPAction correct. The guy at the other end tells me that I have everything set up right and that it should be working. Is there something missing?</p>
    singulars
    1. This table or related slice is empty.
    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.
 

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