get status from http response

2006-06-06 Thread Eddie Fang
Hi, In order to get the status back from HttpServletResponse, I've tried overriding servletwebresponse, as well as implementing a HttpServletResponseWrapper, to no avail. setStatus() doesn't seem to be called either way. Does anyone have an idea how to get the status back by any chance?

Re: get status from http response

2006-06-06 Thread Shing Hing Man
Have you tried to inject a HttpServletReponse into a Tapestry page .java file with the following? @InjectObject(service:tapestry.globals.HttpServletResponse) public abstract HttpServletResponse getServletResponse(); Shing --- Eddie Fang [EMAIL PROTECTED] wrote: Hi, In order to get the