Chinaunix
标题:
使用SOAP::Lite调用web service问题
[打印本页]
作者:
illidanee
时间:
2012-08-31 15:59
标题:
使用SOAP::Lite调用web service问题
使用soap:lite调用web服务,http报文正常,但是反回
Not a HASH reference at /usr/local/lib/perl5/site_perl/5.16.1/SOAP/Lite.pm line 3828.
复制代码
请问是什么问题。
详细报文如下:
[root@RHEL5 cgi-bin]# perl client.pl
SOAP::Transport::new: ()
SOAP::Serializer::new: ()
SOAP::Deserializer::new: ()
SOAP::Parser::new: ()
SOAP::Lite::new: ()
SOAP::Transport::HTTP::Client::new: ()
SOAP::Lite::call: ()
SOAP::Serializer::envelope: ()
SOAP::Serializer::envelope: new 100
SOAP::Data::new: ()
SOAP::Data::new: ()
SOAP::Data::new: ()
SOAP::Data::new: ()
SOAP::Data::new: ()
SOAP::Transport::HTTP::Client::send_receive: HTTP::Request=HASH(0xb6df5c8)
SOAP::Transport::HTTP::Client::send_receive: POST http://localhost/cgi-bin/sev.pl HTTP/1.1
Accept: text/xml
Accept: multipart/*
Accept: application/soap
Content-Length: 437
Content-Type: text/xml; charset=utf-8
SOAPAction: "World#new"
<?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><new xmlns="World"><c-gensym3 xsi:type="xsd:int">100</c-gensym3></new></soap:Body></soap:Envelope>
SOAP::Transport::HTTP::Client::send_receive: HTTP::Response=HASH(0xb9840e0)
SOAP::Transport::HTTP::Client::send_receive: HTTP/1.1 200 OK
Connection: close
Date: Fri, 31 Aug 2012 09:27:01 GMT
Server: Apache/2.2.22 (Unix) mod_perl/2.0.7 Perl/v5.16.1
Content-Length: 551
Content-Type: text/xml; charset=utf-8
Client-Date: Fri, 31 Aug 2012 09:27:01 GMT
Client-Peer: 127.0.0.1:80
Client-Response-Num: 1
SOAPServer: SOAP::Lite/Perl/0.715
<?xml version="1.0" encoding="UTF-8"?><soap:Envelope xmlns:namesp1="http://namespaces.soaplite.com/perl" 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><newResponse xmlns="World"><World xsi:type="namesp1:World"><_temperature xsi:type="xsd:int">100</_temperature></World></newResponse></soap:Body></soap:Envelope>
SOAP::Deserializer::deserialize: ()
SOAP::Parser::decode: ()
SOAP::SOM::new: ()
SOAP::SOM::DESTROY: ()
SOAP::Lite::call: ()
SOAP::Serializer::envelope: ()
SOAP::Serializer::envelope: as_celsius World=HASH(0xbc4b570)
SOAP::Data::new: ()
SOAP::Data::new: ()
SOAP::Data::DESTROY: ()
SOAP::Data::DESTROY: ()
SOAP::Data::DESTROY: ()
SOAP::Data::DESTROY: ()
SOAP::Data::DESTROY: ()
SOAP::Data::new: ()
SOAP::Data::new: ()
SOAP::Data::new: ()
SOAP::Transport::HTTP::Client::send_receive: HTTP::Request=HASH(0xbc52d88)
SOAP::Transport::HTTP::Client::send_receive: POST http://localhost/cgi-bin/sev.pl HTTP/1.1
Accept: text/xml
Accept: multipart/*
Accept: application/soap
Content-Length: 549
Content-Type: text/xml; charset=utf-8
SOAPAction: "World#as_celsius"
<?xml version="1.0" encoding="UTF-8"?><soap:Envelope xmlns:namesp1="http://namespaces.soaplite.com/perl" 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><as_celsius xmlns="World"><World xsi:type="namesp1:World"><_temperature xsi:type="xsd:int">100</_temperature></World></as_celsius></soap:Body></soap:Envelope>
SOAP::Transport::HTTP::Client::send_receive: HTTP::Response=HASH(0xbc53d10)
SOAP::Transport::HTTP::Client::send_receive: HTTP/1.1 200 OK
Connection: close
Date: Fri, 31 Aug 2012 09:27:01 GMT
Server: Apache/2.2.22 (Unix) mod_perl/2.0.7 Perl/v5.16.1
Content-Length: 722
Content-Type: text/xml; charset=utf-8
Client-Date: Fri, 31 Aug 2012 09:27:02 GMT
Client-Peer: 127.0.0.1:80
Client-Response-Num: 1
SOAPServer: SOAP::Lite/Perl/0.715
<?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" xmlns:namesp2="http://namespaces.soaplite.com/perl" soap:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:Header><namesp1:World xmlns:namesp1="http://namespaces.soaplite.com/header" xsi:type="namesp2:World"><_temperature xsi:type="xsd:int">100</_temperature></namesp1:World></soap:Header><soap:Body><as_celsiusResponse xmlns="World"><s-gensym5 xsi:type="xsd:float">37.7777777777778</s-gensym5></as_celsiusResponse></soap:Body></soap:Envelope>
SOAP::Deserializer::deserialize: ()
SOAP::Parser::decode: ()
SOAP::SOM::new: ()
SOAP::Data::new: ()
SOAP::Data::new: ()
SOAP::Data::new: ()
Not a HASH reference at /usr/local/lib/perl5/site_perl/5.16.1/SOAP/Lite.pm line 3828.
SOAP::SOM::DESTROY: ()
SOAP::Lite::DESTROY: ()
SOAP::Deserializer::DESTROY: ()
SOAP::Parser::DESTROY: ()
SOAP::Transport::DESTROY: ()
SOAP::Transport::HTTP::Client::DESTROY: ()
SOAP::Serializer::DESTROY: ()
SOAP::Data::DESTROY: ()
SOAP::Data::DESTROY: ()
SOAP::Data::DESTROY: ()
SOAP::Data::DESTROY: ()
SOAP::Data::DESTROY: ()
SOAP::Data::DESTROY: ()
SOAP::Data::DESTROY: ()
SOAP::Data::DESTROY: ()
[root@RHEL5 cgi-bin]#
复制代码
client代码如下:
#!/usr/local/bin/perl
use SOAP::Lite +trace;
my $soap = SOAP::Lite
-> uri('World')
-> proxy('http://localhost/cgi-bin/sev.pl');
my $temperatures = $soap
-> call(new => 100) # accept Fahrenheits
-> result;
print $soap
-> as_celsius($temperatures)
-> result;
复制代码
servcie代码如下:
#!/usr/local/bin/perl
use strict;
use warnings;
package World;
sub new {
my $self = shift;
my $class = ref($self) || $self;
bless {_temperature => shift} => $class;
}
sub as_fahrenheit {
return shift->{_temperature};
}
sub as_celsius {
return 5/9*(shift->{_temperature}-32);
}
复制代码
作者:
illidanee
时间:
2012-09-03 11:35
有没有人知道啥原因啊?
作者:
zhlong8
时间:
2012-09-03 12:31
这个太细节了你看下是不是有什么需要检查的异常没处理的,不会这个,实在没那个精力给你一级一级查看
欢迎光临 Chinaunix (http://bbs.chinaunix.net/)
Powered by Discuz! X3.2