0
votes
0answers
130 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 ...
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 ...
0
votes
3answers
97 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 ...
0
votes
0answers
101 views

Filter Mapping On Jsp In WEB-INF

I have mapped a Jsp in this way: <servlet> <servlet-name>Msg</servlet-name> <jsp-file>/WEB-INF/Admin_Pages/Messaggi.jsp</jsp-file> ...
0
votes
0answers
51 views

Use Filter Init Method

I have a list of init-param: <filter> <filter-name>thisFilter</filter-name> <filter-class>Filter.thisFilter</filter-class> <init-param> ...
0
votes
0answers
152 views

Can filter chain be executed after UrlRewrite

I am using the Tuckey UrlRewrite Filter such that url http:\localhost:8080\gb\phones gets mapped to the servlet mapping which is http:\localhost:8080\gb\phones.do My filter configuration is ...
0
votes
2answers
189 views

Java webapp Filter causes failure to startup server on Tomcat

I have 3 applications up on my Tomcat and everything worked fine leading up to this mess. Before I begin, I am in need of reconfiguring my tomcat logging as this may not be working, but I feel that my ...
0
votes
2answers
438 views

How do I write to a file from a servlet-filter and read it in Eclipse?

I want to write to a file from my filter and then be able to read it in Eclipse to make sure I've written to it correctly. This code compiles and runs fine, but I don't know where I can go to read ...
0
votes
3answers
273 views

Do servlet filters have to be specified in the web.xml file?

My company has a servlet filter we would like to include in various 3rd party Java web applications. There is some hesitancy to edit the vendor's web.xml file. Is this hesitancy warranted? Is there ...
1
vote
2answers
332 views

java: question on filter and servlet mapping

I have a web application with the following structure: TOMCAT_HOME | webapps |_myapp |-html/ |-various directories |-WEB-INF/ |-index.html The ...
2
votes
3answers
3k views

java- using a filter to check remote address

What would be the best approach to detect if a web application is accessed locally? I am interested in checking this in a filter (javax.servlet.Filter). I could check the ...
0
votes
2answers
94 views

Servlet Filter modify path to files

Could you help me with implementation Filter which will modify all request to files /DIR/* into /NEW_DOMAIN/NEW_CONTEXT_PATH/DIR/*
0
votes
1answer
123 views

configure the same servlet to different mappings and set for each a different security

I have a web application that is made of a servlet, let's call it myservlet. There are two different pattern matching the same servlet, let's call them /patterna/* and /patternb/* Assume I want to ...
1
vote
4answers
405 views

How to remove pre-defined characters from user input in a J2EE web application?

we have a J2EE web application usig Spring MVC. We have a new requirement for our web application where we have to remove certain pre-defined characters from the user input. For example, let's say ...