微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

perl – 如何在SOAP :: Lite中破坏名称空间生成?

场景:

>客户端是使用SOAP::Lite的Perl脚本.
>服务器是使用Spring和CXF的基于Java的应用程序.

我的客户端基于WSDL生成以下SOAP请求:

<?xml version="1.0" encoding="UTF-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" soap:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    <soap:Body>
        <createFolder xmlns="http://xyz.com/">
            <parentId xsi:type="xsd:string">1</parentId>
            <folderName xsi:type="xsd:string">Test</folderName>
        </createFolder>
    </soap:Body>
</soap:Envelope>

此请求将对CXF失败.经过多次调查后,我发现以下手动生成的请求将起作用:

<?xml version="1.0" encoding="UTF-8"?>
<soap:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xyz="http://xyz.com/">
    <soap:Body>
        <xyz:createFolder>
            <parentId xsi:type="xsd:string">1</parentId>
            <folderName xsi:type="xsd:string">Test</folderName>
        </xyz:createFolder>
    </soap:Body>
</soap:Envelope>

不同之处在于元素createFolder的名称空间定义.

我的问题是:如何配置SOAPLite来创建有效的SOAP请求?

反之亦然:如何将CXF配置为接受SOAP :: Lite请求样式?

解决方法

查看 ns.如果为片段的根元素提供了类似的限定名称

使用以下内容

SOAP::Lite->new->proxy( 'http://somewhere.com' )
    ->ns( 'http://xyz.com/','xyz' )->createFolder( 
      SOAP::Data->new( name => 'parentId',value => 1,type => 'xsd:string' ),SOAP::Data->new( name => 'folderName',value => 'Test' ) 
    );

我得到以下内容

<?xml version="1.0" encoding="UTF-8"?>
<soap:Envelope 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" 
    xmlns:xyz="http://xyz.com/" 
    xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
    soap:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" 
    xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
>
  <soap:Body>
    <xyz:createFolder>
      <parentId   xsi:type="xsd:string">1</parentId>
      <folderName xsi:type="xsd:string">Test</folderName>
    </xyz:createFolder>
  </soap:Body>
</soap:Envelope>

而且我认为这就是你想要的.

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐