Tagged Questions
0
votes
2answers
117 views
Different servlet-api versions collision
I'm developing RestEasy web services using Maven and Jetty as the server. One of the services should use Filter that extends javax.servlet.http.HttpServletResponseWrapper. The problem is in method ...
0
votes
1answer
132 views
How do I handle error states in servlet filters without showing the user a stack trace?
I'm working on a Jetty/RESTEasy app. If I throw a WebApplicationException(myResponse) from one of my REST endpoints, it sends the given response to the client.
When a filter detects an error, I want ...
1
vote
1answer
72 views
Testing filters with jetty
I've configured my servlets/filters using guice-servlet. With bindings like
serve("/foo").with(HelloServlet.class);
Now, I want to test that mapping. I've used jetty-testing
private ...
0
votes
1answer
650 views
How to add servlet Filter with embedded jetty
I am embedding jetty into my app, and trying to work out how to add servlet filters (for cookie handling). The wiki and the javadoc's dont make it very clear, what am I missing:
Server server = new ...
0
votes
2answers
95 views
Doing a URL rewrite in a ServletFilter using Jetty
I need to do a URL rewrite in a ServletFilter so that "foo.domain.com" gets rewritten to "foo.domain.com/foo". I'm using Jetty, which has a handy way of modifying requests: just cast the request to a ...
1
vote
0answers
211 views
Jetty Filter to modify the Response - java.lang.IllegalStateException: WRITER
I am trying to modify the http response in a filter and am getting the following exception
java.lang.IllegalStateException: WRITER
at ...
0
votes
1answer
199 views
How to set a dynamic Expires header in Jetty?
Jetty allows headers to be set using the jetty-rewrite functionality, but it doesn't appear to be very smart, and only accepts a fixed string.
How do I tell Jetty to send an "expires in 8 hours" ...
0
votes
1answer
201 views
Handling HTTP HEAD request using jetty and nginx
I'm looking for the best way to handle HEAD request using jetty (java servlets) and nginx. For my initial "mvp" solution, I was planning on just writing a servlet filter that changes the HEAD to a ...
0
votes
1answer
261 views
Restrict Servlet access based on request origin with Jetty 6
I have a Jetty 6 server configured programmatically (no XML), which has several Servlets.
I would like to restrict the access of one of those Servlet to requests coming from "localhost".
Is there a ...
1
vote
1answer
349 views
Invoking filter programmatically inside servlet (Created using jetty/spark)?
I'm trying to create a lightweight, self-contained webservice using the spark microframework ( http://www.sparkjava.com/readme.html ). I need to work with multi-part forms (I want to receive both a ...
0
votes
4answers
2k views
How to map a servlet filter on /* in Jetty?
I have a servlet filter which I want to map to http://127.0.0.1:8888/ in Jetty. I have put a servlet filter mapping with url pattern /*. However, the filter is not called. I also tried with / mapping. ...
0
votes
2answers
1k views
Jetty 8 GzipFilter does not apply sometimes
I just updated my web server from Jetty 6.x to Jetty 8.0.1, and for some reason, when I do the exact same request, sometimes the response has been Gzipped and sometimes not.
Here is what the request ...
0
votes
2answers
540 views
How to check for an OPTIONS method call in a java servlet filter?
I have a servlet filter, in which if the call is OPTIONS method call, then a specific set of task needs to be done.
Is there a way I can check my custom filter , which as of now , extends ...
1
vote
2answers
219 views
Including a JSP file from a Java EE Filter
I am trying to include a JSP page after the end of a filter. I have the following code:
public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain)
...
2
votes
1answer
2k views
How do I filter all incoming requests and not just ones mapped to servlets?
I am toying around with embedded Jetty and I am wondering why my filter only intercepts /hi and not any other incoming request. Here is my example case:
Without Filter:
localhost:8080/hi
=> ...
