In the Servlet API, you normally use a Servlet when you want to control, preprocess and/or postprocess specific requests. But when you want to filter/modify common requests and/or responses based on specific conditions, then a Filter is much more suitable.
0
votes
1answer
165 views
Second Servlet filter is not called on specific URL Pattern
i'm using two filters but second filter is not applied,
Here is the code of InvokeServlet.do
request.getRequestDispatcher("/secured/securedResult.jsp").forward(request, response);
and web.xml code ...
0
votes
1answer
254 views
OpenSessionInViewFilter cannot be cast to javax.servlet.Filter
I'm getting an exception when I try to start my Java EE Spring+Hibernate application in Tomcat7. This used to work, but I think I screwed something up while migrating to Tomcat7. The exception is
...
0
votes
0answers
14 views
Strategies for pruning unregistered cookies
I'm investigating how to best implement something you might call a "cookie monitor" in an enterprise application. It would essentially provide governance over what cookies are set in the large ...
1
vote
4answers
308 views
How to perform output encoding using filter to prevent XSS?
I am using the following code in servlet:
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
PrintWriter ...
0
votes
0answers
37 views
servlet filter to rewrite URL
I am trying to rewrite url(localhost:8080/sendEmail/newEmail.pdf?request_id=23456&emailAddress=). I want this url(localhost:8080/sendEmail/newEmail.pdf?request_id=23456). I have included filter ...
0
votes
1answer
58 views
Servlet Filter : how to catch HTTP error
Is there a way to catch HTTP error with a servlet Filter ? Are HTTP errors stored in the filter SevletResponse ?
My goal is to catch some authentication errors (401) to redirect user to a spare ...
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
1answer
108 views
Session Checking with Filter and Redirecting
I am trying to do login operation but when I am using filter for checking whether session is valid or not then I got the exception as :- java.lang.IllegalStateException, Cannot create a session after ...
0
votes
0answers
141 views
reading config properties file javascript
My scenario is like this:
I need to have config properties (key and value from .properties file located at server side) at my javascript side.
First Approach
I created a filter and read that ...
1
vote
1answer
106 views
Making Spring aware of Jersey filter
I have a class which implements ContainerRequestFilter, i want to inject some spring dependencies into it so i need to make Spring aware of the Jersey filter. The filter itself is configured in my ...
1
vote
1answer
44 views
Is there a good way to make a filter not apply to h:commandLink click?
I have a problem where an action in my h:commandLink is not firing. I reviewed BalusC's very useful post on what the cause might be, and I was able to trace it to number 11:
Be sure that no ...
4
votes
1answer
129 views
Get HTTP Response size from Grails plugin
I'm trying to write a Grails plugin that records the size of each HTTP response sent by the application it's installed in. The approach I've tried so far is:
(1) Write a servlet filter that wraps the ...
0
votes
1answer
145 views
JSF and JPA: Using Filter in persistence/model layer
I'm practicing JSF and JPA and the example I'm following there is a filter class for the model/persistence layer:
@WebFilter(servletNames = { "Faces Servlet" })
public class JPAFilter implements ...
0
votes
0answers
50 views
Magnolia CMS FilterDecorator
Can anyone explain how the info.magnolia.cms.filters.FilterDecorator
is supposed to be used? I cannot find any examples of it. I don't know how to set the decoratedFilter property.
I'm asking this ...
0
votes
0answers
133 views
JSF Session Create in Filter failing to Redirect
Based on lot of knowledge I picked up on this forum I have created a filter to support 'remember me' feature in my web app.
I am checking for existence of session, session_active status and the UUID ...
0
votes
0answers
349 views
Redirect Custom Session timeout page using spring secuirty
I implemented a session timeout check using Spring Security 3.1 with JSF 2.0. I wrote Servlet Filter and configured into <http>---><custom filter> in spring security xml file.
...
0
votes
1answer
559 views
Properties file as init-param in web.xml
I am migrating a Jsp-servlet based Java project that was hosted in websphere to tomcat. Following init-param is in web.xml inside a filter definition. I moved the properties file src folder which is ...
1
vote
1answer
277 views
WebSphere 7: Modify HTTP headers for static content file serving
I'm using the <enable-file-serving value="true" /> feature of WebSphere Application Server v7.0 to serve static content (images, CSS, JavaScripts) for my Java web app.
How can I modify the HTTP ...
1
vote
0answers
739 views
How to show a file upload progress bar in jsp and servlet with a multipart filter implemented?
I was working on a file upload task using jsp and servlet. I read many questions and answers regarding this topic on stackoverflow. I came accross this question on stckoverflow
How to upload files to ...
0
votes
1answer
67 views
Injecting beans into filter packaged in a shared library
I've got an JavaEE6 app with following structure:
app.ear
META-INF
application.xml
lib
commmon-server-lib.jar
webapp1.war
webapp2.war
services-ejb.jar
Both webapps have ...
0
votes
1answer
36 views
Servlet Access Filters and Roles
I am using a Servlet Filter to enforce access control. What is the best way to extend it to have it test for user roles? I can think of several solutions but none are elegant.
Coding a role test is ...
0
votes
1answer
146 views
add error and send request back to request page servlet filter
I am writing a servlet filter. I want to add error and send the response back to page from which the request has come.
public void doFilter(ServletRequest request, ServletResponse response, ...
1
vote
0answers
41 views
java Filter IllegalStateException or endless loop for fedlet on JBoss 7
I am stuck on a servlet filter problem and am hoping someone can help me.
What I have is a servlet filter (it's a SSO Fedlet) that I'm running on JBoss 7.1.1
This is a simple "Hello World" ...
0
votes
2answers
65 views
Webfilter only manages to login user in 2nd response (remember me)
I've been playing around with code inspired from one of balusC's answers. Basicly its a webfilter that tries to login the user if there is a remember me cookie.
The login happens so that it first ...
1
vote
1answer
160 views
How to Junit test servlet-filters [duplicate]
Is there anyway to unit test a filter as below?
public void doFilter(ServletRequest req, ServletResponse res, FilterChain chain) throws IOException,
ServletException {
HttpServletRequest ...
-3
votes
1answer
125 views
Set values for Managed Beans in a servlet filter. [closed]
I have this case:
I want to save the user name in a session scoped managed bean after a successful login. I do that login in a servlet filter. How can I access the managed bean from a servlet filter?
0
votes
0answers
56 views
How to map urls in tomcat, When we change ROOT.war to SomeApp.war
My application name was ROOT.war and now i want to change it to someAppname.war. But the problem is i have absolute path hardcoded in my jsp file for some images. i.e browser tries to load the image ...
0
votes
1answer
163 views
modify the requested session id in a HttpServletRequest [duplicate]
How can I modify the "requestedSessionId" attribute in a HttpServletRequest ?
public class MySecurityContextPersistenceFilter implements Filter {
@Override
public void ...
0
votes
2answers
50 views
Running a time taking process in a separate thread spawning from a servlet filter
There is a servlet filter in my application from which I need to invoke a web service which takes some time to return response and then store the response in session to be used later. I want that by ...
2
votes
1answer
224 views
JSF login filter, session is null
I've been trying to follow this answer primarily but I always get redirected to my login.xhtml (except for when i log in from the login page) because this...
AppManager am = (AppManager) ...
2
votes
0answers
53 views
Tiles Decoration Filter example
I'm trying to use Decoration Filter in Tiles, but cannot clearly understand how does it work.
The filter will intercept all requests to the indicated url pattern store the initial request path as ...
0
votes
1answer
80 views
Jersey POST xml and javax.xml.bind.UnmarshalException with ServletFilter
I have a Jersey POST REST service that both produces and consumes MediaType.APPLICATION_XML.
I also have a ServletFilter that does some authentication:
if (request instanceof HttpServletRequest) {
...
0
votes
1answer
41 views
check if the filter from referenced libraries is called succesfully or not
I have a filter in one of the referenced libraries. I have configured this filter in web.xml of my application.
Consider I have the filter in abcd.jar.
I am configuring it to my web.xml as
...
1
vote
1answer
304 views
JSF Cache Static Resources Filter
How do I write a filter which will appropriately cache static resources as recommended by Google (https://developers.google.com/speed/docs/best-practices/caching).
Is it sufficient to create a filter ...
2
votes
1answer
101 views
How can I pass information from a servlet filter into a Restlet ServerResource subclass?
In a Jetty-hosted webapp, I use a servlet filter to pull information out of URLs and sometimes route requests to non-Restlet servlets. For Restlet servlets, I want to be able to pass information to ...
1
vote
1answer
87 views
any tool to check if servlet filter is working or not
I have configured a servlet filter for the url pattern /webapp/test/**. The name of the filter is MyTempFilter.
Can we check if the request containing the pattern /webapp/test/** is intercepted by ...
0
votes
2answers
116 views
Session variables in ServletRequest
I need to access session variables through a filter. I don't even know if it is possible. In practice, the problem is that the doFilter method type from javax.Servlet.Filter implementation is ...
0
votes
0answers
122 views
Overriding init method of a servlet filter and registering it as bean in spring.xml
I have a filter as below.
public class MyFilter implements Filter
{
protected String _configValue = null;
protected IMyServiceManager _mgr = null;
public MyFilter()
{
}
public ...
0
votes
1answer
504 views
HTTP Status 500 - java.lang.NumberFormatException: null
I am creating a standard dynamic web project including a Servlet, a filter to filter the request and jsp pages.
I am taking the number of books from the welcome.jsp and depending on the count I am ...
0
votes
1answer
90 views
<url-pattern>/</url-pattern> for use by filter
Objective
My goal is to get a servlet filter to process requests to the home page before forwarding them to index.jsp.
Problem
I'm having trouble getting my filter to receive requests from "/". ...
0
votes
3answers
126 views
How to preserve request body after httpResponse.sendRedirect() for a servlet filter
I have a Java web application deployed on 2 host machines, fronted by a servlet filter. I sent a POST request to the application on one host, which is intercepted by the filter and redirected to the ...
0
votes
0answers
79 views
HttpServletResponseWrapper implementation gives IOException:Stream closed
My Goal - modify the application response using filter .
Method - using the HttpServletResponseWrapper to modify the response inside the filter
getting the following Exceptions -
...
1
vote
1answer
236 views
Custom Java Servlet Filter
I'm writing my first ever javax.servlet.Filter impl and am trying to write the portion of the doFilter method where I prevent the request from going any further in the chain:
@Override
public void ...
0
votes
1answer
184 views
HttpServletRequestWrapper removed parameter still showing up
I'm trying to filter out a query parameter named 'reason' using a Filter in java/jsp.
Basically, the filter is in place to ensure that a user has entered a 'reason' for viewing a page. If they have ...
0
votes
1answer
332 views
MySQL + JSF 2 login filter
Can someone help me with this error?
It says NullPointerException at UserDao.login and LoginBean.loginproject.
I m new to the filter in JSF 2.
Which attribute is in use from the method ...
1
vote
1answer
87 views
how to exclude a url in filtermapping
web.xml
<filter>
<filter-name>SessionCheckFilter</filter-name>
<filter-class>filter.SessionCheckFilter</filter-class>
</filter>
<filter-mapping>
...
0
votes
1answer
107 views
Using original URL request for proxied HttpServlet Request
I have an Apache proxy which redirects requests to /foo/bar to a web app running on /foo. The problem is that I have a Servlet filter in my filter chain which requires the request to still be in the ...
0
votes
1answer
140 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
102 views
How can I check for a presence of a logged in user in a session using JSTL?
I want to check if the user is logged in or not using JSTL.
I tried the following code:
<c:if test="${sessionScope.logged_in == null}">
<c:redirect ...
0
votes
1answer
325 views
how to correctly apply ContainerRequestFilter using Jersey on Tomcat
I am using Jersey and Tomcat to create a RESTful API.
I want to apply a CustomContainerRequestFilter (which implements ContainerRequestFilter) to each request.
So I've added
<init-param>
...







