web服务-使用PHP SoapClient时出现SOAP错误



我正在尝试使用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>

我该如何让它工作?

此错误消息可能是由于缺少Action SOAP报头引起的。

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

相关内容

  • 没有找到相关文章

最新更新