Tagged Questions
0
votes
0answers
62 views
How to write a stream-oriented servlet response filter?
I have an XSLT filter which transforms XML output from a servlet to HTML. The filter uses a CharResponseWrapper to extract the response as a string and then run it through the filter. This works fine ...
0
votes
0answers
71 views
Reading response body in Java EE filters
How can I read the content of HTTPServletResponse object
I have a REST architecture which responds with JSONS.
eg /loginresult.json will respond with a JSON.
For capturing this request/ response I ...
0
votes
1answer
84 views
calculating response time in java filter
I don't know the lifecycle of the doFilter() method in a java filter.
I am wondering if I were to set a start time in the request at the beginning of the method, is there a way or place to set a stop ...
1
vote
1answer
238 views
Log content size of servlet requests and response with a filter in java
I'm working on a java project, and now I have been asked to track how much data is sent to and from our server. So I've written a filter and mapped it to all the calls it should be monitoring as other ...
0
votes
3answers
2k views
javax.servlet.HttpServletResponse.sendRedirect not redirecting
I have a javax.servlet.Filter class that I would like to redirect urls. The problem is that when I call
httpResponse.sendRedirect("http://myurl/login.jsp")
return;
it doesn't redirect to there. ...
0
votes
2answers
2k views
Using a filter to add a cookie to the users session
Update: The issue is with the setting used for the MaxAge. Setting it to zero will cause the cookie to be deleted, hence it was shown in the response header but was then deleted and did not show in ...
2
votes
1answer
539 views
Java deflate response
Hello all
I want to make a filter for tomcat to deflate all responces of certain MIME type.
Any guidelines?
...
String ae = request.getHeader("accept-encoding");
if (ae != null && ...
1
vote
2answers
104 views
Should filters write to the response during or after filtering?
I have a filter which processes generated HTML and rewrites certain elements. For example, it adds class attributes to some anchors. Finally, it writes the processed HTML to the response (a subclass ...
0
votes
1answer
862 views
Modify Http response
I have a need to write a Servlet filter to inspect the HTML being sent out and modify all the links that point to /images in it to a different domain altogether so that they are served from a ...
0
votes
3answers
663 views
Java Servlet: pass a request back to default processing
I want a Servlet to handle requests to files depending on prefix and extension, e.g.
prefix_*.xml
Since mapping on beginning AND end of request path is not possible, I have mapped all .xml requests ...