我是Perl新手。我正在關注生物信息學webapi,我試圖簡單地顯示存儲在$ result中的值。我的打印「$ result \ n」;命令似乎不起作用。這裏發生了什麼有什麼可能性?Perl中的SOAP :: Lite
# #!/usr/local/bin/perl
use strict;
# 1. include SOAP Lite
use SOAP::Lite;
# 2. specifies WSDL file
my $service = SOAP::Lite -> service('http://xml.nig.ac.jp/wsdl/GetEntry.wsdl');
# 3. call SOAP service
my $result = $service->getXML_DDBJEntry("AB000003");
print "$result\n";
只是一個方面說明:XML ::編譯是很好的處理SOAP的東西。 – asjo