没有获得所需的SOAP请求XML

时间:2016-03-23 17:41:54

标签: php xml soap wsdl client

我正在使用一个使用OCPP(开放式充电点协议)的简单php客户端。我创建了客户端,这是来自我的代码的请求XML。

<?xml version="1.0" encoding="UTF-8"?>
  <env:Envelope xmlns:env="http://www.w3.org/2003/05/soap-envelope" xmlns:ns1="urn://Ocpp/Cs/2015/10/">
      <env:Header>
          <ns1:chargeBoxIdentity env:mustUnderstand="true">XXX01</ns1:chargeBoxIdentity>
          <ns1:Action env:mustUnderstand="true">/Authorize</ns1:Action>
          <ns1:MessageId env:mustUnderstand="true">123</ns1:MessageId>
          <ns1:RelatesTo>relatesTo</ns1:RelatesTo>
          <ns1:From/>
          <ns1:ReplyTo/>
          <ns1:To/>
      </env:Header>
      <env:Body>
          <ns1:authorizeRequest>
          <ns1:idTag>1234567</ns1:idTag>
          </ns1:authorizeRequest>
      </env:Body>
  </env:Envelope>

但我想要获得这个XML输出

<?xml version='1.0' encoding='utf8'?> 
<ns0:Envelope xmlns:ns0="http://www.w3.org/2003/05/soap-envelope" xmlns:ns1="urn://Ocpp/Cs/2015/10/">
    <ns0:Header>
        <ns1:chargeBoxIdentity mustUnderstand="true">XXX01 </ns1:chargeBoxIdentity>
        <ns1:Action mustUnderstand="true">/Authorize</ns1:Action>
        <ns1:MessageId mustUnderstand="true">123</ns1:MessageId>
        <ns1:RelatesTo>relatesTo</ns1:RelatesTo>
        <ns1:From />
        <ns1:ReplyTo />
        <ns1:To />
    </ns0:Header>
    <ns0:Body>
        <ns1:IdTag>1234567</ns1:IdTag>
    </ns0:Body>
</ns0:Envelope>

请注意,我的代码有env:Envelope,输出有ns0:Envelope,在我的代码中,肥皂体中有额外的属性。我对php SOAP的了解非常有限。相关代码如下。

ini_set('soap.wsdl_cache_enabled',0);

$wsdl_centralsystem = "OCPP_centralsystemservice_1.5_final.wsdl";
$params =  "0.1.1.255.0.0.1.0.";

$vLocation = "linktoserver/server.php";

$client = new SoapClient($wsdl_centralsystem, array(

    "soap_version" => SOAP_1_2,
    "location" => $vLocation,
    "trace"=>1, "exceptions"=>0,

));

$chargeboxid = "XXX01";
$action = "/Authorize";
$msgid = "123";
$relatesto = "relatesTo";


//Create Soap Headers
$headerCchargeBoxIdentity = new SoapHeader("urn://Ocpp/Cs/2015/10/", 'chargeBoxIdentity', $chargeboxid, true);
$headerAction = new SoapHeader("urn://Ocpp/Cs/2015/10/", 'Action', $action, true);
$headerMessageId = new SoapHeader("urn://Ocpp/Cs/2015/10/", 'MessageId', $msgid, true);
$headerRelatesTo = new SoapHeader("urn://Ocpp/Cs/2015/10/", 'RelatesTo', $relatesto, false);
$headerFrom = new SoapHeader("urn://Ocpp/Cs/2015/10/", 'From', NULL, false);
$headerReplyTo= new SoapHeader("urn://Ocpp/Cs/2015/10/", 'ReplyTo', NULL, false);
$headerTo = new SoapHeader("urn://Ocpp/Cs/2015/10/", 'To', NULL, false);

//set the Headers of Soap Client.
$client->__setSoapHeaders(array($headerCchargeBoxIdentity,$headerAction,$headerMessageId,$headerRelatesTo,$headerFrom,$headerReplyTo,$headerTo));


$output = $client-> __soapCall('Authorize',array($params));

2 个答案:

答案 0 :(得分:0)

如果前缀与xmlns元素上的Envelope声明匹配,则它是有效的XML,因此是有效的SOAP,因此您应该没问题。但是,XML区分大小写,我注意到您的代码在idTag元素内部有Body元素,而不是您期望的输出中的IdTag元素。

答案 1 :(得分:0)

根据OCPP规范,您当前的输出更接近正确但仍存在许多问题。

  • 您正在使用的完整OCPP URN以.../2015/10/结尾,用于OCPP 1.6但在您的代码中,您使用WSDL进行OCPP 1.5,这需要.../2012/06/用于URN。
  • 根据OCPP规范,驼峰式idTagAuthorize消息的正确字段名称。
  • 您需要SOAP正文中的根标记<authorizeRequest />
  • 您需要WSA(寻址)命名空间xmlns:wsa="http://www.w3.org/2005/08/addressing"来寻址字段(MessageIdFromToReplyToRelatesTo和{ SOAP标头中的{1}}。
  • Action属于OCPP URN名称空间。
  • chargeBoxIdentity应为MessageId且不应具有MessageID属性。
  • mustUnderstandActionToReplyTo应具有chargeBoxIdentity属性。其他人不应该。
  • 从OCPP 1.6开始mustUnderstand="true"是必需的,并且应始终具有值ReplyTo
  • http://www.w3.org/2005/08/addressing/anonymous仅用于回复。这是一个请求。

预期输出的最终版本应如下所示:

RelatesTo

注意:我设置了一些有意义的名称空间前缀,你可以设置你喜欢的任何内容。