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)

4
votes
0answers
345 views

Jersey and Filter Exception handling

I have a Jersey app configured with Spring Security handling authentication. The jersey-spring package is providing the SpringServlet class that is registered in my web.xml as a servlet. ...
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 ...
2
votes
0answers
173 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 ...
2
votes
0answers
190 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 ...
2
votes
0answers
270 views

Prevent JSF action method execution after a filter redirect

I have implemented a Servlet Filter to do my system's authorization and where needed I redirect the user using this: public void doFilter(ServletRequest request, ServletResponse response, FilterChain ...
2
votes
0answers
1k views

Custom @RolesAllowed roles in Jersey WebService with ContainerRequestFilter

I created a filter with ContainerRequestFilter interface and try to assign custom roles that returning user entity. @Override public ContainerRequest filter(ContainerRequest request) { User ...
2
votes
0answers
259 views

Java Servlet Filter not passing POST request + ZOPE

I am using Jetty Transparent Proxy Servlet for integration with ZOPE ( python ). This allows me to apply various java filters without without messing up with ZOPE and its extensions. We are using it ...
2
votes
0answers
334 views

Servlet 3.0 or Glassfish issue? Web-app ignores asyncSupported for filter when in annotation

I added a filter to my web-app (which already supports asynchronous operations), and forgot to insert the proper annotation on the filter to to preserve asynchronous support. Easy problem to solve. I ...
1
vote
0answers
47 views

Configurable App Modules - Servlet 3 - Enabling/Disabling servlets programmatically

I have a number of Servlet modules that I would like to be able to enable/disable based on some external property. I'm using Servlet 3.0, currently all the servlets are setup in web.xml. I know I ...
1
vote
0answers
675 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 ...
1
vote
0answers
40 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" ...
1
vote
0answers
149 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
0answers
225 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 ...
1
vote
0answers
468 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 ...
1
vote
0answers
208 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
0answers
619 views

Removing JSESSIONID in URL without using Filter and Wrapper

I have created a Filter listening on an url-pattern of /* which replaces the HttpServletRequest with a HttpServletRequestWrapper implementation. I have a Servlet and in this Servlet am using ...
1
vote
0answers
73 views

How to get the resources (Images/JSP/CSS) and their properties which got involved in Servlet Response

Once I got the servlet response,I need to check what are the resources involved in it. Like the below 1) What is JSP/HTML's relative path,name which is coming as a servlet response 2) What ...
1
vote
0answers
219 views

How can I get session scoped bean in filter from session? (jsf 2.1)

How can I retrieve session scoped bean in filter? I have tried like that, but it returns null. this is my session scoped bean: @SessionScoped @ManagedBean(name="sessionData") public class ...
1
vote
0answers
239 views

UrlRewriteFilter outbound to add host/subdomains to static resource paths

I need to have a filter to add subdomain paths to image and static paths from a java application. Eg: /foo/bar/xyz.jpg would become http://img1.foobar.com/foo/bar/xyz.jpg, where the protocol should ...
1
vote
0answers
199 views

Adding Servlet Filter to existing deployed applicaton on WebLogic

We are running Oracle EPM as an application under webLogic and are looking at the best way to restrict access at certain times (for maintenance etc). I think a servlet filter would be a neat way to ...
1
vote
0answers
167 views

josso bypasses javax.servlet.Filter when redirect to back_to page

In our app (service provider), there is a security filter to prevent viewing certain pages. For example a user can view a.xhtml but not b.xhtml. The user can login to view a.xhtml. And if he type in ...
1
vote
0answers
468 views

Change Request URI in Filter Java EE

I've used a Request Dispatcher in a Filter to change the request URI, but the problem with this Request Dispatcher is that it breaks the Filter chain. So, the Filter which is going to be called after ...
1
vote
0answers
516 views

Spring security Custom Filter: cannot read FROM POST parameter

I am trying to read a form-post parameter with the following code: String hohumId = request.getParameter("HOHUM_ID"); if (hohumId == null) { throw new ...
1
vote
0answers
259 views

Tomcat, XML Entity, and web.xml: any way to utilize string interpolation for env vars?

The goal is to have string interpolation work within the XML ENTITY. I'm attempting to have pluggable servlet filters, and seems like a good way is use XML ENTITY to include an xml fragment by path, ...
0
votes
0answers
11 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
0answers
39 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(); ...
0
votes
0answers
46 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 ...
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 ...
0
votes
0answers
88 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
0answers
24 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
0answers
33 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
0answers
87 views

Guice Request Scope: Do I need a Provider binding for a value seeded in a servlet filter?

I'm having some problems following the Guice wiki documentation for using RequestScope (https://code.google.com/p/google-guice/wiki/ServletModule#Using_RequestScope). I am trying to set up an ...
0
votes
0answers
29 views

Dispatching to Faces Servlet from Servlet Filter?

I have two filters; filter one with /admin/ mapping filter two with .xhtml mapping incoming request URI is /admin/home.xhtml when this request is executed the first filter is worked .and second one ...
0
votes
0answers
41 views

Change the URL mapping -Javamelody

I'm using Javamelody in my application. I need only root users to access the statistics. Javamelody by default you can access http://localhost/webapp/monitoring I need to change it to ...
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 ...
0
votes
0answers
33 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
0answers
57 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
129 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 ...
0
votes
0answers
45 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
126 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
328 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
0answers
55 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
0answers
115 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
0answers
76 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 - ...
0
votes
0answers
67 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
0answers
27 views

Restricted URL access

We have a requirement to intercept certain List of URL and redirect to error page if user is not authorised to view this page. Following are important points that we need to consider while ...
0
votes
0answers
166 views

How to access managed bean from servlet filter?

GAE only support "client" for javax.faces.STATE_SAVING_METHOD (defined in web.xml), so don't know because of that I not able access the manage bean from servlet filter. During login ...
0
votes
0answers
47 views

Page Display Changed on Redirect from HTTP to HTTPS in IE and MAC

When I redirect http URL (say, http://muddaballiportal.dev.mediashuttle.com/admin#SomePage ) to HTTPS, using below Java Code, it renders https://muddaballiportal.dev.mediashuttle.com/admin (renders ...
0
votes
0answers
91 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
0answers
52 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 ...

1 2 3 4