views:

60

answers:

3

Is there a way to manually post an xml to a webservice using a browser something like:

POST http://url/Endpoint <xml file text>
+1  A: 

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/

Konrad Garus
+1  A: 

REST Client plugin

CodeToGlory
+2  A: 

You could use cURL on the command line:

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

or directly:

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