簡體   English   中英

使用PHP SoapClient的SOAP錯誤

[英]SOAP error using PHP SoapClient

我正在嘗試使用PHP的SoapClient連接到Soap Web服務,並且在下面出現錯誤

消息“”上指定的SOAP操作與HTTP SOAP操作“ http://tempuri.org/IInDirect/AddProduct ”不匹配。

下面是我連接到服務器的PHP代碼。

$requestParams = array(
    'Password' => 'XXXXXX',
    'Username' => 'XXXXXXX',
    'AddressLine1' => '52 TEST DRIVE',
    'City' => 'JOHANNESBURG',
    'DateOfBirth' => '1960-02-10T00:00:00',
    'Forename1' => 'Eva',
    'Gender' => 'Unknown',
    'Province' => 'GAUTENG',
    'SouthAfricanID' => '45454545454',
    'ProductCode' => '12345'
);

try {

    $options = array(
    'soap_version' => SOAP_1_2,
    'cache_wsdl'=>WSDL_CACHE_NONE,
    'connection_timeout' => 15,
    'trace' => true,
    'encoding' => 'UTF-8',
    'exceptions' => true,
    );

$client = new \SoapClient('https://soap.url.com/test.svc?wsdl', $options);

$actionHeader = new \SoapHeader('http://www.w3.org/2005/08/addressing',
            'Action',
            'http://tempuri.org/IInDirect/AddProduct');
        $client->__setSoapHeaders($actionHeader);

} catch (Exception $e) {
    echo "<h2>Exception Error!</h2>";
    echo $e->getMessage();
}
$response = $client->AddProduct($requestParams);

print_r($response);

下面是xml

<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:tusa="http://schemas.datacontract.org/2004/07/Tusa.Services.ConsumerConnect" xmlns:tem="http://tempuri.org/">
<soap:Header>
    <AuthenticationCredentials>
    <tusa:Password>Password</tusa:Password>
    <tusa:Username>Username</tusa:Username>
    </AuthenticationCredentials>
</soap:Header>
<soap:Body>
    <tem:AddProduct>
    <tem:CustomerDetail>
    <tusa:AddressLine1>AddressLine1</tusa:AddressLine1>           
    <tusa:City>City</tusa:City>
    <tusa:DateOfBirth>DateOfBirth</tusa:DateOfBirth>            
    <tusa:Forename1>Forename1</tusa:Forename1>        
    <tusa:Gender>Gender</tusa:Gender>
    <tusa:MaritalStatus>MaritalStatus</tusa:MaritalStatus>           
    <tusa:Province>Province</tusa:Province>
    <tusa:SouthAfricanID>SouthAfricanID</tusa:SouthAfricanID>           
    <tusa:Suburb>Suburb</tusa:Suburb>
    <tusa:Surname>Surname</tusa:Surname>     
    </tem:CustomerDetail>
    <tem:ProductCode>ProductCode</tem:ProductCode>
    </tem:AddProduct>
</soap:Body>
</soap:Envelope>

我將如何使其工作?

可能由於缺少操作SOAP標頭而導致此錯誤消息。

$actionHeader = new SoapHeader('http://www.w3.org/2005/08/addressing',
                               'Action',
                               'http://tempuri.org/IInDirect/AddProduct');
$client->__setSoapHeaders($actionHeader);

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM