Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8989101
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T22:10:16+00:00 2026-06-15T22:10:16+00:00

I have created filter for all jsp page which allow to redirect page when

  • 0

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 ServletResponse response, final FilterChain chain)
            throws IOException, ServletException {

        String ssoUser = null;
        String fullURL = null;
        boolean isUserAuthorized = false;
        try {

            ssoUser = ((HttpServletRequest) request).getRemoteUser();

            String queryString =((HttpServletRequest)request).getQueryString();
            if(queryString!=null){
                fullURL = ((HttpServletRequest)request).getRequestURL().append("?").append( queryString).toString();    
            }
            else{
                fullURL = ((HttpServletRequest)request).getRequestURL().toString();
            }

            //want to forward if correct this condition
            if(ssoUser!=null){
                if(isUserAuthorized(ssoUser))
                request.getRequestDispatcher(fullURL).forward(request, response);
            }

            chain.doFilter(request, response);

        } catch (Exception e) {

        }

web.xml

<filter>
        <filter-name>UserFilter</filter-name>
        <filter-class>com.filter.UserFilter</filter-class>
    </filter>

    <filter-mapping>
        <filter-name>UserFilter</filter-name>
        <url-pattern>*.do</url-pattern>
    </filter-mapping>

it will check user and authenticate but can not forward page after successful authentication.

Please suggest.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T22:10:18+00:00Added an answer on June 15, 2026 at 10:10 pm

    Add return after dispatch

    if(ssoUser!=null){
                if(isUserAuthorized(ssoUser))
                request.getRequestDispatcher(fullURL).forward(request, response);
                return; // added a return
            }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have created a javascript filter that is working but not all the time.
I have created one filter which is working fine for all requests which my
I have a user in my system who has created an entity which I'd
Hi I have created a user message page with this plugin. The grid will
I have created a table which is filled in with remote data. I'm getting
In my django views i have the following def create(request): query=header.objects.filter(id=a)[0] a=query.criteria_set.all() logging.debug(a.details) I
I have created a spring security Filter as below. <!-- Enables Spring Security -->
I have a DirectShow filter created with Delphi Pro 6 and the DSPACK direct
I have created a JSP / servlets application running in Tomcat 7. It runs
Hello I have created a filter for my list. In a template named _search.gsp

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.