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 ...
0
votes
1answer
558 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 ...
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 ...
1
vote
1answer
86 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
0answers
25 views

How to change order of servlet filters in web application [duplicate]

Possible Duplicate: How to define Servlet filter order of execution using annotations In Java web application, we define fileters and their URL-mapping in web.xml. It is said that filters ...
0
votes
2answers
28 views

Prevent connection to Access Manager

GlassFish, Policy Agent, OpenAM, Portal on Spring: I have a task to prevent access to Access manager from some blocked users (users are blocked dynamically by using portal), so that they could not ...
0
votes
1answer
107 views

Get Action Name from Servlet Request

I have ABC.action which invokes the doFilter method of Filter Class which is configured properly in web.xml I need to find action name from request object. How can i achieve this? public void ...
2
votes
0answers
192 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 ...
3
votes
2answers
377 views

How to apply filter for one particular servlet?

In chat my applications I am having five servlets.I need to apply filter for a single servlet. My filter is, package com.tps.flexchat.action; import java.io.IOException; import ...
0
votes
1answer
486 views

Tomcat application Web.xml custom filter giving error of resource has moved; filter redirects https to http

FYI: I'm running Windows Server 2008 R2, with IIS 7.5 and Apache Tomcat 5.5. IIS talks to Tomcat, via the AJP Connector, version 1.3. Tomcat is SSL enabled; so, the web site is enabled for both HTTP ...
0
votes
1answer
217 views

How to NOT run servlet filters for specific url-patterns?

I'd like to create a servlet filter that applies to all my URL paths except for a few a specify (or ideally specified by a regex). Is that possible? Unfortunately I can't change the paths such that ...
0
votes
1answer
2k views

<servlet-name> inside <filter-mapping> of web.xml, what does this mean?

I am starting to learn struts 2. I stumbled upon this code: web.xml ...some other codes... <filter> <filter-name>MyFilter</filter-name> ...
0
votes
1answer
324 views

java Filter class doFilter() is not being invoked

Hi there, I have created a Filter class and configure the web.xml as below: <filter> <filter-name>LoginFilter</filter-name> ...
0
votes
0answers
314 views

Something somewhere is encoding the URL with doFilter, but RequestDispatcher.forward does not do the same encoding

I added a LocaleUrlFilter to a Spring MVC project wanting to capture locale in the URL. The filter is working, but there are something encoding the url before it gets passed to the controllers. In ...
2
votes
3answers
4k views

Session timeout upon refresh at login page

I made a really simple login and session structure for reuse in my future JSP based applications. It's like this: web.xml (the 1 minute timeout is to test my problem): ...
2
votes
2answers
377 views

How can I filter all except requests app engine dev console in web.xml

I want to filter all requests to my jersey servlet so I do this: <filter-mapping> <filter-name>jersey</filter-name> <url-pattern>*</url-pattern> ...
0
votes
2answers
133 views

Is there a way to run servlet Filter only once?

Is there a way to define in web.xml, that certain servlet Filter must be executed only once?
0
votes
2answers
318 views

How to create url mapping in web.xml

i want to create url pattern that lead to filter in jsf2. I tried this code <filter-mapping> <filter-name>filter</filter-name> ...
2
votes
2answers
194 views

Strange Java Servlet Filter-Mapping Behaviour

I am using Eclipse IDE with Google App Engine plugin, and Guice. Running on the Dev Server, I've tried both of these in web.xml and the guice MyServletModule extends ServletModule: ...
2
votes
2answers
359 views

Can a Java EE6 filter be defined with an annotation but applied in the web.xml?

I have written a filter which i think would be generally useful in many web applications. I would like to put it in a library (packaged as a jar file), so that it can be distributed and used. However, ...
3
votes
5answers
4k views

can we user regular expression type patterns in web.xml?

I am writing a filter to do a specific task. but i unable to set a specific url pattern to my filter. my filter mapping as shown below. <web.xml> <filter> ...
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. ...
2
votes
1answer
849 views

Web Filter blocking RichFaces

I create a filter and it works fine but my richfaces doesn't work correctly anymore, here is my web.xml: <?xml version="1.0" encoding="UTF-8"?> <web-app ...
1
vote
1answer
88 views

Can we confgure filters only for a subset of servlets

I have various different categories of servlets. Can I configure the filters in my web.xml such that each filter only applies for one of the categories of servlet.
15
votes
3answers
4k views

How to add filters to servlet without modifying web.xml

I'd like the ability to modify/configure filters in a different way than web.xml. Here is a static configuration of 2 filters. I'd like the ability to have one filter statically configured and allow ...
1
vote
2answers
815 views

Servlet Filter - Dont apply filter to a specific one

I have a web-application with login screen backed up by an Authentication Filter. I have the following in my web.xml <filter> <filter-name>AuthenticationFilter</filter-name> ...
0
votes
1answer
2k views

Unchecked Exception not being caught by Web.xml error-page

I have an unchecked exception that is not being handled by the specified web.xml error page. My directory setup is as follows: /index.jsp /error.jsp /WEB-INF/web.xml /other pages & directories ...
1
vote
1answer
3k views

web.xml <filter-mapping> not working when using <servlet-name>

I have a web.xml that has this in it: <filter> <description>CASRebroadcastFilter</description> <filter-name>CASRebroadcastFilter</filter-name> ...
2
votes
2answers
722 views

How to pass parameters by URL in web.xml?

I need to have something like this: /{paramvalue}/url And get the value of param value, and point the url to the servlet. For example: /josua/profile /mary/messages "/josua/" and "/mary/" is the ...
2
votes
1answer
2k views

Adjusting web.xml listeners, filters and servlets

Following is outline of what I have in my web.xml config file. I need help putting this into the correct order. web.xml web-app 1. contextConfigLocation applicationContext.xml 2. ...
5
votes
2answers
542 views

How to specify order of filter mappings on GlassFish?

I read that the order in which filters are processed can be determined by the order in which they are declared in web.xml But how to do this without web.xml, using for example the @WebServlet ...
0
votes
1answer
67 views

making files under folder accessable by their url

I have a webproject in J2ee , now there are some files which can be access directly by typing thier URL and some files which cannot be accessed EG files under folder admin/xyz.js are Not accesble ...
0
votes
1answer
475 views

How to specify filter priorities in java web apps?

Hello I wish I could define two filters like this <filter-mapping> <filter-name>SecurityFilter</filter-name> <url-pattern>/*</url-pattern> ...
3
votes
3answers
12k views

Filter mapping url-pattern that excludes subdirectories

Is there any way to make a filtermapping not include subdirectories? For example. I have .xhtml files in my context root, and I also have a subfolder named "test" with files with the same extension. ...
1
vote
2answers
134 views

j2ee webapp A using authentication facility of web app B

Any user that tries to access some secure resources on my webapp A needs to be authenticated with a webapp B. B has access to the user credentials password etc., I am wondering about the right way to ...
0
votes
1answer
2k views

Web.xml - url pattern mapped twice

A web.xml of ours contains following excerpt.. <servlet> <servlet-name>testServlet</servlet-name> <servlet-class> ...
2
votes
1answer
451 views

Web Form based login in Java

How can I block access to the site if a user is not logged in? Under web.xml > Security I checked Form authentication then I selected Login and Error page, but I don't know how to block the access ...
3
votes
4answers
4k views

How to block a IP address using web.xml?

How can I block a ip address with some configuration on web.xml? Do I need a filter? How can I implement one?
0
votes
2answers
4k views

web.xml - Java Servlet Filters and WebSphere - URL Pattern issues

So we are running a web application that has been tested on Tomcat, Glassfish, WebLogic and WebSphere. All run correctly except WebSphere. The issue is that filters are not processed for files under a ...
0
votes
3answers
5k views

web.xml - Java Servlet Filters - Not being run before processing the JSP page (on Tomcat)

I am fairly new to Servlet Filters and have basically joined a project using them and added an additional filter to the web.xml file (deployed on Tomcat 5.5). I am 95% sure that at some point it was ...
4
votes
1answer
326 views

How do you introspect web.xml from a servlet?

Is there a way for a servlet filter to get a list of all servlets and their mappings?