0
votes
1answer
87 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
1answer
69 views

Change request URL to point to different web server in servlet filter

Is there any way to change the request URL to point to another page hosted in different web server? Suppose I have a page hosted in Tomcat: <form action="http://localhost:8080/Test/dummy.jsp" ...
1
vote
1answer
100 views

How can I check for a presence of a logged in user in a session using JSTL?

I want to check if the user is logged in or not using JSTL. I tried the following code: <c:if test="${sessionScope.logged_in == null}"> <c:redirect ...
1
vote
1answer
76 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
0answers
108 views

Can I forward requests in a servlet filter, when changing the protocol from HTTP to HTTPS and vice-versa?

Session and GET/POST variables don't get passed on in redirect calls, when changing the protocol from HTTP to HTTPS and vice-versa. But the redirect, by itself, works: String redirectTarget = ...
-1
votes
1answer
956 views

“The response has already been committed” Error - chain.doFilter()

I want to authorize users with a login page. I have created one login page, login.jsp, and it has login form. When I submit the form its value is redirected to a check servlet, and the servlet sets ...
2
votes
2answers
389 views

Response is committing and doFilter chain is broken

In order this is what I need to happen: Request on blah.com/test ServletFilter A - creates profile, then calls chain.doFilter ServletFilter B (is skipped because url pattern doesn't match) Servlet ...
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 ...
0
votes
1answer
1k views

The JSF page ins't redirecting using by Filter interface

I am developing jsf login and logout smaller web app.I see some problems.My logout method don't removed session and not working redirecting to login page.I have asked from stackoverflow.com.The Matt ...
0
votes
3answers
2k views

javax.servlet.HttpServletResponse.sendRedirect not redirecting

I have a javax.servlet.Filter class that I would like to redirect urls. The problem is that when I call httpResponse.sendRedirect("http://myurl/login.jsp") return; it doesn't redirect to there. ...
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
1answer
232 views

Passing attribute when redirecting from a filter to a JSP: Session vs Request

Inside a filter I'm trying to send expired sessions back to a login page with a message that the user must login. I prefer to attach the message to the request object, rather than to the session ...
0
votes
2answers
1k views

Correct way to Redirect based on browser user-agent?

I am building a Spring MVC based application where I want to redirect user's to specific portion of the site based on their browser. I am using a Filter applied to /site/home.jsp to read the ...
1
vote
3answers
99 views

Make all requests to mysite.com/user/specified/path run the same JSP

I want to allow users to create groups in my application and access them via URL. For example, if you made a group called "sweethatclub," you could access it at http://mysite.com/sweethatclub. Of ...
2
votes
4answers
5k views

How to redirect in filter?

I'm trying to find a method to redirect my request from filter to login page but I don't know how to redirect from servlet. I searched but what I find is sendRedirect() method. I can't find this ...
1
vote
1answer
2k views

How do I redirect to the current page in Servlet Filter?

I have a page say: /myapp/test.jsp?queryString=Y. The filter needs to redirect to current page. It should go to /myapp/test.jsp (without the query string). The below seems to bring it to to the ...