9

恐怕我在通过网络服务器发布文档(例如 XML)方面没有太多经验,所以如果我对 HTTP 的理解不足,我深表歉意。

127.0.0.1我在port上的 ruby​​ 应用程序中设置了一个基本的 Mongrel Web 服务器2000。(服务器)。

我在同一台计算机上运行一个单独的 Ruby 应用程序。(客户端)。

我需要客户端将 XML 文档发布到服务器。

我曾尝试使用 Net::HTTP 来做到这一点,但我找不到一个清楚的例子来告诉我应该做什么。我试过了,但遇到了错误。我已将请求分解以使其尽可能基本:

http = Net::HTTP.new("127.0.0.1", 2000)
http.post('file', 'query=foo') #xc.rb line 6

但它会导致以下错误

    C:/Ruby193/lib/ruby/1.9.1/net/protocol.rb:141:in `read_nonblock': An existing connection was forcibly closed by the remote host. (Errno::ECONNRESET)
    from C:/Ruby193/lib/ruby/1.9.1/net/protocol.rb:141:in `rbuf_fill'
    from C:/Ruby193/lib/ruby/1.9.1/net/protocol.rb:122:in `readuntil'
    from C:/Ruby193/lib/ruby/1.9.1/net/protocol.rb:132:in `readline'
    from C:/Ruby193/lib/ruby/1.9.1/net/http.rb:2562:in `read_status_line'
    from C:/Ruby193/lib/ruby/1.9.1/net/http.rb:2551:in `read_new'
    from C:/Ruby193/lib/ruby/1.9.1/net/http.rb:1319:in `block in transport_request'
    from C:/Ruby193/lib/ruby/1.9.1/net/http.rb:1316:in `catch'
    from C:/Ruby193/lib/ruby/1.9.1/net/http.rb:1316:in `transport_request'
    from C:/Ruby193/lib/ruby/1.9.1/net/http.rb:1293:in `request'
    from C:/Ruby193/lib/ruby/1.9.1/net/http.rb:1286:in `block in request'
    from C:/Ruby193/lib/ruby/1.9.1/net/http.rb:745:in `start'
    from C:/Ruby193/lib/ruby/1.9.1/net/http.rb:1284:in `request'
    from C:/Ruby193/lib/ruby/1.9.1/net/http.rb:1307:in `send_entity'
    from C:/Ruby193/lib/ruby/1.9.1/net/http.rb:1096:in `post'
    from W:/Ruby/A/xc.rb:6:in `<main>'

我想我做的完全错了。请您给我一个示例(或指向我的教程),该示例应该允许我发布一些基本数据,例如"<tag1>text</tag1>". 希望我能够设置适当的标头并处理响应。

另外,我不需要使用 net/http;任何没有额外商业用途许可限制的免费方法都可以。

4

1 回答 1

4

当使用rest-client gem时,这非常容易

require 'rest-client'

response = RestClient.post "http://127.0.0.1:2000", "<tag1>text</tag1>", :content_type => "text/xml"
于 2012-02-03T00:15:53.817 回答