The javadoc on
org.apache.wicket.extensions.ajax.markup.html.form.upload.UploadWebRequest
explains how to install it (Note: javadoc has problems with it...maybe the @
symbol?).

class MyApplication extends WebApplication {
...
  @Override
  protected WebRequest newWebRequest(HttpServletRequest servletRequest) {
     return new UploadWebRequest(servletRequest);
  }
 ...
}


Does this not mean that _all_ requests handled by this application will be
using UploadWebRequests?

If so, is this fine? Is this how everyone does it? Overheads?


Cheers
Oli


-- 
View this message in context: 
http://www.nabble.com/Question-about-using-UploadWebRequest-tf4301766.html#a12244655
Sent from the Wicket - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to