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

从SOAP :: Lite迁移到XML :: Compile :: SOAP

所以这是我的 SOAP::Lite代码

#!/usr/bin/perl
use 5.006;
use strict;
use warnings;
use SOAP::Lite +trace => [ 'debug' ];

my $req1 = SOAP::Lite->new(
    readable => 1,autotype => 0,proxy    => 'https://ics2wstest.ic3.com/commerce/1.x/transactionProcessor',);

$req1->requestMessage(
    \SOAP::Data->new(
        name => 'item',attr => { foo => '0' },value => \SOAP::Data->new(
            name => 'foo',value => 1,),);

生成这个XML

<?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>
<requestMessage>
  <c-gensym9>
    <item foo="0">
      <foo>1</foo>
    </item>
  </c-gensym9>
</requestMessage>
</soap:Body>
</soap:Envelope>

如何使用XML::Compile::SOAP生成相同的东西(没有gensym)?

解决方法

尝试

cpan BERLE/SOAP-Simple-0.00_03.tar.gz

然后

#!/usr/bin/perl --
use strict; use warnings;
use Data::Dumper;
use SOAP::Simple;
my $wsdlfile = '...';
my $soap = SOAP::Simple->new($wsdlfile);
print Dumper(
    $soap->requestMessage(
        item => [
            { foo => 1  },],)
);

或者查看http://cpansearch.perl.org/src/MARKOV/XML-Compile-SOAP-2.24/t/53wsdlrpclit.t并复制http://cpansearch.perl.org/src/MARKOV/XML-Compile-SOAP-2.24/t/examples/rpc-literal/element.pl并使用

schema2example -s element.wsdl -s type.wsdl -x requestMessage.xml

为element.pl生成一个%请求,所以最后你会得到类似的东西

#!/usr/bin/perl
use warnings;
use strict;

# general debugging of XML::Compile modules
#~ use Log::Report mode => 3;

# Data::Dumper is your friend in understanding the answer
use Data::Dumper;
$Data::Dumper::Indent = 1;

# The features we use
use XML::Compile::WSDL11;
use XML::Compile::SOAP11;
use XML::Compile::Transport::SOAPHTTP;  # we fake an HTTP server

#
# During initiation 'compile time'
#

my $wsdl = XML::Compile::WSDL11->new('element.wsdl');
my $call = $wsdl->compileClient('using_element'
#~,transport_hook => \&fake_server # hook simulates a Remote Server at test
  );

#
# Reuse often at 'run time'
#

my %request =
 ( item =>
   [ { foo => 1}
   ]
 );

my $answer = $call->( requestMessage => \%request);

# Useful for debugging.  Also useful to report to syslog
#    my ($answer,$trace) = $call->(\%request);
#    $trace->printTimings;

# When you do not kNow how the answer is structured
#print Dumper $answer;

if($answer->{Fault})
{   print "Oops\n";
}
else
{   print "*** RESULT=$answer->{answer_via_element}{result}\n";
}

exit 0;

一旦你生成了你想要的xml,就试试吧

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