You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by bu...@apache.org on 2002/09/02 21:36:16 UTC

DO NOT REPLY [Bug 11945] - Too much memory and time spent parsing large message

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=11945>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=11945

Too much memory and time spent parsing large message





------- Additional Comments From paulius_p@hotmail.com  2002-09-02 19:36 -------
I was testing simple scenario. Client sends request to the server which is very 
small SOAP message and gets back big one. All time was spent parsing that only 
reply message. 
I took a look at message parsing code and it seems to me that this is 
architectural problem. I may be mistaken but it looks as if parser is creating 
lots of small objects (strings and maybe events in xml recorder?) that eat all 
the memory. The speed would be much better if parser would directly create 
objects from SOAP message without using any temporary objects.