Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>Download SOAPUI Application (Available for both MAC and PC) from <a href="http://www.soapui.org/" rel="noreferrer">http://www.soapui.org/</a>. I gave that WSDL to SOAP UI and I see GetAdvertisers, GetPlans, GetPlansByAdvertiser,GetReportPostBuy, HelloWorld,Login. For which one are you looking to get SOAP Request. SOAP UI constructs sample request for you. Check it out. If you are having difficulty, for now I am posting all those requests here: </p> <p>GetAdvertisers:</p> <pre><code>&lt;soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:mss="http://MSS"&gt; &lt;soapenv:Header/&gt; &lt;soapenv:Body&gt; &lt;mss:GetAdvertisers&gt; &lt;mss:userID&gt;?&lt;/mss:userID&gt; &lt;/mss:GetAdvertisers&gt; &lt;/soapenv:Body&gt; &lt;/soapenv:Envelope&gt; </code></pre> <p>GetPlans:</p> <pre><code>&lt;soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:mss="http://MSS"&gt; &lt;soapenv:Header/&gt; &lt;soapenv:Body&gt; &lt;mss:GetPlans&gt; &lt;mss:userID&gt;?&lt;/mss:userID&gt; &lt;/mss:GetPlans&gt; &lt;/soapenv:Body&gt; &lt;/soapenv:Envelope&gt; </code></pre> <p>GetPlansByAdvertiser:</p> <pre><code>&lt;soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:mss="http://MSS"&gt; &lt;soapenv:Header/&gt; &lt;soapenv:Body&gt; &lt;mss:GetPlansByAdvertiser&gt; &lt;mss:UserID&gt;?&lt;/mss:UserID&gt; &lt;!--Optional:--&gt; &lt;mss:Advertiser&gt;?&lt;/mss:Advertiser&gt; &lt;/mss:GetPlansByAdvertiser&gt; &lt;/soapenv:Body&gt; &lt;/soapenv:Envelope&gt; </code></pre> <p>GetReportPostBuy:</p> <pre><code>&lt;soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:mss="http://MSS"&gt; &lt;soapenv:Header/&gt; &lt;soapenv:Body&gt; &lt;mss:GetReportPostBuy&gt; &lt;mss:UserID&gt;?&lt;/mss:UserID&gt; &lt;mss:PlanID&gt;?&lt;/mss:PlanID&gt; &lt;mss:CompanyID&gt;?&lt;/mss:CompanyID&gt; &lt;!--Optional:--&gt; &lt;mss:CompanyName&gt;?&lt;/mss:CompanyName&gt; &lt;mss:AdvertiserID&gt;?&lt;/mss:AdvertiserID&gt; &lt;!--Optional:--&gt; &lt;mss:AdvertiserName&gt;?&lt;/mss:AdvertiserName&gt; &lt;mss:PubdateFrom&gt;?&lt;/mss:PubdateFrom&gt; &lt;mss:PubdateTo&gt;?&lt;/mss:PubdateTo&gt; &lt;/mss:GetReportPostBuy&gt; &lt;/soapenv:Body&gt; &lt;/soapenv:Envelope&gt; </code></pre> <p>Login:</p> <pre><code>&lt;soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:mss="http://MSS"&gt; &lt;soapenv:Header/&gt; &lt;soapenv:Body&gt; &lt;mss:Login&gt; &lt;!--Optional:--&gt; &lt;mss:username&gt;?&lt;/mss:username&gt; &lt;!--Optional:--&gt; &lt;mss:password&gt;?&lt;/mss:password&gt; &lt;/mss:Login&gt; &lt;/soapenv:Body&gt; &lt;/soapenv:Envelope&gt; </code></pre>
 

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