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
26 views
Filters not working properly
I made two filters for my auction web application. I implemented two filters, the first which performs simple logging operations, and the second, which check if the user is authorized to access a ...
2
votes
1answer
534 views
JSF Filter not redirecting After Initial Redirect [closed]
I am trying to setup a webfilter and need some help. My filter works fine on the initial login but when the session has timed out, and I click on any link, it fires my redirect statement but the ...
0
votes
2answers
13 views
JSF Servlet Pattern / weird requests
Currently i want to refactor my project and remove the /faces/ from the urls. Reason is simple, that i want to avoid, that users can "remove" the faces part and see the source of the underlaying xhtml ...
0
votes
0answers
33 views
How to get a request param sent from a Managed bean to a servlet filter?
I am not a JSF expert and I am trying to get a request parameter sent from a backing bean to Servlet filter but It does not work. I have spent a lot of time searching I appreciate any help, this my ...
1
vote
1answer
35 views
Homegrown authentication filter does not show the welcome page
So I've come accross quite a numbre of questions similar to mine, and I was starting to get it until I realised I don't, in short, here's the story :
In an authentification bean, success of ...
0
votes
1answer
28 views
doFilter called twice, intended behaviour?
I'm working through the Java EE servlet tutorial and tried the mood example (http://docs.oracle.com/javaee/6/tutorial/doc/gkcpg.html). I noticed the doFilter is getting called twice, once the servlet ...
2
votes
1answer
2k views
JAX-WS servlet filter exceptions
I have a client/server application that communicates via SOAP. The server-side application is a Java EE app that exposes web services using JAX-WS. I have a servlet filter setup to perform certain ...
5
votes
2answers
8k views
Setting Authentication Header in Servlet via Filter
Preface
This is my first attempt at a Filter, be gentle.
Project Description
I am trying to finalize a build for a SSO for several of our applications and I seem to be hitting a wall. The webapp I ...
0
votes
1answer
57 views
Java Servlets: How to repeat an HTTP request?
I'd like to repeat an HTTP request automatically if a database deadlock occurs; however, FilterChain.doFilter() is defined as a unidirectional chain (so I cannot reset its state).
In cases where it's ...
3
votes
5answers
2k views
ThreadLocal + java.sql.Connection + servlet filter = 2009?
I am writing some servlets with plain old mostly-JDBC patterns. I realized that I have several objects that would like to share a single transaction, and I'd like to enforce that one HTTP transaction ...
0
votes
0answers
21 views
How to make a filter to be get invoked only for jsp and servlets and not for gif or jsp or css or any other file included in jsp page?
I am working on a web application using jsp and servlet. To access this application login is compulsary. To allow athorised user to access the application I am adding session code to each jsp and ...
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 ...
2
votes
1answer
438 views
how to change the requestURL using filter or servlet
how to change the requestURL using filter or servlet .
for example if request is "http://servername1:8080"
I want to change the same to "http://servername2:7001"
1
vote
4answers
300 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
1answer
14 views
WebSphere 7.0 won't run filter for root URL
I have a WAR file that defines a filter to run on all URLs:
<!DOCTYPE web-app PUBLIC
"-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"http://java.sun.com/dtd/web-app_2_3.dtd">
...
0
votes
1answer
20 views
Compression servlet filter that supports minimum object size
I wish to add compression to our spring based web-service (serving both xml and json), I see that there are a number of different gzip compression filters, but not sure which is accepted as the most ...
11
votes
5answers
40k views
How to redirect to Login page when Session is expired in Java web application?
I'm running a web application in JBoss AS 5. I also have a servlet filter which intercepts all the requests to the server. Now, I want to redirect the users to the login page, if the session has ...
1
vote
1answer
79 views
Java servlet redirect between two different jersey REST services
We have an existing Jersey REST service in our application(URL: /rest/*).
A sample URL looks like: http://xxx:8080/app/rest/company/getdata
Based on a property we need to redirect the REST call to ...
0
votes
0answers
54 views
Can you do traditional Servlet Filtering with JAX-RS/Jersey?
Imagine you have a filter that starts a database transaction, processes the request, and then then attempts to commit the transaction.
doFilter(...) {
...
transaction.begin();
...
1
vote
1answer
335 views
Tomcat 7.0.35 set HTTP response header Content-Type charset for static HTML files
I am serving some static HTML files and a servlet all in a single war file from a standalone Tomcat 7.0.35 server using the HTTP Connector.
I want to specify the charset of all the static HTML files ...
0
votes
0answers
52 views
Tomcat - Servlet filter not invoked
I'm using a servlet filter named 'Controller' in my application which does some pre-processing for other servlets.
This works perfectly in my Dev environment but when I upload it to my hosting ...
1
vote
1answer
77 views
Capture outgoing HTTP request from Controller / Service
So I have the following scenario (it's a Grails 2.1 app):
I have a Controller that can be accessed via //localhost:8080/myController
This controller in turn executes a call to another URL opening a ...
2
votes
4answers
6k views
How to control cache in JSP page?
I created a Servlet filter with the following code in doFilter:
HttpServletResponse httpResponse = (HttpServletResponse)response;
httpResponse.setHeader("Cache-Control","no-cache");
...
0
votes
1answer
31 views
How do I exclude servlet-filters from having to be serialized?
I just converted my Beans to be ViewScoped instead of RequestScoped. However, since I had to add Serialized to those beans, I am getting two java.io.NotSerializableException exceptions.
This is my ...
0
votes
1answer
22 views
Tomcat displaying welcome-page before filter for jsp is executed
I am using Tomcat 6.0.36 and the welcome-page is /Login.jsp
I have a filter in place so that it can display a different login page for mobile devices.
It works with URL mywebsite.com/Login.jsp, but ...
0
votes
1answer
44 views
Editing the jsp content from a taglib
I have a filter that processes a given servlet mapping and includes a JSP that holds the structure of every page.
servletContext.getRequestDispatcher( "/index.jsp" ).include( request, response );
...
0
votes
0answers
15 views
weblogic AuthenticationFilter is not beint invoked
I've tried to implement a Weblogic Servlet Authentication Filter as it is described here. But it turns out that the Filter is not invoked by requests pointing to an deployed web application. I ...
4
votes
1answer
82 views
How to log managed bean name and action method being invoked in a servlet filter
I am working on a web application built on JSF 2 Mojarra. I have a requirement to log some instrumentation information through my servlet filter. To do this I also need to know which ManagedBean and ...
0
votes
0answers
108 views
Rendering View java.lang.StringIndexOutOfBoundsException: String index out of range: 0
I have a problem when I try to login in my web application, the user is ok, because with the trace I can see when the HQL found the data, so to more visible the stack trace is in below:
For the ...
0
votes
1answer
24 views
Embedded pages using doFilter in xhtml not working
I have a applied a Filter in my project as follows :
public class Filter implements javax.servlet.Filter{
@Override
public void destroy() {
// TODO Auto-generated method stub
}
...
0
votes
3answers
6k views
Why is my (Spring Security) servlet filter getting called twice?
Any ideas about why doFilterHttp in my SpringSecurityFilter subclass is getting called twice on each request? I don't really know where to start looking. Feeling a little stumped.
I'm reverse ...
0
votes
1answer
76 views
How do you create a simple user validation java filter?
Let's say that I have four jsps: signInInfo.jsp, signIn.jsp, home.jsp, and about.jsp. I don't want users to be able to see the home.jsp or about.jsp until they are signed in. It is fine if they view ...
0
votes
1answer
194 views
error: package javax.servlet does not exist
i was trying to implement a login filter in my web app with jsf 2, following this guide:
http://stackoverflow.com/tags/servlet-filters/info
after i compiled my filter and added the .class in ...
14
votes
3answers
6k views
Servlet.init() and Filter.init() call sequence
In which order are Servlet.init() and Filter.init() methods called in java web application? Which one is called first? Are all Servlet.init() methods called before than any Filter.doFilter method?
0
votes
0answers
25 views
How exactly use the FilterChaining?
Please someone tell me correctly How to use Filter Chaining I have searched many blogs in stackoverflow and other but still it is not clear. I have add complete filter chaining process in my ...
0
votes
1answer
40 views
prettyfaces and jsf: getting null values in action class using filter
hello i am using prettyfaces jsf2.0
i ve created a filter which is checking every request whether user is logged in or not
@WebFilter(urlPatterns= {"*.xhtml"} , dispatcherTypes = ...
1
vote
1answer
397 views
FacesContext#getCurrentInstance() returns null in Filter#doFilter()
Inside a
public void doFilter(ServletRequest req, ServletResponse resp, FilterChain chain)
I wanted to get the session using
...
1
vote
1answer
76 views
WebFilter urlPattern not working
I'm trying to use WebFilter with JSF 2, but my filter not is working. The urlPattern is not recognized.
My Filter class:
@WebFilter(urlPatterns = {"/rws/*"})
public class AuthorizationFilter ...
3
votes
4answers
123 views
How to secure my Account after Logout?
I have a situation- after I logout from a page if Someone click "Go Back" Button in a browser it automatic goes into back page again. In Logout.java (Servlet) I use:
session.invalidate();
...
1
vote
1answer
50 views
make servlet filter applicable for all web applications in EAR
I am developing a web application using JSP & Servlets.
I have developed a servlet filter for Login purpose. Which checks whether user is logged in or not, if user is logged in then it allows ...
0
votes
1answer
39 views
There's a way to prioritize Servlet Filter execution?
Can (should) I prioritize filter execution in Java-Tomcat configuration? How and why (not)? For example, If I need to execute a DB-Connection filter before a Session-treatment filter, would I do it in ...
0
votes
1answer
90 views
Why doesn't servlet filter redirect to /home, if request /login & isLoggedin is true
I have two JSF pages and some managed beans and one filter.
Everything and the filter works correctly;
- User must log in.
- So user either go directly to login.xhtml or redirected to it if he seek ...
0
votes
0answers
37 views
How to create a Servlet Filter in Eclipse in the absence of web.xml?
I am using Eclipse 3.6.2 and developing a Dynamic Web App project. I need to use a servlet filter. ( I am coming from NetBeans where web.xml would automatically created )
While creating this project ...
0
votes
1answer
118 views
Servlet filter which is mapped on /home is not invoked when I open /home.xhtml
I am new to Java Enterprise Edition. I started learning from some YouTube videos, and recently started reading http://docs.oracle.com/javaee/6/tutorial/doc/ I finished chapter 15.
I tried to ...
2
votes
2answers
84 views
Skip the servlet filter for ajax request
How can I skip the execution in doFilter for only an Ajax request?
As of now I am passing parameter called isAjax. Is there a "standard" way to do this?
How can I stop execution in filter in this ...
1
vote
2answers
705 views
Redirection from Servlet/Filter does not work
I have a problem with redirection - it simply does not work for valid paths.
Right now I use page forwarding in the Servlet, but I need redirection in a filter.
All the pages reside in the 'pages' ...
0
votes
1answer
132 views
Filter for User Session Check in JSF 2.0
this is how i solved my problem. :)
my pages which i want to protect are located inside cPanel folder. this is my LoginAdmin bean.
@ManagedBean(name = "loginAdmin")
@SessionScoped
public class ...
6
votes
1answer
2k views
Static ThreadLocal variable in a WebApp - Are there any Security/Performance issues?
I am researching and experimenting with a ThreadLocal variable in my Java Web Application. I am using the ThreadLocal variable to store a username (collected from the session) before a request, and ...
0
votes
1answer
116 views
spring servlet filter
I am trying to implement servlet filter for spring to implement application access control based on user role can you people recommend me some tutorial for that since I am new in spring mvc.
Thanks
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 ...





