如何在 ruby​​ 中对 XMLRPC::Client 进行wiredump?

发布于 2024-08-01 19:04:35 字数 58 浏览 2 评论 0 原文

我正在 ruby​​ 中使用 XML RPC 编写一些代码,并且需要查看一些调试信息,如何做到这一点?

I'm working on some code using XML RPC in ruby and need to see some debug info, how do you do that?

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

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

发布评论

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

评论(2

多彩岁月 2024-08-08 19:04:35

读取包的源代码后,XMLRPC::Client 依次使用 Net::HTTP 作为其传输。

所以我认为你应该能够将一个方法相应地修补到 XMLRPC::Client 中:(

require 'pp'

# the magic happens here
class XMLRPC::Client
  def set_debug
    @http.set_debug_output($stderr);
  end
end

server = XMLRPC::Client.new2("http://rpc.technorati.com/rpc/ping")
server.set_debug
result = server.call("weblogUpdates.ping", "Copenhagen.rb", "http://www.copenhagenrb.dk/")
pp result

来自 此处)。

Reading the source of the package, XMLRPC::Client uses Net::HTTP in turn as its transport.

So I think you should be able to monkey-patch a method into the XMLRPC::Client accordingly:

require 'pp'

# the magic happens here
class XMLRPC::Client
  def set_debug
    @http.set_debug_output($stderr);
  end
end

server = XMLRPC::Client.new2("http://rpc.technorati.com/rpc/ping")
server.set_debug
result = server.call("weblogUpdates.ping", "Copenhagen.rb", "http://www.copenhagenrb.dk/")
pp result

(sample for XMLRPC snarfed from here).

述情 2024-08-08 19:04:35

这里的答案很好,但请注意,http 级转储通常可能是 gzip 编码的,因此不太适合调试。 另一种选择是使用client.http_last_response。 例如:

server = XMLRPC::Client.new2("http://rpc.technorati.com/rpc/ping")
result = server.call("weblogUpdates.ping", "Copenhagen.rb", "http://www.copenhagenrb.dk/")
puts server.http_last_response.body

Fine answer here, but do note that the http-level dump may often be gzip encoded and thus not very good for debugging through. Another option is to use client.http_last_response. E.g.:

server = XMLRPC::Client.new2("http://rpc.technorati.com/rpc/ping")
result = server.call("weblogUpdates.ping", "Copenhagen.rb", "http://www.copenhagenrb.dk/")
puts server.http_last_response.body
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文