RE: Posting XML to AxisServlet

2004-06-15 Thread Deppen, Jeff
It's working now. I was missing the "SOAPAction". Thanks to everyone who responded! -jeff -Original Message- From: Abhinav Maheshwari [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 15, 2004 6:38 AM To: [EMAIL PROTECTED] Subject: RE: Posting XML to AxisServlet Jeff,

RE: Posting XML to AxisServlet

2004-06-15 Thread Abhinav Maheshwari
Jeff, In addition to posting the XML to the web service, you also need to put the HTTP Header "SOAPAction". Please check if you are sending this header while posting your request. For testing your web services, if you are looking for a GUI based tool, you can have a look at the Webservice Studio 2

RE: Posting XML to AxisServlet

2004-06-14 Thread Pridemore, Russell (MAN-Corporate)
I have successfully posted to Axis, using the following snippet: StringBuffer buf; // populate buf here... URL url = new URL(location); HttpURLConnection con = (HttpURLConnection) url.openConnection(); con.setRequestMethod("POST"); con.setDoOutput(true); con.setRequestProperty("Conte

RE: Posting XML to AxisServlet

2004-06-14 Thread Vivek . Chopra
To answer your last question- you can try out Anteater (http://aft.sourceforge.net/) for functional testing. For performance testing, try JMeter (http://jakarta.apache.org/jmeter/usermanual/build-ws-test-plan.html). - Vivek -Original Message- From: Deppen, Jeff [mailto:[EMAIL PROTECTED]