Hi, I am evaluating the migration from axis1 to axis2 framework. Specifically we use dynamic web service invocation with DOM based parsing of the results. In axis1 it looked as a natural approach since org.apache.axis.message.SOAPEnvelope returned by org.apache.axis.client.Callimplemented org.w3c.dom.Node interface. In axis2 the dynamic invocation with org.apache.axis2.client.OperationClient eventually returns org.apache.axiom.soap.SOAPEnvelope which is Axiom based. I notice that it is possible to convert Axiom based SOAPEnvelop to DOM based document with SAAJUtil.getDocumentFromSOAPEnvelope.
So I wonder if we stay with existing dom parsing is there any the performance issues in doing such conversion on every service call. Or we should seriously consider using axiom based parsing instead. Thanks in advance, Gennady
