User name password prompt is not working

Hi Experts,
I have a screen in a BSP application in which , I have two links.
These two links are the links to the screens of a different BSP application for which default username password is not set.
But when I clicked the first link its prompting for the user name and password but its not happening for the second link.
Its also vice versa.
I checked the below link which explains about the way password details are prompt but I am not sure of how to handle this and have the prompt for username and password for both the links.
http://help.sap.com/SAPHELP_470/Helpdata/EN/5a/f8b53a364e0e5fe10000000a11405a/frameset.htm
Your inputs will be helpful.
Regards,
Gopal

Hi,
this sounds a case for Single Sign On, especially if you´re calling your 3 applications from the Enterprise Portal. You have to talked to your administrators for EP and SAP, since it is a complicated task.
Try this link for more about the user and this link for SSO.
after entering username and password for the first time, somehow the information remains alive event when you close your BSP application and call another one. This is a very bad security case if you´re moving your applications into production.

Similar Messages

  • Windows Security user name/password prompt when trying to remote access personal cloud storage device

    I have 2TB WD Book Live drive setup at home and is working fine, including remote accessing by internet. However using a colleague's computer at the office recently, her computer would always prompt me for Windows Security username and password. I've tried
    keying her admin user name/password and well as the router's admin/admin combinations and still doesn't allow me to access the cloud drive properly. However I have had no problem accessing the same drive remotely using other colleagues computers.
    The exact message prompt as follows: Windows Security. The server 192.168.1.1 is asking for your user name and password. The server reports that it is from index.htm. WARNING: Your user name and password will be sent using basic authentication on
    a connection that isn't secure.
    Please help me understand the problem and its solution. Thank you.

    Hi,
    The IP address 192.168.1.1 is your Router server address, isn't it? I doubt there should some limition in your colleague's system. Please check it. Also you can try to disable security software for test to access your cloud.
    The problem isn't your cloud server Authorization.
    Roger Lu
    TechNet Community Support

  • Can't Connect ASDM and Console Forces User Name: & Password: Prompts

    After pulling a brand new ASA 5515 out of the box this morning, I spent countless hours scratching my head wondering why:
    1. I cannot establish an HTTPS connection to the Management port - https://192.168.1.1/admin
    2. When connecting via the console port I get prompted with a username and password sequence that I don't know
    I get an SSL Version Error message when I try to connect with any browser. although I did find a way to resolve it, it requires a console port connection which is not working either.
    This is not my typical experience with the console or ASDM port setup. What is going on? Any help from anyone would be so appreciated.
    Thank you,
    Richard

    Hmm,
    To my understanding Console connection on a fresh unit shouldnt ask for a username and it shouldnt even have an enable password (should be able to leave it blank and press enter). Or atleast that is how I remember it.
    I am not sure if the new ASA5500-X models are different.
    I think on when using ssh (or was it telnet) without username configured required you to use username pix and password cisco to log in.
    - Jouni

  • User name and pasword dos not work after I just registered

    I just registered a new account, and then verified it through my email. But when I go to sign in, it never takes the information

    Clear the cache and cookies only from websites that cause problems.
    "Clear the Cache":
    *Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox/Tools > Options > Privacy > Cookies: "Show Cookies"
    You can also check if it works in a Private Browsing mode window (tab).

  • Just today my iphone5 will not get email.  Error says user name/password is incorrect.  I have retyped info but it still doesn't work. Any suggestions?

    My iphone5 can't open email.  Says user name/password incorrect; however, my info has not changed.
    Any suggestions

    I agree. The iPhone is not saying that your email settings are wrong, it is your email. Please check that your email is working using a computer or something else. If it works then delete your account on your iPhone and set it up again.
    I hope that this helps and do please report back.

  • I cannot conect to APP Store. I upgraded to IOS 8.3 and APP Store has not worked since. I am being asked to tipe my user name /password and nothing happens afterwards. No error messages either.

    I cannot connect to APP Store. I upgraded to IOS 8.3 and APP Store has not worked since. I am being asked to type my user name /password and nothing happens afterwards. No error messages either.

    hey the sever is down for the moment try again latter tonight... we have been attepting and i eveen went to the apple store third Street Primonade and alejadnro could not help me he said to try soon
    John

  • Can not connect to MaxDB 'Unknown user name/password combination' returned

    Hi,
         I try to make a connection from NWDS 7.2 to MaxDB. So i use the url as 'jdbc:sapdb://127.0.0.1:7210/CE1' to make a connection (by wizard of data source explorer in NWDS).
    I try to entry username and password as below :
    User : 'Administrator' , Pass : 'admin123'
    User : 'SAPJ2EDB' , Pass : 'admin123'
    User : 'superdba' , Pass : 'admin123'
    User : 'control' , Pass : 'admin123'
    So i always got
    com.sap.dbtech.jdbc.exceptions.jdbc40.SQLInvalidAuthorizationSpecException: [-4008]: Unknown user name/password combination
    returned
       I quite sure that 'admin123' is the password for MaxDB because when i try to uninstall the MaxDB it ask me to input password for 'superdba' and 'control'
    How should i do? I remember that when i installed the SAP CE7.2 i had entered just only one password.
    How can i reset the username and password or use default password?
    P.S i try to enter user and pass from this post MAXDB Server,Database,Username and pasword , but it still not work .
    Edited by: Thongie on Jul 14, 2011 2:48 PM

    Hi every one,
        I can solve it. I just restart DB and try agian.

  • User Name/Password class for MySQL -- it almost works ... almost

    I'm working on creating a user name/password class called Login that will get the information that is required to log into a MySQL database (This program is not an applet, by the way).
    In brief this class does following:
    * It creates a JFrame with JTextFields and a JPasswordField and a login button. All compents have ActionListener.
    * I am able to read the info from the fields (I tested this using System.out.println)
    * Another program calls this Login class (see code at end of post)
    I want the program to close the frame (I figured that out) and return the values to the calling program. I can't figure out how to have it return a cat string ( of "host|port|username|password" ). If this was one large piece of java source code, it'd be a piece of cake, but the code is broken into several java source components and I'm trying to figure out how to get the ActionListener to return the string.
    One web page mentioned using an ejector but haven't been able to find any information about that. Another thought was maybe putting some kind of code in the windowClosing event for the Login class.
    Ex:
      public void windowClosing(WindowEvent e)
         setVisible(false);
         dispose();
         // return value to calling function somehow
      }Any help would be greatly appreciated. I'm teaching myself this so I'm sure there are better ways to do the JFrame formatting, but here's the code anyway. I'll post the additional changes (in context) when I get a working version of this.
    //Login.java
    import java.awt.*;
    import java.awt.event.*;
    import java.lang.Object;
    import java.sql.Connection;
    import java.sql.DriverManager;
    import javax.swing.*;
    import javax.swing.border.TitledBorder;
    public class Login extends JFrame implements ActionListener
       JTextField serverHost;
       IntTextField port;
       JTextField userName;
       JPasswordField password;
       JButton login;
       Canvas canvas;
       String ServerHost_String;
       String Port_String;
       String UserName_String;
       String Password_String;
       String Login_String;
       Font ssb10 = new Font("Sans Serif", Font.BOLD,10);
       Font hb30 = new Font("Helvetica", Font.BOLD,30);
       Integer rc;
       //public void init()
       public Login()
          // Set up buttons
          login = new JButton("Login");
          serverHost = new JTextField("localhost",10);
          port = new IntTextField(3306, 4);
          userName = new JTextField("root",10);
          password = new JPasswordField(10);
          // Draw Screen
          Canvas horizontal_spacer1 = new Horizontal_Spacer(420,15);
          Canvas horizontal_spacer2 = new Horizontal_Spacer(420,15);
          Canvas horizontal_spacer3 = new Horizontal_Spacer(420,15);
          Canvas horizontal_spacerA = new Horizontal_Spacer(100,45);
          Canvas horizontal_spacerB = new Horizontal_Spacer(100,45);
          Canvas vertical_spacer1 = new Vertical_Spacer();
          Canvas vertical_spacer2 = new Vertical_Spacer();
          Canvas vertical_spacerA = new Vertical_Spacer();
          Canvas vertical_spacerB = new Vertical_Spacer();
           * Top
          canvas = new Top_Logo();
          JPanel top = new JPanel();
          top.add(canvas);
          //top.add(horizontal_spacer1);
          add(BorderLayout.NORTH,top);
           * Middle
          Box p1 = Box.createHorizontalBox();
          Box p2 = Box.createHorizontalBox();
          Box p3 = Box.createHorizontalBox();
          JPanel bp = new JPanel();
          JLabel rbp = new JLabel();
          p1.setFont(ssb10);
          p2.setFont(ssb10);
          p3.setFont(ssb10);
          p1.setAlignmentX(Component.LEFT_ALIGNMENT);
          bp.setAlignmentX(Component.LEFT_ALIGNMENT);
          p3.setAlignmentX(Component.LEFT_ALIGNMENT);
          rbp.setLayout(new BoxLayout(rbp,BoxLayout.X_AXIS));
          rbp.setBorder(new TitledBorder("Connection to MySQL Server Instance"));
          JLabel lString = new JLabel("Server Host: ");
          lString.setFont(ssb10);
          // Setup server Host and Port JPanel
          p1.add(lString);
          p1.add(serverHost);
          lString = new JLabel("  Port: ");
          lString.setFont(ssb10);
          p1.add(lString);
          p1.add(port);
          // Setup username JPanel
          lString = new JLabel("Username:    ");
          lString.setFont(ssb10);
          p2.add(lString);
          p2.add(userName);
          // Setup password JPanel
          lString = new JLabel("Password:    ");
          lString.setFont(ssb10);
          p3.add(lString);
          p3.add(password);
          // Draw the big Jpanel
          //bp.add(horizontal_spacerA);
          bp.add(p1);
          bp.add(p2);
          bp.add(p3);
          //bp.add(horizontal_spacerB);
          rbp.add(vertical_spacerA);
          rbp.add(bp);
          rbp.add(vertical_spacerB);
          add(BorderLayout.WEST,vertical_spacer1);
          add(BorderLayout.CENTER,rbp);
          add(BorderLayout.EAST,vertical_spacer2);
          // Bottom
          JPanel bot = new JPanel();
          bot.setLayout(new BoxLayout(bot,BoxLayout.Y_AXIS));
          bot.add(horizontal_spacer2);
          bot.add(login);
          bot.add(horizontal_spacer3);
          add(BorderLayout.SOUTH,bot);
          // Draw JFrame
          setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
          setSize(420,280);
          setResizable(false);
          setVisible(true);
          // Listen for buttons being clicked
          login.addActionListener(this);
          serverHost.addActionListener(this);
          userName.addActionListener(this);
          port.addActionListener(this);
          password.addActionListener(this);
       class Horizontal_Spacer extends Canvas
          Horizontal_Spacer(int X, int Y)
             setSize(X,Y);
             setVisible(true);
       class Vertical_Spacer extends Canvas
          Vertical_Spacer()
             setSize(25,10);
             setVisible(true);
       class Top_Logo extends Canvas
          Top_Logo()
             setBackground(Color.white);
             setSize(420,65);
             setVisible(true);
          public void paint(Graphics g)
               g.setFont(hb30);
               g.drawString("MySQL Login",20,45);
       public void actionPerformed(ActionEvent event)
          Object source = event.getSource();
          ServerHost_String=serverHost.getText();
          Port_String=port.getText();
          UserName_String=userName.getText();
          Password_String=new String(password.getPassword());
          if ((ServerHost_String.compareTo("")!=0) &&
              (Port_String.compareTo("")!=0) &&
              (UserName_String.compareTo("")!=0) &&
              (Password_String.compareTo("")!=0))
               Login_String=ServerHost_String + "|" +
                            Port_String + "|" +
                            UserName_String + "|" +
                            Password_String;
               setVisible(false);
               dispose();
          public void windowClosing(WindowEvent e)
            setVisible(false);
            dispose();
    //Login_Test.java
    import javax.swing.*;
    public class Login_Test extends JFrame
       //public void run()
       public static void main(String [] args)
          Login f = new Login();
    }Doc

    Let me get this clear.
    You want a login dialog.
    Some program calls the dialog and waits untile user respond
    once the user press ok or cancel it reutrn the users input to the caller.
    You can do this directly using JFrame
    but you can do it wil JDialog if you use it as aModal dialog.
    it will look like this
    class LogInDialog  extends JDialog implements ActionListener{
       String value;
       public LogInDialog(){
          setModel(true);
        // This is what you invoke
        public String loadDialog(){
            setVisible(true);
            return value;
        public void actionListener(..... e){
            if (e.getSource() == bCancel)
               value = null;
            else if (e.getSource() == bOk)
               value = //generate the string
            dispose();
    }

  • When am trying to download acrobot standard its prompting with user login password and its not getting downloaded.

    Hi
    When am trying to download acrobot standard its prompting with user login password and its not getting downloaded.

    When you (or someone) first switched on your computer, you (or someone) had to choose a password. This protects your computer, and you need it to install most software or change the system. We can't help you if you forget it, sorry.

  • 2nd gen appletv says movies not authorised/ user name/password not accepted on appletv

    This is so weird.
    I have home-shared and can play all un-DRM stuff e.g. music and personal movies. However, TV shows and Movies downloaded from iTunes won't play. It keeps asking me to authorize my computer on iTunes. The computer is however authorised and just to be double sure I have authorised multiple times (and get the message "this computer is already authorised"). I also de-auth'd and re-auth'd. This is all after updating both the AppleTV and iTunes to the most up-to-date versions.
    This is all happening with a Win7 PC so I home-shared from my Mac as well and exactly same thing. One other strange thing: I tried to sign in to iTunes on the AppleTv, just in case thats what is needed to get these things to play. It tells me my user name/ password is incorrect. This is the weirdest because it is the exact user name password I used to home-share and even buy the last TV show. I have repeatedly entered it so I am dead sure I have not entered it wrongly.
    Has anyone encountered and fixed something like this? Cold rebooting also has no effect at resolving.
    Thanks

    My id/password combo is ok - 100% sure.
    Took the bold step of resetting to factory defaults. Now it doesn't even sign in to itunes sharing from the AppleTV anymore: says id/password wrong. It was only iTunes saying this before. So now I can't even access stuff on my PC anymore. Yet at this very moment I'm downloading a movie on iTunes on the computer meaning I will only be able to see it on the computer.
    Quite disappointed in Apple!

  • What do I do when IPhoto says "mail server does not recognize user name/password?

    What do I do when IPhoto says "mail server does not recognize user name/password?

    Fixed by resetting my password to Apple's new protocol!  In my case, I had to add a capitol letter.
    Reset here:
    https://iforgot.apple.com/cgi-bin/WebObjects/DSiForgot.woa/wa/iforgot

  • HT1515 Will Airport Express work in hotels in China? They require user name/password to connect. Has anyone used one there?

    I will be traveling in China with my iPad2 and want to use hotel wireless. It requires a sign-in with user name/password.  Can I use an Airport Express for this purpose? How do I set it up for that? I have an old Express (pre-2007); can I use it or do I need to upgrade to the new model?

    OK - I have never been to China but the posts here say that it can be done - the cable from the hotel should be connected to the WAN port of the Express - the Express should be in bridge mode and set to create a wireless network with a name and password of your choice - you can do this with a computer before you leave for China or with the iPad if you have previously downloaded the Airport Utility app - you would then connect to your network and attempt to bring up a web page such as Google - the hotel should then intervene and ask you for the login info that they have provided.
    Charlie

  • How do I open my contribute program when it tells me user name/password is incorrect when I have not changed it?

    How can I get into my contribute CS4 program when it says my user name/password is incorrect and I have never changed either of these?

    Yes.  FTP username and password.

  • POP3 -Keep asking for user name & Password

     
    Hi,
    We have exchange 2003 server with Service pack 2. We have user who check their mails through   Outlook 2003, Outlook web access & some users are using POP3 to download the messages.
    Since last few weeks, we are getting the complained that when engineers are trying to configured users account in Outlook with POP3 configuration, its keep asking for user name & password. But with same user name & passwords user is able to check their mail through Outlook web access.
    In some of our site, users are able to download messages through pop3 account but this account was configured long back.
    Kindly advise.

    HI,
    This is happening mainly when
    1. user changed his password through Outlook web access next time its keep poping up for password & it will not accept the new passord.
    2. if user is using  OWA & when we try to configured his mail in Outlool with POP3 .
    See if i remove exchange attributes from user's account & then delete the users from AD & Recreated with same  user name, Password & reconnected  to that user to his old mailbox, it;s work fine.
    Regards,
    Chetan
    POP3 is enabled by default for all the users.

  • Auto-update: invalid user name / password

    Hello,
    I have changed out the CCO username and password for an IPS configured for auto-update but cannot get the IPS to correctly update its signature any longer.  I have verified that the CCO login is correct and that it can download a signature file directly using a web browser interface. However, every attempt to get the IPS to update automatically results in the following error:
    Auto Update Statistics
       lastDirectoryReadAttempt = 15:05:29 UTC Mon Sep 29 2014
        =   Read directory: https://72.163.4.161//cgi-bin/front.x/ida/locator/locator.pl
        =   Error: invalid user name/password combination
    (Note: I have the URL set to 'www.cisco.com')
    Thanks,

    FYI - just to close my own issue.
    The issue was resolved by using the cli to set the values and perform a one-time update. Once that was successful, all future signature updates have worked fine through the gui.

Maybe you are looking for

  • HT1338 Invalid URL

    Can someone please help me!! Everytime i have tried to access Facebook since the end of May 2012 the below error occurs: Invalid URL The requested URL "/", is invalid. Reference #9.54e0fc7d.1344336752.2482a93 I have taken my macbook in to the apple s

  • Acrobat X Pro Install Fails OS 10.7.4

    Hello, On a new installation of CS6 D&W Premium, on Mac OSX (10.7.4) Everything seems to install except Acrobat, and I am left with the following after installation. Exit Code: 6 Please see specific errors and warnings below for troubleshooting. For

  • Rfc to file scenario error in sm58

    rfc to file scenario error in sm58 i get the error as com.sap.aii.afccommunication.RfcAfwException :look up of alternative

  • Adapter Engine Error Message on RWB

    Hello We are getting an Red color error message on Adapter engine on RWB monitoring ---> Component Monitoring. Here is the error message: SLD access SLD host:port = sap03:50000 Error getting JPR configuration from SLD. Exception: No entity of class S

  • IPad Air rear camera now working

    My iPad Air read camera is not working. The front one works fine but when I switch to the rear camera I don't get a view and most of the time the app hangs. Is this a hardware or software fault? iPad has never been dropped.