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.

learn more… | top users | synonyms (3)

0
votes
0answers
94 views

AJAX Request is not redirect after validate by CAS

I had an CAS redirect problem now,When i open my application,It will fire one AJAX request with URL https://127.0.0.1:8443/booking/data/dataProvider?....,By the way,I have below setting in web.xml. ...
0
votes
1answer
96 views

Why wrappers required for manipulating Servlet Response

I'm new to Servlet Filters and I read HF Servlets and JSPs. But one questions I have is why can't a Filter manipulate an HttpServletsResponse after calling its chain.doFilter() without having it ...
0
votes
0answers
61 views

Java doFilter() throws NPE as part of a superclass

Okay - I've been doing some work with Java filters at work lately, and we often have to recycle code when moving between web apps - we can make the filters look at a relative location so that they can ...
0
votes
1answer
114 views

Display message from servlet filter

I have a servlet filter which checks for file names being attached , in my servlet filter i get the file names i validate it , however i am not able to display a message to the user please can someone ...
3
votes
3answers
80 views

Java Servlet Mappings

I have a servlet defined as in web.xml: <servlet-mapping> <servlet-name>SessionRebindServlet</servlet-name> <url-pattern>*.ppp</url-pattern> </servlet-mapping> ...
0
votes
1answer
78 views

Servlet Filter to check the Attachment extension

I need to restrict users from attaching files with some extensions for eg: bat,exe,bin etc.. For this i believe i will need to write a servlet filter . I am new to servlets ,can someone please guide ...
0
votes
1answer
2k views

servlet session , after logout , when back button of browser is pressed , again the secure page is shown

i have searched on many blogs , the issue is that i have a servlet and a html page , how can i prevent the user from hitting the back button of the browser after logout . i have read the same question ...
0
votes
0answers
37 views

How can i say GWTTesCase use web.xml configuration instead of servlet tags define inside *.gwt.xml?

I understand that GWTTesCase does not use web.xml for test gwt widgets and use servlet tags define inside *.gwt.xml (module file). I was wondering how can i define filter or listener or ...
0
votes
1answer
228 views

Servlet Filter url-mapping /* is not working on 404 errors

I'm using Resin Server & Apache 2.2 with virtual hosting. Here I'm facing a big challenge in calling a concrete filter. I'm having a generic Filter class to process all the incoming request. Ex: ...
0
votes
2answers
201 views

Custom Tomcat Error Page not showing image

I configured a custom error page in my web.xml file, but the image referenced in the page shows up as a broken link. The custom error page is just a simple html page: <!DOCTYPE html> ...
3
votes
3answers
334 views

HttpServletRequest.getSession(true) thread safe?

I see a lot of questions concerning whether the setAttribute and getAttribute methods on HttpSession are atomic. They are not. But, is the actual call of request.getSession(true) atomic per client? ...
1
vote
1answer
408 views

Primefaces fileupload filter when web.xml not used

I want to use the primefaces fileupload control in my jboss 7 web application. As I don't use any web.xml (not required with Java EE 6), how can I specify the filter required to make the fileupload ...
0
votes
0answers
54 views

Instantiating a new object everytime a filter is hit

I have an application which needs to query a database every time a particular page is hit. I have implemented a filter for this page. The filter does the querying, sets a attribute and then passes ...
0
votes
1answer
411 views

Spring MVC: How to modify response sent from spring controller?

I have an app with Spring MVC 3.1.3 and the UI developed with Dojo 1.4. The application has few controllers which handle binary files uploaded through dojo.io.iframe.send. The controller sends a json ...
0
votes
2answers
106 views

JSF Redirect causes exception in a filter

I have configured an authentication filter for any pages that I wanted to protect. However when it tries to redirect to the login page, I am encountering below error ...
0
votes
1answer
377 views

How do I retrieve the FacesContext within a Filter

How do I retrieve the FacesContext within a Filter? I followed following article on how to retrieve the FacesContext in a Filter: ...
1
vote
0answers
167 views

Servlet Filter is Returning “Proxy Error” on AWS

I have set up a Filter to add crawler support for my GWT web application. The idea is to catch all requests that contain "_escaped_fragment_=" and supply a snapshot for the crawler. I have set up ...
1
vote
1answer
180 views

How to open Pop-Up or Message or Growl when checking authorization wtih Servlet Filter in JSF (Primefaces)

I am doing a project for school. I am using JSF and Primefaces. But to check authorization with Servlet Filter when HTML5 file called in JSF project. Because JSF doesn't support HTML5. Project has a ...
0
votes
1answer
120 views

design servlet router from scratch

I want to design a url router based on servlets. Router will typically takes a web request to proper controller and action. Web urls will be of "controller/action" pattern. What I tried: ...
0
votes
0answers
87 views

Want to Retain the calling app's url in addressbar after redirecting

My project is in Java(Spring/JSF) and from our project we are calling .Net application.When we reached to .Net application, there we do some valid search and after that they just ...
2
votes
2answers
212 views

Set FacesMessage by Filter

In my JSF Application, there is a Filter which is used to check the authenticati0n process. When the authentication is failed, the filter redirect to login.xhtml. How can I pass the FacesMessage to ...
1
vote
2answers
251 views

IE not accepting cookie from Tomcat servlet filter

I have a servlet filter set up to handle various ways of entering my website. One goal of the filter is to set a cookie on entry. The below code works perfectly in Chrome, Safari and Firefox but IE ...
0
votes
0answers
73 views

Sharing an object between different ServletContexts

here's the deal. I've got alot of questions and alot of knowlegde holes which i hope you can fill in. So, i have to implement a SSO mechanism for our application which consist of two different web ...
1
vote
1answer
87 views

How to redirect user to custom web page after session times out?

I want to redirect user to session timed out page through my code. What logic I can write in my filter which would check whether the session has been timed out and redirect user to that custom page ...
2
votes
0answers
177 views

regex javax.servlet.Filter with Tuckey's UrlRewriteFilter

Can Tuckey's UrlRewriteFilter (http://tuckey.org/urlrewrite/) filter requests through additional javax.servlet.Filter's? The true problem is that web.xml's filter-mapping doesn't allow regex. I ...
4
votes
4answers
264 views

Mocking private field in servlet filter

Is is possible to mock (currently using Mockito, may be also other testing lib) the field 'sf' in the class shown below: public class SomeFilter implements Filter { private Logger log = ...
0
votes
0answers
116 views

multiple filter mapping for the same filter

I have 2 web apps deployed in weblogic. since each of them has a separate hibernate session factory. I use specialServlet in webapp2 to invalidate the 2nd level cache. filter1 is used to set up ...
2
votes
0answers
204 views

Is there a regular expression based servlet filter for web.xml?

I am in the process of migrating some code from Guice to Spring. guice-servlet has the nice feature that allows you to match servlet filters using regular expressions. For example I am using ...
0
votes
2answers
148 views

Session Filter redirect trouble

I have problems with AccessFilter in java web. When I am calling /main.jspx it redirect to the login.jsp. But when I am trying to log-in some error appeared public class AccessFilter implements ...
0
votes
0answers
76 views

SSL with Relative Path on JSP (Basic)

How do I get SSL to work with relative paths on a JSP page. Regardless of whether I'm calling a servlet in a form or just linking to a separate page, is there a way to guarantee that the paths ...
0
votes
0answers
48 views

Can I run filters before form-login redirection?

I have a Java webapp that uses form login and also contains filters. I would like to use a filter to show a confirmation page that must be accepted before showing the login screen. Is this possible? ...
0
votes
0answers
40 views

Hibernate session class error after filter called

After solved Filter related Question i have another problem related to hibernate session call. when struts page will called like searchResult.do it will call hibernate session which will throw error ...
0
votes
1answer
86 views

Filter not forwarding page after successful authentication

I have created filter for all jsp page which allow to redirect page when remote user not null in and user allowed. code as below public void doFilter(final ServletRequest request, final ...
3
votes
0answers
269 views

Accessing both REST resources and static resources with Jersey

I would like to use some static resources (images, js, css) from JSP pages served as Viewable I don't know how to use the WebPageContentRegex If I use servlet, I can execute resources but I can't ...
0
votes
2answers
122 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 ...
0
votes
0answers
124 views

Setting session-scoped bean in servlet filter wrapped by DelegatingFilterProxy in Spring

I'm assembling a somewhat simple webapp step by step, using Spring MVC. I have an authentication/authorization servlet filter using the DelegatingFilterProxy. The process was working well until I ...
0
votes
1answer
394 views

How to intercept page request with servlet filter before server sends response, appending jsessionid to response URL

I have a servlet filter which takes the jsessionid and attaches it to the response. However, it's not working correctly because the application gets stuck in an endless loop. The code looks correct, ...
0
votes
1answer
116 views

@WebFilter is not processed in my Glassfish

I have a filter in my code with below settings.. I mapped everything in the value request @WebFilter(value="/*", dispatcherTypes={DispatcherType.REQUEST, DispatcherType.FORWARD}) public class ...
1
vote
1answer
90 views

Servlet filter mapped on /* results in browser error “server is redirecting the request for this address in a way that will never complete”

I am developing a dynamic JSP/Servlet web application. In order to handle the session, I am using a filter which is mapped on /* in web.xml. When I'm opening a page in Firefox, it gives the following ...
0
votes
3answers
564 views

Hide querystring parameters from url in response.sendRedirect

I have a java servlet that is redirecting to a web application on a different server. I was wondering if there is a way to hide the querystring parameters, so they are not visible to the client in ...
0
votes
1answer
276 views

How servlet filter will dispatch error message on request page?

I have written a servlet filter which is configured to be invoked for each url (/*). On the basis of some condition, if the condition is passed, I want to proceed normal execution by ...
0
votes
3answers
111 views

Servlet which intercepts and redirects to another port

I have a machine which has two servers running: - A Java web container (Weblogic), and A non-Java web server obviously on two different ports 7001 and 15000. The security policy restrictions on ...
1
vote
0answers
574 views

org.springframework.web.filter.HiddenHttpMethodFilter cannot be cast to javax.servlet.Filter

I have a maven webapp based on spring framework 3 and when I run the application on jetty using maven-jetty-plugin by running the command mvn -e clean jetty:run it runs alright, but when I run it on ...
0
votes
1answer
336 views

HttpServletRequestWrapper and Filter lifecycle in tomcat

I am coding a Tomcat application and am authenticating against Google's oauth2 services. I was originally going to write a simple Filter to do the authentication but there is no way to set the user ...
0
votes
1answer
66 views

How to apply filter for one particular servlet using a servlet3.0?

I'm using servlet 3.0 but i can't specify filter for only one servlet using annotations? can anyone help me?
1
vote
0answers
233 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 ...
1
vote
1answer
223 views

The filter does not work properly JSF

When the login fails, the filter redirects me to /users/indexLogueados.xhtml. This is not correct. The filter should redirect me to /faces/index.xhtml. Why does this happen? Here is the filter: ...
0
votes
0answers
148 views

exclude web service description url from filter in web.xml

I am using Apache Shiro to secure a webservice using the following web.xml: <?xml version="1.0" encoding="ISO-8859-1"?> <web-app xmlns="http://java.sun.com/xml/ns/javaee" ...
0
votes
1answer
223 views

Access a managed property in filter

In my attempts to find out the reason for the problems stated in this question: JSF2 slow page loading, I would like to time a user session filter I use. I've created a timer that is an ...
2
votes
2answers
194 views

Servet request lost the params

Question related to Request parameters are dropped in Tomcat Well... apparently, even simplest request as below on some servers lost the parameters and some it is OK. @GET @Path("/get-retrieve") ...

1 2 3 4 5 17