I need to use compression when sending SOAP requests and receiving responses
from the WebService. Unfortunately I didn't find any references on how to
enable GZIP compression. Here is the simple code I use to send the soap
request:
--
SOAPConnectionFactory scf = SOAPConnectionFactory.newInstance();
SOAPConnection sc = scf.createConnection();
MessageFactory mf = MessageFactory.newInstance();
SOAPMessage message = mf.createMessage();
/*
.... some code
*/
URL url = new URL("https://blahblah/service/ws/Someservice");
SOAPMessage reply = sc.call(message, url);
--
Is there any way to enable the compression on the API level or will I have
to wrap the SOAPMessage to implement compression myself?
--
View this message in context:
http://old.nabble.com/SOAPMessage-SOAPConnection-%3A-how-to-do-gzip-tp30445411p30445411.html
Sent from the Axis - User mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]