Hi, I was playing with the idea of adding asynchronous / one way messaging in Axis. One problem I ran into is: since Axis uses SAX based parsing, message is read from the HTTP connection input stream directly as it being consumed. If I would close the HTTP connection before the processing the message, I would have to either read all of the message into memory, or store it away somewhere for further processing.
Is this understanding correct? Wen