Writing directly to the HTTP Response object?

2008-03-28 Thread Michael Mehrle
I have a non-Wicket AJAX request call a Wicket page to process some data (it's that jQuery file uploader I was working on). Now, the PHP example that came with that jQuery based file uploader writes out some status information to the AJAX JS script via HTTP Response like this (I'm no PHP coder):

Re: Writing directly to the HTTP Response object?

2008-03-28 Thread Igor Vaynberg
wicket is probably buffering the response, so you should try ((webresponse)getresponse).gethttpservletresponse().getoutputstream().write -igor On Fri, Mar 28, 2008 at 2:16 PM, Michael Mehrle [EMAIL PROTECTED] wrote: I have a non-Wicket AJAX request call a Wicket page to process some data

RE: Writing directly to the HTTP Response object?

2008-03-28 Thread Michael Mehrle
. Thanks for your input - enjoy your weekend. Michael -Original Message- From: Igor Vaynberg [mailto:[EMAIL PROTECTED] Sent: Friday, March 28, 2008 2:44 PM To: users@wicket.apache.org Subject: Re: Writing directly to the HTTP Response object? wicket is probably buffering the response

RE: Writing directly to the HTTP Response object?

2008-03-28 Thread Michael Mehrle
= requestCycle.getResponse(); Rep.write(foo); } }); -Original Message- From: Igor Vaynberg [mailto:[EMAIL PROTECTED] Sent: Friday, March 28, 2008 2:44 PM To: users@wicket.apache.org Subject: Re: Writing directly to the HTTP Response object? wicket is probably buffering the response