Perl:如何验证对“XML::eXistDB::RPC”的成功调用

发布于 2024-11-04 14:36:13 字数 239 浏览 3 评论 0原文

我正在使用 eXist 数据库编写一个小型 Perl 应用程序,我想知道的是: 我怎样才能看到我的通话

my $eXist = XML::eXistDB::RPC->new( destination=>$eXist_db, repository=>$bank, user=>"admin", password=>"pass" ) ;

是否成功?

谢谢

i am writing a small perl app using the eXist database, and i am wondering is:
how can i see that my call

my $eXist = XML::eXistDB::RPC->new( destination=>$eXist_db, repository=>$bank, user=>"admin", password=>"pass" ) ;

is successful or not ?

thanx

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

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

发布评论

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

评论(2

書生途 2024-11-11 14:36:15

根据文档:

所有方法都返回一个列表,其中
第一个标量是返回码 (RC)。
当该代码为 0 时,一切顺利。
否则,代码代表
传输错误或异常
(拒绝)由服务器报告
逻辑。无论哪种情况,第二个
返回列表中的标量包含
错误消息。例如,

也许这也适用于构造函数,尝试:

my ($rc,$eXist) = XML::eXistDB::RPC->new( destination=>$eXist_db, repository=>$bank, user=>"admin", password=>"pass" );

现在,如果 $rc != 0 则出现错误。

According to the docs:

All methods return a LIST, where the
first scalar is a return code (RC).
When that code is 0, all went well.
Otherwise, the code represent the
transport error or the exception
(refusal) as reported by the server
logic. In either case, the second
scalar in the returned list contains
the error message. For instance,

Maybe this applies also for the constructor, try:

my ($rc,$eXist) = XML::eXistDB::RPC->new( destination=>$eXist_db, repository=>$bank, user=>"admin", password=>"pass" );

now, if $rc != 0 there was an error.

我不是你的备胎 2024-11-11 14:36:14

当对象初始化失败时,将通过 Log::Report 发送消息,因此请挂钩。

仅当程序员忽略设置 rpcdestination 参数时才会发生这种情况。 new 构造函数将始终返回一个对象实例

When object initialisation fails, it will be messaged through Log::Report, so hook into that.

This only happens if the programmer to neglected to set either rpc or destination parameter. The new constructor will always return an object instance.

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