Sending a Soap Header with a WSDL Soap Request with PHP - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T13:39:37Zhttp://stackoverflow.com/feeds/question/589228http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/589228/sending-a-soap-header-with-a-wsdl-soap-request-with-php1Sending a Soap Header with a WSDL Soap Request with PHPJosh Smeaton2009-02-26T05:31:31Z2009-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->AddPendingUsers($users, 3); // Example
</code></pre>
<h1>webservice</h1>
<pre><code>[SoapHeader("AuthorisationHeader")]
[WebMethod]
public void AddPendingUsers(List<PendingUser> 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#5897331Answer by Tom Haigh for Sending a Soap Header with a WSDL Soap Request with PHPTom Haigh2009-02-26T09:05:09Z2009-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->__setSoapHeaders(array($header));
$service->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#5897431Answer by cjjer for Sending a Soap Header with a WSDL Soap Request with PHPcjjer2009-02-26T09:09:59Z2009-02-26T09:09:59Z<pre><code>$client = new SoapClient(PassportWebService);
$apiauth =array('userName'=>HeaderName,'password'=>HeaderPassport,'ip'=>$onlineip);
$authvalues = new SoapVar($apiauth, SOAP_ENC_OBJECT,'ReqHeader',"SoapBaseNameSpace");
$header = new SoapHeader("SoapBaseNameSpace","ReqHeader", $authvalues, true);
$client->__setSoapHeaders(array($header));
</code></pre>