Consider adding a SAAJ frontend
-------------------------------
Key: CXF-3008
URL: https://issues.apache.org/jira/browse/CXF-3008
Project: CXF
Issue Type: New Feature
Reporter: Sergey Beryozkin
Some users use javax.xml.ws.SOAPConnection as a client side (frontend) api for
consuming SOAP web services.
By providing a basic SAAJ frontend, CXF can help such users with configuring
various connection properties via using HTTP-aware conduits.
Ex, the following fragment :
SOAPConnectionFactory factory = SOAPConnectionFactory.newInstance();
SOAPConnection connection = factory.createConnection();
SOAPMessage msg = MessageFactory.createMessage();
// set up the message
msg.getMimeHeaders().addHeader("Transfer-Encoding", "disabled");
connection.call(msg, someAddress);
can be used to disable the (chunked) transfer encoding.
In this example, "disabled" is not a standard value - is an extension.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.