Hello,

I am using SAAJ for creating my SOAP requests. How can I specify that POST is used instead of GET in my SOAP Request. My Application is running on Linux.

The basis of my Application is:

SOAPConnection con = scFactory.createConnection();
MessageFactory factory = MessageFactory.newInstance();
SOAPMessage message = factory.createMessage();
.
.
.
build XML message
.
.
.
URL endpoint = new URL ("http://somedomain.com/service/app";);
SOAPMessage response = con.call(message, endpoint);

If u know how to specify either a POST or GET request in SAAJ, please let me know

Regards
Jack



--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to