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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T20:20:57+00:00 2026-05-22T20:20:57+00:00

The problem is that this is a JAAS login application. The below method uses

  • 0

The problem is that this is a JAAS login application. The below method uses Java’s Callback class and it’s kinda bugging me out. Because it is wired in with the Callback class (among other things) the standard

       JTextfield username = Class.getText(); 

isn’t working. Your thoughts are welcome:

     public boolean login() throws LoginException {

   // prompt for a user name and password
   if (callbackHandler == null)
       throw new LoginException("Error: no CallbackHandler available " +
        "to garner authentication information from the user");

   Callback[] callbacks = new Callback[2];
   callbacks[0] = new NameCallback("user name: ");
   callbacks[1] = new PasswordCallback("password: ", false);

   try {
       callbackHandler.handle(callbacks);
       username = ((NameCallback)callbacks[0]).getName();            


       char[] tmpPassword = ((PasswordCallback)callbacks[1]).getPassword();            


       if (tmpPassword == null) {
       // treat a NULL password as an empty password
       tmpPassword = new char[0];
       }
       password = new char[tmpPassword.length];
       System.arraycopy(tmpPassword, 0,
        password, 0, tmpPassword.length);
       ((PasswordCallback)callbacks[1]).clearPassword();

   } catch (java.io.IOException ioe) {
    throw new LoginException(ioe.toString());
   } catch (UnsupportedCallbackException uce) {
    throw new LoginException("Error: " + uce.getCallback().toString() +
    " not available to garner authentication information " +
    "from the user");
   }

       . . . 
  • 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-22T20:20:58+00:00Added an answer on May 22, 2026 at 8:20 pm

    Thanks to Hovercraft Full Of Eels pointing me in the right direction, I was able to figure it out. Below is the correct code in the my Callback handler (not my Login Module as I originally though above):

     public void handle(Callback[] callbacks)throws IOException, UnsupportedCallbackException 
     {
         for (int i = 0; i < callbacks.length; i++) 
         {
             if 
             {
                 . . . .
             }
             else if (callbacks[i] instanceof NameCallback) 
             {
    
        // prompt the user for a username
        NameCallback nc = (NameCallback)callbacks[i];  
        System.err.print(nc.getPrompt());
        System.err.flush();
        nc.setName(Video_Game_Store.usrName.getText());
    
         } 
             else if (callbacks[i] instanceof PasswordCallback) 
             {
    
        // prompt the user for sensitive information
        PasswordCallback pc = (PasswordCallback)callbacks[i];
        System.err.print(pc.getPrompt());
        System.err.flush();         
                pc.setPassword(Video_Game_Store.psWord.getText().toCharArray());
    
         } 
             else 
             {
        throw new UnsupportedCallbackException
            (callbacks[i], "Unrecognized Callback");
         }
     }
     }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this problem that my sites uses alot of ajax and when a
Ok I have this problem that I've never had before, it's really bugging me.
This has been a problem that I haven't been able to figure out for
In the end, I have decided that this isn't a problem that I particularly
I think that this problem can be sorted using reflection (a technology which I'm
There was this problem that has been asked about implementing a load byte into
THIRD EDIT: I now believe that this problem is due to a SOAP version
Update: After some more reading I see that this problem is totally general, you
(I have a problem that I illustrated in this question but had no correct
I understand the problem that OSGI solved thanks to this question.... What does OSGi

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.