Hi all,
As response service must produce huge XML answer. I use JAXB for this. I
want to clarify,
does jersey serialize all object( and store XML in memory ) before send
answer or jersey do streaming?
Also I what to try different solutions for serializations like
XStream, google-gson, Json-Smart,
jackson and other, I need to find the fastest one. So how
implement streaming data with jersey?
I found this one
http://neopatel.blogspot.com/2011/04/jersey-streaming-binary-data.html
but in this case you produce stream from which jersey read data, but I need
to get stream
to which I can write answer, does it possible?
Thanks.