该示例调用XMethods的 temperature service(http://www.xmethods.com/ve2/ViewListing.po;jsessionid=wwY9oY_kCAvsXXW3l9-V4Jes(QHyMHiRM)?key=uuid:477CEED8-1EDD-89FA-1070-6C2DBE1685F8)。temperature服务根据请求的美国某地区的邮码返回该地区当前的温度。
print "A fault ($response->;{faultcode}) occurred: " .$response->;{faultstring}\n";
}
复制代码
相关参考
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/
I believe fayland did something similar like this. oh, here
http://www.1313s.com/f/xml-rpc-client.html作者: apile 时间: 2005-03-12 09:15 标题: [原创] perl WebServices客户端 我有過寫一個更簡單的...
Server端是用Java寫的..
Client端如下.....很簡單吧..只要有SOAP::Lite與wsdl
一切都沒問題....
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作者: libiqing77 时间: 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)
);
但是怎么也得不到结果,请各位高手指点迷津。