Perl 中的 SOAP::Lite

发布于 2024-08-24 05:48:33 字数 506 浏览 6 评论 0原文

我是 Perl 新手。我正在关注生物信息学 webapi 并且我正在尝试简单地显示存储在 $result 中的值。我的打印“$result\n”;命令似乎不起作用。这里发生的事情有哪些可能性?

# #!/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";

I am new with Perl. I'm following a bioinformatics webapi and I'm attempting to simply display the value stored in $result. My print "$result\n"; command doesn't appear to be functioning. What are some possibilities as to what is going on here?

# #!/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";

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

自由范儿 2024-08-31 05:48:33

我记得, $result 是一个对象;尝试:

use Data::Dumper;
print Dumper($result), "\n";

这可以帮助您确定发生了什么。

As I recall, $result is an object; Try:

use Data::Dumper;
print Dumper($result), "\n";

This may help you determine what is going on.

猫七 2024-08-31 05:48:33

在浏览器中打开代码中的 URL,然后尝试通过浏览器搜索功能查找“AB000003”。
对我来说,我找不到文本 - 因此空/undef 是合乎逻辑的结果。

Open the URL from your code in a browser and try a find "AB000003" via the browser search function.
For me I can not find the text - thus empty/undef is the logical result.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文