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-29 Thread Tate Jones
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 a wicket page. The following

Messages to FeedBackPanel from AbstractAjaxBehavior onRequest

2011-10-05 Thread Tate Jones
Hi Group, I have added a AbstractAjaxBehavior to WebPage to recieve a 'post' request from JavaScript (.ajax post). During the onRequest method an error could occur and I want to display this in the FeedbackPanel. When I attempt to use the error(..) or info(..) method the following WARNING

Re: Messages to FeedBackPanel from AbstractAjaxBehavior onRequest

2011-10-05 Thread Tate Jones
AbstractDefaultAjaxBehavior to update components (target.add()) and target.appendJavaScript(someJSONP) On Wed, Oct 5, 2011 at 10:38 AM, Tate Jones t...@bluedog.com.au wrote: Hi Group, I have added a AbstractAjaxBehavior to WebPage to recieve a 'post' request from JavaScript (.ajax post). During the onRequest

Re: Messages to FeedBackPanel from AbstractAjaxBehavior onRequest

2011-10-05 Thread Tate Jones
didn't show the required message. On 05/10/2011, at 8:07 PM, Martin Grigorov wrote: On Wed, Oct 5, 2011 at 1:02 PM, Tate Jones t...@bluedog.com.au wrote: Thanks Martin, I am still learning so AbstractAjaxBehavior was my first choice. No reason... I have changed