Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/algorithm/10.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
如何基于WSDL文件构建SOAP头命名空间_Soap_Namespaces_Header_Wsdl - Fatal编程技术网

如何基于WSDL文件构建SOAP头命名空间

如何基于WSDL文件构建SOAP头命名空间,soap,namespaces,header,wsdl,Soap,Namespaces,Header,Wsdl,我在SOAP请求的头表示方面遇到了一些问题。我想我错过了什么 我的(部分)wsdl如下所示: <wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soa

我在SOAP请求的头表示方面遇到了一些问题。我想我错过了什么

我的(部分)wsdl如下所示:

<wsdl:definitions   xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" 
                    xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
                    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" 
                    xmlns:aws="http://xml.xxx.com"
                    xmlns:security_authenticate_6_1="http://xml.xxx.com/VLSSLQ_06_1_1A" 
                    xmlns:security_authenticatereply_6_1="http://xml.xxx.com/VLSSLR_06_1_1A"
                    targetNamespace="http://xml.xxx.com">  
  <wsdl:types>
    <xsd:schema targetNamespace="http://xml.xxx.com">
      <xsd:import namespace="http://xml.xxx.com/ws/2009/01/WBS_Session-2.0.xsd" schemaLocation="WBS_Session-2.0.xsd"/>      
      <xsd:import namespace="http://xml.xxx.com/VLSSLQ_06_1_1A" schemaLocation="Security_Authenticate_06_1_1A.xsd"/>
      <xsd:import namespace="http://xml.xxx.com/VLSSLR_06_1_1A" schemaLocation="Security_AuthenticateReply_06_1_1A.xsd"/>
    </xsd:schema>
  </wsdl:types>
  <wsdl:message name="Session" xmlns:ns0="http://xml.xxx.com/ws/2009/01/WBS_Session-2.0.xsd">
    <wsdl:part name="Session" element="ns0:Session"/>
  </wsdl:message>  
  <wsdl:message name="Security_Authenticate_6_1">
    <wsdl:part name="Security_Authenticate_6_1" element="security_authenticate_6_1:Security_Authenticate"/>
  </wsdl:message>
  <wsdl:message name="Security_AuthenticateReply_6_1">
    <wsdl:part name="Security_AuthenticateReply_6_1" element="security_authenticatereply_6_1:Security_AuthenticateReply"/>
  </wsdl:message>
  <wsdl:portType name="XXXWebServicesPT">    
    <wsdl:operation name="Security_Authenticate">
      <wsdl:input message="aws:Security_Authenticate_6_1"/>
      <wsdl:output message="aws:Security_AuthenticateReply_6_1"/>
    </wsdl:operation>    
  </wsdl:portType>
  <wsdl:binding name="XXXWebServicesBinding" type="aws:XXXWebServicesPT">
    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>    
    <wsdl:operation name="Security_Authenticate">
      <soap:operation soapAction="http://webservices.xxx.com/1ASIWJTUTUA/VLSSLQ_06_1_1A"/>
      <wsdl:input>
        <soap:header message="aws:Session" part="Session" use="literal"/>
        <soap:body use="literal"/>
      </wsdl:input>
      <wsdl:output>
        <soap:header message="aws:Session" part="Session" use="literal"/>
        <soap:body use="literal"/>
      </wsdl:output>
    </wsdl:operation>
  </wsdl:binding>
  <wsdl:service name="XXXWebServices">
    <wsdl:port name="XXXWebServicesPort" binding="aws:XXXWebServicesBinding">
      <soap:address location="https://test.webservices.xxx.com"/>
    </wsdl:port>
  </wsdl:service>
</wsdl:definitions>

我想访问Security_Authenticate操作,在这种情况下,标头必须类似于:

<soapenv:Envelope xmlns:soapenv='http://schemas.xmlsoap.org/soap/envelope/'>
    <soapenv:Header>
      <wbs:Session xmlns:wbs='http://xml.xxx.com/ws/2009/01/WBS_Session-2.0.xsd'>
        <wbs:SessionId></wbs:SessionId>
        <wbs:SequenceNumber></wbs:SequenceNumber>
        <wbs:SecurityToken></wbs:SecurityToken>
      </wbs:Session>
    </soapenv:Header>
    <soapenv:Body>
      <vls:Security_Authenticate>
        <vls:tagX>
          <vls:tagY>yyy</vls:tagY>
          <vls:tagZ>Z</vls:tagZ>
        </vls:tagX>
      </vls:Security_Authenticate>
    </soapenv:Body>
</soapenv:Envelope>

yyy
Z
我应该如何构建我的soapenvelope和我的头名称空间


谢谢。

在xsd中使用对象之前必须声明名称空间,因此在您的情况下,要使用会话对象:

<soapenv:Envelope xmlns:soapenv='http://schemas.xmlsoap.org/soap/envelope/'>
  <soapenv:Header>
    <wbs:Session xmlns:wbs='http://xml.xxx.com/ws/2009/01/WBS_Session-2.0.xsd'>
      <wbs:SessionId></wbs:SessionId>
      <wbs:SequenceNumber></wbs:SequenceNumber>
      <wbs:SecurityToken></wbs:SecurityToken>
    </wbs:Session>
  </soapenv:Header>
  ...

...

我一直收到这样的消息:(soap:Client)12 |演示| soap消息头不正确(在ruby-on-rails中)。但是,如果我复制粘贴我的XML请求并在soapUI上运行它,我会得到正确的响应,没有错误!我不知道ROR可能在做什么。我认为您正确地声明了soapenv名称空间。也许在您的问题中发布完整的xml?您解决了吗?我想我也有同样的错误,使用相同的web服务(如果您将xxx更改为公司名称,则名称空间适合),您是否找到了解决方法?我的一个是在VB.NET中完成的,我使用的是该公司自己创建的Web服务,所以它应该不会有任何错误。我没有手动创建我的SOAP请求,所以我不知道…我解决了使用SOAP(ruby gem来构建和处理SOAP消息)并将操作指定为snake case,例如,如果操作名称是:ActionNameTest,我必须像“action\u name\u test”那样调用它。这对我很有效……你能详细解释一下你的解决方案吗。我也面临同样的问题。