Hi,
I'd like to define a @GET method whose entity is an OutputStream that gets
populated slowly over time. Imagine for example, a response that gets
populated with a line of text every second, for a total of one minute. The
client would like to act on the reply every time a line is added (once a
second) as opposed to waiting for the complete response to be written (once
a minute).
I figured out that I'm supposed to use javax.ws.rs.core.StreamingOutput on
the server-side thanks to
http://stackoverflow.com/questions/3496209/input-and-output-binary-streams-using-jersey
but it's not clear what I'm supposed to do on the client-side.
How can I get access the client-side InputStream before the Response is
complete?
Thanks,
Gili
--
View this message in context: http://jersey.576304.n2.nabble.com/Entity-streams-tp6314573p6314573.html
Sent from the Jersey mailing list archive at Nabble.com.