Re: java.lang.IllegalStateException: STREAMED - Consuming JSON fails

2011-09-29 Thread Tate Jones
Cheers. Changed the call to. BufferedReader in = new BufferedReader( new InputStreamReader( hsr.getInputStream())); On 28/09/2011, at 7:03 PM, Martin Grigorov wrote: This exception says Don't use the reader

java.lang.IllegalStateException: STREAMED - Consuming JSON fails

2011-09-28 Thread Tate Jones
Hi Group, I am new to Wicket and I am attempting to read some JSON data posted from a wicket page. The following exception occurs with Wicket 1.4.18 and Jetty 6.1.x when attempting to read the servlet request - BufferedReader br = hsr.getReader(). Sep 28, 2011 8:50:48 AM

Re: java.lang.IllegalStateException: STREAMED - Consuming JSON fails

2011-09-28 Thread Martin Grigorov
This exception says Don't use the reader but use the input stream because something (maybe header) has been already read from the stream. On Wed, Sep 28, 2011 at 10:59 AM, Tate Jones t...@bluedog.com.au wrote: Hi Group, I am new to Wicket and I am attempting to read some JSON data posted from