Hi Jeremy,

> Can you mount another filter that, if Wicket does not respond, instead
> responds with either a valid page or a redirect back to a valid Wicket page?

no, that's no option. I got the ErrorPage-Version working in the way that I
manually set the status code with

val uri = req.getAttribute( "javax.servlet.error.request_uri" 
).asInstanceOf[String]
if( uri!=null ) {
  val res = getResponse.asInstanceOf[WebResponse].getHttpServletResponse
  res.setStatus( 200 )
}

That way you get a 200 on the client.

Best regards, --- Jan.



---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org

Reply via email to