2

我是第一次使用 SOAP Web 服务,但在调用 SOAP 服务器时遇到了问题。我搜索了 WSDL SOAP 请求,但我无法解决我的问题。这是我的 WSDL 的片段

<s:complexType name="VerHeader">
    <s:sequence>
        <s:element minOccurs="0" maxOccurs="1" name="HD1" type="s:string"/>
        <s:element minOccurs="0" maxOccurs="1" name="HD2" type="s:string"/>
        <s:element minOccurs="0" maxOccurs="1" name="HD3" type="s:string"/>
    </s:sequence>
    <s:anyAttribute/>
</s:complexType>

我必须在这些 HD1、HD2 和 HD3 变量中发送用户名、密码和一些 ID。我还尝试了这些链接Passing a PHP array in a SOAP call and Sending a Soap Header with a WSDL Soap Request with PHP

这是我尝试过但不起作用的方法,每次我运行我的代码它都会发送失败消息,你能弄清楚我的代码或我的逻辑有什么问题吗?

$soap = new SoapClient("http://example.com/verifyrecord.asmx?WSDL");
$header = array('HD1'=>'000000023','HD2'=>'val2','HD3'=>'val2');
$header = new SoapHeader('http://www.example.com/', 'VerHeader ', $header);

$soap->__setSoapHeaders(array($header));
4

3 回答 3

1

解决了这个问题。我不是通过使用php函数而是手动创建一个xml文件并将其发送到soap服务器来解决它。我已经发布了我的答案示例,以便对其他人有所帮助。谢谢大家的帮助。

// the xml to send
$xml = '<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Header>
    <VerHeader xmlns="http://www.example.com/">
      <HD1>000000000117</HD1>
      <HD1>user</HD1>
      <HD1>password</HD1>
    </VerHeader>
  </soap:Header>
  <soap:Body>
    <m:VerifyTransaction xmlns:m="http://www.example.com/">
        <m:object1>45344</m:object1>
        <m:object2>5545437</m:object2>
    </m:VerifyTransaction>
  </soap:Body>
</soap:Envelope>';
// build your http request
$context = stream_context_create(array(
'http' => array(
'method' => 'POST',
'header' => "Content-type: text/xml\r\n",
'validateRequest'=>false,
'content' => $xml,
'timeout' => 10,
),
));

// send it
echo $xmlstring = file_get_contents('http://example.com/VerifyThis/VerifyThis.asmx?wsdl', false, $context); 
于 2012-06-07T05:15:01.660 回答
0

这不应该

new SoapHeader('http://www.example.com/', 'VerHeader', $header);

new SoapHeader('http://www.example.com/verifyrecord', 'VerHeader', $header);

于 2012-05-16T16:37:33.273 回答
0

像这样尝试我确实将它用于我的英国邮件 api .. 它有效

<?php 

 $LoginWebRequest = new stdClass();
 $LoginWebRequest->Username = 'xxx cant show here xxx';
$LoginWebRequest->Password = 'xxx cant show here xxx';

//echo "<pre>";  print_r($LoginWebRequest); "</pre>"; exit;

$Login = new stdClass();
$Login->loginWebRequest = $LoginWebRequest;

 //echo "<pre>";  print_r($Login); "</pre>"; exit; 

 $soapClient = new SoapClient('https://qa-api.ukmail.com/Services/UKMAuthenticationServices/UKMAuthenticationService.svc?wsdl');
 $LoginResponse = $soapClient->Login($Login);

  ?>
于 2012-05-17T11:27:46.207 回答