开发者

Is there a way to manually post to a rest webservice using a browser

Is there a开发者_如何学Go way to manually post an xml to a webservice using a browser something like:

POST http://url/Endpoint <xml file text>


You could use cURL on the command line:

curl -d '@/home/test.xml' http://url/Endpoint

or directly:

curl -d '<hello/>' http://url/Endpoint


With browser add-ons - yes. For example "Tamper Data" for Firefox: https://addons.mozilla.org/en-US/firefox/addon/966/

See also "Poster" add-on: https://addons.mozilla.org/en-US/firefox/addon/2691/


REST Client plugin

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜