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 6043219
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T06:52:32+00:00 2026-05-23T06:52:32+00:00

I am attempting to add BASIC authentication to my RESTful web-service. Currently I have

  • 0

I am attempting to add BASIC authentication to my RESTful web-service. Currently I have BASIC authentication for an Apache Tomcat 6.0 server, but I need to deploy my web-service on a WebSphere application server ver. 6.1 as well and I am having problems getting BASIC authentication running on WebSphere.

Is there a way in Java to check the authentication headers of an HTTP request and if the username/password provided (in Base64 encoding) doesn’t match a known account force the user to enter in a new username/password?

I have tried implementing Spring Security, but since my project was made entirely without Spring it has been a huge pain trying to get it to work, and I am attempting to find a simple solution to my rather simple problem.

Technologies that I am currently using include: Java, Jersey/JAX-RS, Eclipse with Maven plugin.

  • 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-05-23T06:52:32+00:00Added an answer on May 23, 2026 at 6:52 am

    You should be able to setup a servlet filter which gets executed before your REST handlers, inspects the “Authorization” request header, base 64 decodes it, extracts the username and password, and verifies. Something like this:

    public void doFilter(ServletRequest req,
                         ServletResponse res,
                         FilterChain chain) {
      if (request instanceof HttpServletRequest) {
        HttpServletRequest request = (HttpServletRequest) req;
        String authHeader = Base64.decode(request.getHeader("Authorization"));
        String creds[] = authHeader.split(":");
        String username = creds[0], password = creds[1];
        // Verify the credentials here...
        if (authorized) {
          chain.doFilter(req, res, chain);
        } else {
          // Respond 401 Authorization Required.
        }
      }
      doFilter(req, res, chain);
    }
    

    All servlet containers have a standard way to configure filter chains.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am attempting to add BASIC authentication to a RESTful web service that I
Attempting to deploy a MOSS solution to a UAT server from dev server for
I am attempting to consume an intranet web service with WCF. I added reference
I am attempting to add validation to my application. I have some rules I
I am attempting to create a custom messaging app. Just something basic but I
I am attempting to consume a web service through its corresponding wsdl. This service
I am attempting to add a shape aesthetic mapping to an existing plot but
Am attempting to add push notifications to an application that I have created. I
I'm attempting to add some text to the directions results the Google Maps API
I'm attempting to use extension methods to add an operater overload to the C#

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.