我使用过php.net并按照文档在php中使用SoapClient创建SOAP请求,但是我无法弄清楚如何在正确的位置正确地使用标头格式化请求。当我的脚本运行时,这会导致“使用无效的身份验证类型”错误。
我需要形成的示例请求是:
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Header>
<ServiceAuthHeader xmlns="http://voicepad.com/DataServices_Vivek/DataServices">
<Username>string</Username>
<Password>string</Password>
</ServiceAuthHeader>
</soap12:Header>
<soap12:Body>
<GetData xmlns="http://voicepad.com/DataServices_Vivek/DataServices">
<sQueryType>string</sQueryType>
<StartDate>string</StartDate>
<EndDate>string</EndDate>
<PhoneNumber>string</PhoneNumber>
</GetData>
</soap12:Body>
</soap12:Envelope>
我上次尝试使用php发出请求是:
$client = new SoapClient("url", array( 'trace' => TRUE, 'exceptions'=>0 ));
$header = new SoapHeader( 'soap12', 'ServiceAuthHeader', array('Username' => "$s_uname", 'Password' => "$s_pass"));
$client->__setSoapHeaders(array($header));
$result = $client->GetData(array('PhoneNumber'=>'##########'));
print_r($result);
此代码生成的请求是:
<soap-env:envelope xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://voicepad.com/DataServices_Vivek/DataServices" xmlns:ns2="soap12">
<soap-env:header>
<ns2:serviceauthheader>
<item>
<key>
Username
</key>
<value>
*********
</value>
</item>
<item>
<key>
Password
</key>
<value>
*********
</value>
</item>
</ns2:serviceauthheader>
</soap-env:header>
<soap-env:body>
<ns1:getdata>
<ns1:phonenumber>
###########
</ns1:phonenumber>
</ns1:getdata>
</soap-env:body>
</soap-env:envelope>
正如你可以看到这个请求是错误的,但它也是我能够得到的关闭。它是我唯一的试验,我至少得到了用户名和密码显示在请求的标题中。我失去了一些请帮助!
答案 0 :(得分:0)
如果您正在查看first comment on the PHP.net documentation for SoapHeader,除了您还需要正确设置XML命名空间之外,该示例正是您所需要的。
必须知道XML有几个规则来将元素标记为属于它们,并且这对XML处理器无关紧要。
以下是您问题的调整示例。我希望它适合你:
$client = new SoapClient(WSDL,array());
$auth = array(
'UserName'=>'USERNAME',
'Password'=>'PASSWORD',
);
$header = new SoapHeader(
'http://voicepad.com/DataServices_Vivek/DataServices',
'ServiceAuthHeader',
$auth,
false
);
$client->__setSoapHeaders($header);