簡體   English   中英

http POST 錯誤

[英]http POST error

我正在嘗試通過 Restclient 的 http POST 請求將 xml 發送到另一個網絡服務器。這是代碼:

response =  RestClient.post 'https://secure.rowebooks.co.uk/testorders/orders.aspx', :content_type => "text/xml", :myfile => File.read("#{Rails.root}/public/shared/#{@book}.xml")

但我收到了這個錯誤

ERROR 2 Data at the root level is invalid. Line 1, position 1.ERROR3 Object reference not set to an instance of an object.

我被告知我收到了該錯誤,因為 XML 文件不在調用的內容中。 它必須在內容中。 我不知道這是什么意思。

任何建議/線索將不勝感激。

謝謝

你應該這樣做:

response =  RestClient.post( 'https://secure.rowebooks.co.uk/testorders/orders.aspx', 
File.read("#{Rails.root}/public/shared/#{@book}.xml"), 'Content-Type' => 'text/xml' )

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM