使用PHP使用.Net web服务



这是我第一次使用web服务/SOAP。。。我一直在尝试使用PHP使用.Net web服务,但没有成功。我已经搜索并阅读了谷歌弹出的所有页面,寻找与此相关的任何内容,但我仍然迷失了方向。

问题是,我试图调用的SOAP服务有一个授权头,我无法找到验证请求的方法。

我已经尝试过php-soapclient和NuSoap,但没有可用的示例代码。所以任何帮助都会很棒。

以下是SOAP 1.1请求和响应的示例。

POST /OxiWalletService/Service.asmx HTTP/1.1
Host: 172.160.0.49
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://tempuri.org/WS_GetData"
<?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>
  <AuthHeader xmlns="http://tempuri.org/">
    <UserName>string</UserName>
    <Password>string</Password>
  </AuthHeader>
</soap:Header>
<soap:Body>
  <WS_GetData xmlns="http://tempuri.org/">
     <xmlString>string</xmlString>
  </WS_GetData>
</soap:Body>
</soap:Envelope>

响应

HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?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:Body>
  <WS_GetDataResponse xmlns="http://tempuri.org/">
    <WS_GetDataResult>string</WS_GetDataResult>
  </WS_GetDataResponse>
</soap:Body>
</soap:Envelope>

有人能给我一个关于如何使用这样一项服务的示例代码吗。

非常感谢!

这是我用来调用网络服务的代码

<?php 
$soap_client = new SoapClient("http://172.160.0.49/OxiWalletService/Service.asmx?WSDL");
$Uid='oxigen';
$Pwd='oxigen';
$ns = "http://tempuri.org/";
//Body of the Soap Header.
$headerbody = array('UserName' => $Uid,
                    'Password' => $Pwd
                   );
//Create Soap Header.       
$header = new SOAPHeader($ns, 'AuthHeader', $headerbody);       
//set the Headers of Soap Client.
$soap_client->__setSoapHeaders($header);
$par="<Wallet><SPName>AuthenticateMerchantWebVending</SPName><Parameters>&lt;Parameter&gt;&lt;Name&gt;@Account&lt;/Name&gt;&lt;Size&gt;50&lt;/Size&gt;&lt;Value&gt;1135600016&lt;/Value&gt;&lt;Type&gt;varchar&lt;/Type&gt;&lt;/Parameter&gt;&lt;Parameter&gt;&lt;Name&gt;@Password&lt;/Name&gt;&lt;Size&gt;20&lt;/Size&gt;&lt;Value&gt;0OgknrdonyM=&lt;/Value&gt;&lt;Type&gt;varchar&lt;/Type&gt;&lt;/Parameter&gt;</Parameters><ParameterCount>2</ParameterCount><DataBase>1</DataBase></Wallet>";
$param=array('xmlString'=>$par);
$result=$soap_client->__SoapCall('WS_GetData',$param);
print_r ($result);
?>

我得到以下作为输出:

stdClass对象([WS_GetDataResult]=>2未知错误)

想法??

因此,事实证明,您必须传递第二个参数作为数组的密钥

意味着这个

$result=$soap_client->__SoapCall('WS_GetData',$param);

应该是

$result=$soap_client->__SoapCall('WS_GetData',array('parameters'=>$param));

现在可以了。

我认为这应该做到:www.php.net/manual/en/soapclient.setsoapheaders.php

$ns = "http://tempuri.org/"
//Body of the Soap Header.
$headerbody = array('UserName' => $yourUsername,
                    'Password' => $yourPassword,
              );
//Create Soap Header.       
$header = new SOAPHeader($ns, 'AuthHeader', $headerbody);       
//set the Headers of Soap Client.
$soap_client->__setSoapHeaders($header);

相关内容

  • 没有找到相关文章

最新更新