PHP5 Soap NuSOAP geçiş - bir sıçrama tahtası gerekir

0 Cevap php

İşte yapmaya çalışıyorum çağrısı:

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Header xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    <urn:SessionHeader  xmlns:urn="http://www.mywebservice.com/webservices/SoapService" xmlns="http://www.mywebservice.com/webservices/SoapService" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
        <urn:sessionId xmlns:urn="http://www.mywebservice.com/webservices/SoapService">LOGINTOKEN=your instance name</urn:sessionId>
    </urn:SessionHeader>
</soap:Header>
<soap:Body xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    <ns2:login xmlns:ns2="http://www.mywebservice.com/webservices/SoapService">
        <wsUser>
            <entityId>0</entityId>
            <password>your password</password>
            <username>your username</username>
        </wsUser>
    </ns2:login>
</soap:Body>

Ama sorun nasıl PHP5'ta en Sabun özel başlıkları kurmak bulma yaşıyorum. NuSOAP ile sadece bir değişken içine her şeyi koymak olabilir ve daha sonra $client->setHeader($headerVar) kullanın ama PHP benzer bir şey bulamıyorum. Ben bu çağrıyı çoğaltmak olsaydı, ben gerisini anlamaya olabilir. Herhangi bir yardım mutluluk duyacağız!

Şimdiden teşekkürler!

Update: Ben öğretici sonra öğretici ile gitti ve PHP dokümanlar okumak, ama hiçbir şey iş gibi görünüyor ettik. Ben kıvrılma (yanı sıra NuSOAP) ile istediğinizi yapabilirsiniz ama ben yerli PHP5 Sabun daha kolay olacak ve muhtemelen daha istikrarlı olacağını düşündüm. Ben değil sanırım ...

Update 2 Here's the code I'm trying:

$soapurl = 'http://www.mywebservice.com/webservices/SoapService?wsdl';
$client = new SoapClient($soapurl,array('trace'=>true));
$token = "LOGINTOKEN=your instance name";

$header = new SoapHeader('http://www.mywebservice.com/webservices/SoapService', 'SessionHeader', array('sessionId' => $token));
$client->__setSoapHeaders($header);


$client->login(array("wsUser" => array('entityId'=>'0','username'=>'my username','password'=>'my password')));

Ve hata alıyorum:

**Fatal error**: Uncaught SoapFault exception: [ns1:InvalidSecurity] An error was discovered processing the <wsse:Security> header in C:\www\soap\index.php:12 Stack trace: #0 C:\www\soap\index.php(12): SoapClient->__call('login', Array) #1 C:\www\soap\index.php(12): SoapClient->login(Array) #2 {main} thrown in C:\www\soap\index.php on line 12

Update 3 So it looks like the "sessionId" is being sent as "key" with the token sent as "value".

 *REQUEST*:
    <?xml version="1.0" encoding="UTF-8"?>
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.mywebservice.com/webservices/SoapService">
<SOAP-ENV:Header>
<ns1:SessionHeader><item><key>sessionId</key><value>LOGINTOKEN=my token</value></item>
</ns1:SessionHeader>
</SOAP-ENV:Header>
<SOAP-ENV:Body><ns1:login><wsUser><entityId>0</entityId><password>my password</password><username>my username</username></wsUser></ns1:login></SOAP-ENV:Body></SOAP-ENV:Envelope>

0 Cevap