Sending a Soap Header with a WSDL Soap Request with PHP - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T13:39:37Z http://stackoverflow.com/feeds/question/589228 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/589228/sending-a-soap-header-with-a-wsdl-soap-request-with-php 1 Sending a Soap Header with a WSDL Soap Request with PHP Josh Smeaton 2009-02-26T05:31:31Z 2009-02-26T09:09:59Z <p>I'm extremely new to SOAP and I'm trying to implement a quick test client in PHP that consumes a ASP.NET web service. The web service relies on a Soap Header that contains authorization parameters.</p> <p>Is it possible to send the auth header along with a soap request when using WSDL?</p> <p>My code:</p> <h1>php</h1> <pre><code>$service = new SoapClient("http://localhost:16840/CTI.ConfigStack.WS/ATeamService.asmx?WSDL"); $service-&gt;AddPendingUsers($users, 3); // Example </code></pre> <h1>webservice</h1> <pre><code>[SoapHeader("AuthorisationHeader")] [WebMethod] public void AddPendingUsers(List&lt;PendingUser&gt; users, int templateUserId) { ateamService.AddPendingUsers(users, templateUserId, AuthorisationHeader.UserId); } </code></pre> <p>How would the auth header be passed in this context? Or will I need to do a low lever __soapCall() to pass in the header? Also, am I invoking the correct soap call within PHP?</p> http://stackoverflow.com/questions/589228/sending-a-soap-header-with-a-wsdl-soap-request-with-php/589733#589733 1 Answer by Tom Haigh for Sending a Soap Header with a WSDL Soap Request with PHP Tom Haigh 2009-02-26T09:05:09Z 2009-02-26T09:05:09Z <p>You should be able to create a header and then add it to the client so it is sent for all subsequent requests. You will probably need to change the namespace parameter.</p> <pre><code>$service = new SoapClient("http://localhost:16840/CTI.ConfigStack.WS/ATeamService.asmx?WSDL"); // Namespace Header Name value must-understand $header = new SoapHeader('http://tempuri.org/', 'AuthorisationHeader', $value, false); $service-&gt;__setSoapHeaders(array($header)); $service-&gt;AddPendingUsers($users, 3); // Example </code></pre> <p>More information <a href="http://uk.php.net/manual/en/soapheader.construct.php" rel="nofollow">here</a></p> http://stackoverflow.com/questions/589228/sending-a-soap-header-with-a-wsdl-soap-request-with-php/589743#589743 1 Answer by cjjer for Sending a Soap Header with a WSDL Soap Request with PHP cjjer 2009-02-26T09:09:59Z 2009-02-26T09:09:59Z <pre><code>$client = new SoapClient(PassportWebService); $apiauth =array('userName'=&gt;HeaderName,'password'=&gt;HeaderPassport,'ip'=&gt;$onlineip); $authvalues = new SoapVar($apiauth, SOAP_ENC_OBJECT,'ReqHeader',"SoapBaseNameSpace"); $header = new SoapHeader("SoapBaseNameSpace","ReqHeader", $authvalues, true); $client-&gt;__setSoapHeaders(array($header)); </code></pre>