you should be able to get unparsed stream if you put your code in
servlet before it is handled to AXIS - did you try this approach?
thanks,
alek
Dimuthu Leelarathne wrote:
Hi Naresh,
Right now I don't think there is a way you can get untouched stream,
because Axis begins processing a SOAP mes
Hi Naresh,
Right now I don't think there is a way you can get untouched stream,
because Axis begins processing a SOAP message by parsing it using SAX and
then it stores these SAX events. Then Axis work on these stored SAX
events.
So if you really, really want to do this - you have to start parsing
w XML from AXIS framework?
thanks,
Naresh
-Original Message-
From: Bhuvan Gupta [mailto:[EMAIL PROTECTED]
Sent: Sat 12/13/2003 6:24 PM
To: [EMAIL PROTECTED]
Cc:
Subject: RE: Problem in getting unparsed raw XML
PROTECTED]
Sent: Saturday, December 13, 2003 11:08 AM
To: [EMAIL PROTECTED]
Subject: Problem in getting unparsed raw XML from AXIS
Hi
Is there a way to get raw and unparsed request XML from AXIS (for message
style services)?
I tried getting it by using the following in invoke method of a "ha
Hi
Is there a way to get raw and unparsed request XML from AXIS (for message style
services)?
I tried getting it by using the following in invoke method of a "handler provider" (a
provider, which is implemented as a handler)
msgContext.getCurrentMessage().writeTo(outStream)
But it seems