免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 5427 | 回复: 4
打印 上一主题 下一主题

[原创] perl WebServices客户端 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2005-03-11 11:11 |只看该作者 |倒序浏览
这是一个简单的perl WebServices客户端示例,阅读下面内容最好了解下列技术:

WebServices框架协议
HTTP SOAP协议
XML言语
RPC远程过程调用

该示例调用XMethods的 temperature service(http://www.xmethods.com/ve2/ViewListing.po;jsessionid=wwY9oY_kCAvsXXW3l9-V4Jes(QHyMHiRM)?key=uuid:477CEED8-1EDD-89FA-1070-6C2DBE1685F8)。temperature服务根据请求的美国某地区的邮码返回该地区当前的温度。

下面先看看完整的perl代码,然后我会对关键代码分步做出说明。
temperatureclient.pl

  1. #!/usr/bin/perl -w
  2. # 一个简单的web service client.调用XMethods temperature service.
  3. # http://www.xmethods.com

  4. use strict;
  5. use SOAP::EnvelopeMaker;
  6. use SOAP::Parser;
  7. use SOAP::Struct;
  8. use SOAP::Transport::HTTP::Client;

  9. my $zipcode = shift; $zipcode =~ /^\d+$/ or die "USAGE: $0 U.Szipcode\n";
  10. my ($server, $port,$endpoint, $soapaction, $method, $method_urn,$message, $envelope, $response, $parser);

  11. # service address
  12. $server = 'services.xmethods.net';
  13. $port = 80;
  14. $endpoint = '/soap/servlet/rpcrouter';

  15. $soapaction ='';
  16. $method = 'getTemp';
  17. # operator namespace
  18. $method_urn = 'urn:xmethods-Temperature';

  19. # create SOAP envelope
  20. $envelope = SOAP::EnvelopeMaker->;new(\$message);

  21. # set SOAP body,zipcode is the parameter name
  22. $envelope->;set_body($method_urn, $method, 0,SOAP::Struct->;new(zipcode=>;$zipcode));
  23. # create client call
  24. $response = SOAP::Transport::HTTP::Client->;new()->;send_receive($server, $port,
  25. $endpoint,$method_urn, $method,$message);

  26. # parser SOAP response message
  27. $parser = SOAP::Parser->;new;
  28. $parser->;parsestring($response);
  29. # get SOAP body
  30. $response = $parser->;get_body;

  31. if (exists $response->;{return}) {
  32.      print "$zipcode Temperature: $response->;{return}\n";
  33. } else {
  34.      print "A fault ($response->;{faultcode}) occurred: " .$response->;{faultstring}\n";
  35. }
  36. exit;
复制代码

如果你要在你的机子上测试以上程序,请确认是否安装了perl SOAP模块(下载地址:http://search.cpan.org/~kbrown/SOAP-0.28/).

请打开温度服务的WSDL:http://www.xmethods.net/sd/2001/TemperatureService.wsdl对照阅读。

  1. # service address
  2. $server = 'services.xmethods.net';
  3. $endpoint = '/soap/servlet/rpcrouter';

  4. $soapaction ='';
  5. $method = 'getTemp';
  6. # operator namespace
  7. $method_urn = 'urn:xmethods-Temperature';
复制代码

从WSDL中获得以上信息:$server 服务地址,$port 端口号,$endpoint 服务端点,$method 调用方法,$method_urn 方法的名称空间,还有一个参数名称:zipcode。

  1. # create SOAP envelope
  2. $envelope = SOAP::EnvelopeMaker->;new(\$message);
  3. # set SOAP body,zipcode is the parameter name
  4. $envelope->;set_body($method_urn, $method, 0,SOAP::Struct->;new(zipcode=>;$zipcode));
复制代码

创建一个SOAP封套,传入一个字符串引用用来保存Envelope结构;当调用完set_body方法后,$message中将存有类似下面的SOAP消息:(为了便于阅读,我对其进行了格式化)

  1. <s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"
  2. xmlns:xsd="http://www.w3.org/1999/XMLSchema"
  3. xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance"
  4. xmlns:n1="urn:xmethods-Temperature"
  5. s:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">;
  6. <s:Body>;
  7.    <n1:getTemp id="ref-1" s:root="1">;
  8.    <zipcode>;94041</zipcode>;
  9.    </n1:getTemp>;
  10. </s:Body>;
  11. </s:Envelope>;
复制代码


接着进行客户端调用,

  1. # create client call
  2. $response = SOAP::Transport::HTTP::Client->;new()->;send_receive($server, $port,
  3. $endpoint, $method_urn, $method,$message);
复制代码


创建一个HTTP SOAP客户端,向服务器发送请求,并将服务器SOAP响应保存的$response中,如下:

  1. <?xml version='1.0' encoding='UTF-8'?>;
  2. <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xmlns:xsd="http://www.w3.org/2001/XMLSchema">;
  5. <SOAP-ENV:Body>;
  6. <ns1:getTempResponse xmlns:ns1="urn:xmethods-Temperature"
  7. SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">;
  8. <return xsi:type="xsd:float">;69.0</return>;
  9. </ns1:getTempResponse>;

  10. </SOAP-ENV:Body>;
  11. </SOAP-ENV:Envelope>;
复制代码

解析SOAP响应,取得body,返回一个哈希引用,里面包含SOAP body中XML文档结构。

  1. # parser SOAP response message
  2. $parser = SOAP::Parser->;new;
  3. $parser->;parsestring($response);
  4. # get SOAP body
  5. $response = $parser->;get_body;
复制代码


最后打印出温度值.

  1. if (exists $response->;{return}) {
  2.     print "$zipcode Temperature: $response->;{return}\n";
  3. } else {
  4.     print "A fault ($response->;{faultcode}) occurred: " .$response->;{faultstring}\n";
  5. }
复制代码

相关参考

SOAP 1.1规范 http://www.w3.org/TR/2000/NOTE-SOAP-20000508/
IBM developerWorks webservice专区 http://www-900.ibm.com/developerworks/cn/webservices/
<<rogramming Web Services with Perl>;>; By Pavel Kulchenko, Randy J. Ray http://safari.oreilly.com/

*更爽目的格式请阅读我的Blog http://swallor.blogdriver.com/swallor/index.html

另:我将该示例发在了XMethods上,借宝地存放一下源代码,为了perl的推广,请板主大人不要删除!谢谢!(唉,不让上传,另找地儿了:()

论坛徽章:
0
2 [报告]
发表于 2005-03-11 22:12 |只看该作者

[原创] perl WebServices客户端

nice.

I believe fayland did something similar like this. oh, here
http://www.1313s.com/f/xml-rpc-client.html

论坛徽章:
1
荣誉会员
日期:2011-11-23 16:44:17
3 [报告]
发表于 2005-03-12 09:15 |只看该作者

[原创] perl WebServices客户端

我有過寫一個更簡單的...
Server端是用Java寫的..
Client端如下.....很簡單吧..只要有SOAP::Lite與wsdl
一切都沒問題....


  1. use SOAP::Lite;
  2. my $dat = getdata(shift);
  3. sub getdata(){
  4.   my ($d)=@_;
  5. #讀wsdl file
  6.   my $service = SOAP::Lite
  7.     ->;service('file:/xxx/xxx/xxx/xxx/xxxx.wsdl');
  8. #----連上Webservice Server呼叫Server提供的method queryMethod
  9. #----取得回傳值
  10.   my $data= eval{
  11.     local $SIG{ALRM}=sub {die "timeout\n"};
  12.     alarm(5);  #---timeout---
  13.     my $data=$service->;queryMethod(1,$d,"","xxxx");
  14.     return $data;
  15.   };
  16.   alarm(0);
  17.   $data;
  18. }
复制代码

论坛徽章:
0
4 [报告]
发表于 2005-03-14 11:49 |只看该作者

[原创] perl WebServices客户端

原帖由 "Qiang" 发表:
nice.

I believe fayland did something similar like this. oh, here
http://www.1313s.com/f/xml-rpc-client.html


Frontier只是一个基于XML技术的一个RPC应用库,它不同于同样基于XML技术的WebServices应用,SOAP技术有自己的规范。SOAP应用有很多种可能的实现技术,如SMTP,HTTP等等。基于HTTP的SOAP协议是将底层RPC请求与响应映射为HTTP请求与响应,SOAP请求与响应的XML或准确的叫消息Message必须按照SOAP的编码规范进行编码,而Frontier的编码是XMLRPC的编码,规范不同。
这里有SOAP规范:http://www.w3.org
这里有XMLRPC规范:http://www.xmlrpc.com/spec

论坛徽章:
0
5 [报告]
发表于 2008-07-28 16:50 |只看该作者

回复 #3 apile 的帖子

我现在要用一个网络服务,它的wsdl如下:
http://www.ebi.ac.uk/Tools/webservices/wsdl/WSInterProScan.wsdl
这个服务的网络地址是
http://www.ebi.ac.uk/webservices/whatizit/info.jsf
我简单介绍一下,这个服务是文本处理,将你提交的文本中的基因、药物、疾病或者是蛋白质的信息标注出来,这个参数是由你自己选择的。我只需用到其中的一个方法contact,参数有三个,pipelineName、text和convertToHtml,其中pipelineName就是选择标注基因,还是蛋白质,还是疾病,text就是你要输入的文本信息,convertToHtml控制输出格式为Html还是XML。
我编写的程序如下:
#!/usr/bin/perl -w
use strict;
use SOAP::Lite;
my $str='Quercetin, a ubiquitous bioactive plant flavonoid, has been shown to inhibit the proliferation of cancer cells and induce the accumulation of hypoxia-inducible factor-1alpha (HIF-1alpha) in normoxia. In this study, under hypoxic conditions (1% O(2)), we examined the effect of quercetin on the intracellular level of HIF-1alpha and extracellular level of vascular endothelial growth factor (VEGF) in a variety of human cancer cell lines. Surprisingly, we observed that quercetin suppressed the HIF-1alpha accumulation during hypoxia in human prostate cancer LNCaP, colon cancer CX-1, and breast cancer SkBr3 cells. Quercetin treatment also significantly reduced hypoxia-induced secretion of VEGF. Suppression of HIF-1alpha accumulation during treatment with quercetin in hypoxia was not prevented by treatment with 26S proteasome inhibitor MG132 or PI3K inhibitor LY294002. Interestingly, hypoxia (1% O(2)) in the presence of 100 microM quercetin inhibited protein synthesis by 94% during incubation for 8 h. Significant quercetin concentration-dependent inhibition of protein synthesis and suppression of HIF-1alpha accumulation were observed under hypoxic conditions. Treatment with 100 microM cycloheximide, a protein synthesis inhibitor, replicated the effect of quercetin by inhibiting HIF-1alpha accumulation during hypoxia. These results suggest that suppression of HIF-1alpha accumulation during treatment with quercetin under hypoxic conditions is due to inhibition of protein synthesis. J. Cell. Biochem. (c) 2008 Wiley-Liss, Inc.';
my $whatizit=SOAP::Lite -> service('http://www.ebi.ac.uk/webservices/whatizit/ws?wsdl');
my %parameters=();
$parameters{'pipelineName'}='whatizitSwissprotGo2';
$parameters{'text'}=$str;
$parameters{'convertToHtml'}='false';
print $whatizit->contact(
             SOAP:ata->name('parameters')->type(map=>\%parameters)
             );
但是怎么也得不到结果,请各位高手指点迷津。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP