This content has been marked as final.
Show 2 replies
-
1. Re: JBoss-net.sar changed in 3.2.6 Final
thomas.diesler Nov 22, 2004 7:07 PM (in response to efrinmn)Your code should use the SAAJ API to create SOAPEnvelope objects and should (if possible) stay clear of dependencies on Axis.
javax.xml.soap.SOAPFactory
The functionality you are looking for it still available through the factory methodSOAPEnvelopeAxisImpl.newSOAPEnvelope(InputStream input)
-
2. Re: JBoss-net.sar changed in 3.2.6 Final
thomas.diesler Nov 22, 2004 7:14 PM (in response to efrinmn)Please also have a look at
javax.xml.soap.MessageFactory.createMessage(MimeHeaders headers, InputStream in) Internalizes the contents of the given InputStream object into a new SOAPMessage object and returns the SOAPMessage object.