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
精彩评论