Stuck in login page

stuck in login page while i entered the correct or incorrect password or username. how can i leave this page? tried reset it but login again, same problem occurs. stuck on the login page. please help. thanks.

Close the Internet browser and reopen it to access the Internet.
Clear browsing history, cookies and temporary Internet files. Or simply restart the computer.

Similar Messages

  • MacBook Pro Stuck At Login Page

    My MacBook Pro (Mid 2012, 13 Inch Model) is running Windows via Boot Camp. As I power on my computer, I hold down 'Option' key while pressing the power button. It brings up the 'Macintosh HD' and 'Windows' disk. After trying to launch Mac operating system, it shows up the Apple logo and a gear below it. The gear keeps spinning (loading) and the Mac operating system never shows up. I've been stuck with this page for almost 1 hour and the OS didn't launched. Please help!
    PS : Windows can run successfully

    The  only way to use Lion Recovery is with an internet connection.

  • Freezing at login pag

    So my macbook pro retainer 2013 I've had for 3 days has got itself stuck at login page I turn it off n on and gave same problem help 

    Please make a Genius Appointment and take it in for service. You have 14 days from date of purchase to return it for a replacement or your money back. Since it's in warranty you should let Apple resolve this for you in the event there may be a more serious problem than appears.

  • I m using ms access as database and i want to create a login page in java

    hye frnz... plz help me m new to java
    m using ms access as database and try to create a login page where user type username and pw
    i had enter valid user entries in database i checked connectivity is working i want as user login the main window must open after checking username and pw field to database but
    now there is an error class not found exception sun:jdbc...... error
    plz help me i had stuck frm 4 days */
    import java.sql.DriverManager;
    import java.sql.Connection;
    import java.sql.Statement;
    import java.sql.ResultSet;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    class Login extends JFrame
    //Component Declarations
    JLabel jlb1,jlb2;
         JTextField jtf1;
         JPasswordField jpf1;
         JButton jb1,jb2;
         //Constructor
         Login()
         //frame settings
              setTitle("Login Dialog");
              setLayout(new GridBagLayout());
              GridBagConstraints gbc = new GridBagConstraints();
              setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
              Dimension d= Toolkit.getDefaultToolkit().getScreenSize();
              setBounds(d.width/2-175,d.height/2-100,350,200);
              gbc.insets=new Insets(7,7,7,7);
         //adding components
              jlb1=new JLabel("User ID");
              gbc.gridx=0;
              gbc.gridy=0;
              add(jlb1,gbc);
              jlb2=new JLabel("Password");
              gbc.gridx=0;
              gbc.gridy=1;
              add(jlb2,gbc);
              jtf1=new JTextField(10);
              gbc.gridx=1;
              gbc.gridy=0;
              add(jtf1,gbc);
              jpf1=new JPasswordField(10);
              gbc.gridx=1;
              gbc.gridy=1;
              add(jpf1,gbc);
              jb1=new JButton("Login");
              gbc.gridx=0;
              gbc.gridy=2;
              add(jb1,gbc);
              jb1.addActionListener(new ActionListener()
                   public void actionPerformed(ActionEvent ae)
                   Connection conn=null;
                        Statement stmt=null;
                        boolean found=false;
                   try
                             Class.forName("sun.jdbc.driver.JdbcOdbcDriver");
                             String dataSourceName = "Inventory";
                             String dbURL = "jdbc:odbc:" + dataSourceName;
                             conn=DriverManager.getConnection(dbURL, "","");
                             stmt=conn.createStatement();
                             ResultSet rst=stmt.executeQuery("Select * from User");
                             System.out.println(jtf1.getText()+"/t"+jpf1.getPassword());
                             while(rst.next())
                                  System.out.println( rst.getString(1) +"/t"+ rst.getString(2));
              if(jtf1.getText().equals(rst.getString(1).trim()) && new String(jpf1.getPassword()).equals(rst.getString(2).trim()))
                                       found=true;
                                       rst.close();
                                       dispose();
                                       MainWindow mw= new MainWindow();     /*created min window object created to be opend after login but not working*/     
                                       break;
                             rst.close();
                             stmt.close();
                             conn.close();                    
                        catch(ClassNotFoundException e){System.out.print(e);}
                        catch(Exception e){System.out.print(e);}
                        if(found==false) /*this portion is executing and dialog box appears invalid name and pw with class not found exception sun:jdbc.......on console */
                             JOptionPane.showMessageDialog(null,"Invalid username or password",
                                  "Error Message",JOptionPane.ERROR_MESSAGE);
              jb2=new JButton("Clear");
              gbc.gridx=1;
              gbc.gridy=2;
              add(jb2,gbc);
              jb2.addActionListener(new ActionListener()
                   public void actionPerformed(ActionEvent ae)
                        jtf1.setText("");
                        jpf1.setText("");
                        jtf1.requestFocus();
              setSize(350,200);
              setVisible(true);
              jtf1.requestFocus();
         public static void main(String args[])
    Login l=new Login();
    }

    http://forums.oracle.com/forums/ann.jspa?annID=599
    Oh, and by the way, your keyboard seems to be broken as your words are not getting spelled correctly.

  • Plz help using ms access as database,i want to create a login page in java

    hye frnz... plz help me m new to java
    m using ms access as database and try to create a login page where user type username and pw
    i had enter valid user entries in database i checked connectivity is working i want as user login the main window must open after checking username and pw field to database but
    now there is an error class not found exception sun:jdbc...... error
    plz help me i had stuck frm 4 days */
    import java.sql.DriverManager;
    import java.sql.Connection;
    import java.sql.Statement;
    import java.sql.ResultSet;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    class Login extends JFrame
    //Component Declarations
    JLabel jlb1,jlb2;
         JTextField jtf1;
         JPasswordField jpf1;
         JButton jb1,jb2;
         //Constructor
         Login()
         //frame settings
              setTitle("Login Dialog");
              setLayout(new GridBagLayout());
              GridBagConstraints gbc = new GridBagConstraints();
              setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
              Dimension d= Toolkit.getDefaultToolkit().getScreenSize();
              setBounds(d.width/2-175,d.height/2-100,350,200);
              gbc.insets=new Insets(7,7,7,7);
         //adding components
              jlb1=new JLabel("User ID");
              gbc.gridx=0;
              gbc.gridy=0;
              add(jlb1,gbc);
              jlb2=new JLabel("Password");
              gbc.gridx=0;
              gbc.gridy=1;
              add(jlb2,gbc);
              jtf1=new JTextField(10);
              gbc.gridx=1;
              gbc.gridy=0;
              add(jtf1,gbc);
              jpf1=new JPasswordField(10);
              gbc.gridx=1;
              gbc.gridy=1;
              add(jpf1,gbc);
              jb1=new JButton("Login");
              gbc.gridx=0;
              gbc.gridy=2;
              add(jb1,gbc);
              jb1.addActionListener(new ActionListener()
                   public void actionPerformed(ActionEvent ae)
                   Connection conn=null;
                        Statement stmt=null;
                        boolean found=false;
                   try
                             Class.forName("sun.jdbc.driver.JdbcOdbcDriver");
                             String dataSourceName = "Inventory";
                             String dbURL = "jdbc:odbc:" + dataSourceName;
                             conn=DriverManager.getConnection(dbURL, "","");
                             stmt=conn.createStatement();
                             ResultSet rst=stmt.executeQuery("Select * from User");
                             System.out.println(jtf1.getText()+"/t"+jpf1.getPassword());
                             while(rst.next())
                                  System.out.println( rst.getString(1) +"/t"+ rst.getString(2));
              if(jtf1.getText().equals(rst.getString(1).trim()) && new String(jpf1.getPassword()).equals(rst.getString(2).trim()))
                                       found=true;
                                       rst.close();
                                       dispose();
                                       MainWindow mw= new MainWindow();     /*created min window object created to be opend after login but not working*/     
                                       break;
                             rst.close();
                             stmt.close();
                             conn.close();                    
                        catch(ClassNotFoundException e){System.out.print(e);}
                        catch(Exception e){System.out.print(e);}
                        if(found==false) /*this portion is executing and dialog box appears invalid name and pw with class not found exception sun:jdbc.......on console */
                             JOptionPane.showMessageDialog(null,"Invalid username or password",
                                  "Error Message",JOptionPane.ERROR_MESSAGE);
              jb2=new JButton("Clear");
              gbc.gridx=1;
              gbc.gridy=2;
              add(jb2,gbc);
              jb2.addActionListener(new ActionListener()
                   public void actionPerformed(ActionEvent ae)
                        jtf1.setText("");
                        jpf1.setText("");
                        jtf1.requestFocus();
              setSize(350,200);
              setVisible(true);
              jtf1.requestFocus();
         public static void main(String args[])
    Login l=new Login();
    Edited by: 795772 on Sep 19, 2010 4:44 AM

    795772 wrote:
    hye frnz... plz help me m new to java
    m using ms access as database and try to create a login page where user type username and pw
    i had enter valid user entries in database i checked connectivity is working i want as user login the main window must open after checking username and pw field to database but
    now there is an error class not found exception sun:jdbc...... error
    plz help me i had stuck frm 4 days */
    <snip>The subject of this forum is Oracle databases. How does your problem relate to that subject?
    Two bits of advice:
    1) Make sure you ask questions in a forum related to your problem.
    2) If you want to be taken seriously as a professional, drop the MS IM Speak and use the language of the forum. In this forum it is English, which is successfully used by many people for whom English is far from their native language.

  • Windows 8 on Macbook Air went blank screen at login page

    Installed Windows 8 on my MBA. It was working perfectly fine until today, whereby the login page went blank/blank screen on me and it seems as though it went to sleeping mode. Mac OS working fine and managed to get into safe mode on windows. Any help on this? friend suggested that my bootcamp crashed, thus the blank/empty screen but i have no idea what to do as of now as  I'm not good with IT.

    It is not your BC Windows, but your screen brightness that may be causing problems. Please plug in your Power Adapter, and press the Shift key when Windows is up an running. You can start Windows from OS X System Preferences -> Startup Disk -> Bootcamp -> Restart.
    Please also see Re: Windows 8 display is turned off at startup - cannot login - Stuck pls help.

  • Cannot display R12 login page

    Hi All,
    I have read several threads pertaining to the problem that i am facing and tried all the solutions but no luck in Displaying Login page.
    I have upgraded Oracle EBS from 11.5.9 to 12.1.1 but i am stuck at this problem.
    I did following steps:
    1. EXEC FND_CONC_CLONE.SETUP_CLEAN
    2. Run the Autoconfig on DB Tier and Apps Tier
    3. Cleared the cache and compiled all the JSPs
    4. Also generated the JAR files
    5. started the MiddleTier Applications.
    I constantly see following error under application.log of oracore
    html: LeakSetting:
    global:true,session:false,aggressive:false,stderr:false,appslog:false,co
    relog:false
    ignoring:null
    Apache logs show following error (*access.log*)
    [18/Mar/2010:10:08:28 -0700] "GET /OA_HTML/AppsLogin HTTP/1.1"
    302 255 12 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.
    4322; InfoPath.2; MS-RTC LM 8; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET
    CLR 3.5.30729)"
    172.16.7.000 - - [18/Mar/2010:10:08:29 -0700] "GET /OA_HTML/AppsLocalLogin.jsp H
    TTP/1.1" 302 636 1 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET
    CLR 1.1.4322; InfoPath.2; MS-RTC LM 8; .NET CLR 2.0.50727; .NET CLR 3.0.4506.215
    2; .NET CLR 3.5.30729)"
    172.16.7.000 - - [18/Mar/2010:10:08:30 -0700] "GET /OA_HTML/RF.jsp?function_id=1
    022220&resp_id=-1&resp_appl_id=-1&security_group_id=0&lang_code=US&params=vgKXg2
    heqNf8JF2nT3inFw&oas=BKdqgYoO4L8Ss-JMOEOfdA.. HTTP/1.1" 302 1167 1 "-" "Mozilla/
    4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.2; MS-RTC
    LM 8; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)"
    172.16.7.000 - - [18/Mar/2010:10:08:30 -0700] "GET /OA_HTML/AppsLogin?requestUrl
    =http%3A%2F%2F<hostname>%3A8060%2FOA_HTML%2FRF.jsp%3Ffunction_id%3D1022220%
    26resp_id%3D-1%26resp_appl_id%3D-1%26security_group_id%3D0%26lang_code%3DUS%26pa
    rams%3DvgKXg2heqNf8JF2nT3inFw%26oas%3DBKdqgYoO4L8Ss-JMOEOfdA..&cancelUrl=http%3A
    %2F%2F<hostname>%3A8060%2FOA_HTML%2FAppsLogin&langCode=US HTTP/1.1" 302 119
    4 0 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; I
    nfoPath.2; MS-RTC LM 8; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5
    .30729)"
    172.16.7.000 - - [18/Mar/2010:10:08:30 -0700] "GET /OA_HTML/RF.jsp?function_id=1
    022220&resp_id=-1&resp_appl_id=-1&security_group_id=0&lang_code=US&params=vgKXg2
    heqNf8JF2nT3inFw&oas=BKdqgYoO4L8Ss-JMOEOfdA.. HTTP/1.1" 302 1167 1 "-" "Mozilla/
    4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.2; MS-RTC
    LM 8; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)"
    172.16.7.000 - - [18/Mar/2010:10:08:30 -0700] "GET /OA_HTML/AppsLogin?requestUrl
    =http%3A%2F%2F<hostname>%3A8060%2FOA_HTML%2FRF.jsp%3Ffunction_id%3D1022220%
    26resp_id%3D-1%26resp_appl_id%3D-1%26security_group_id%3D0%26lang_code%3DUS%26pa
    rams%3DvgKXg2heqNf8JF2nT3inFw%26oas%3DBKdqgYoO4L8Ss-JMOEOfdA..&cancelUrl=http%3A
    %2F%2F<hostname>%3A8060%2FOA_HTML%2FAppsLogin&langCode=US HTTP/1.1" 302 119
    4 0 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; I
    nfoPath.2; MS-RTC LM 8; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5
    .30729)"
    172.16.7.000 - - [18/Mar/2010:10:08:31 -0700] "GET /OA_HTML/AppsLogin?requestUrl
    =http%3A%2F%2F<hostname>%3A8060%2FOA_HTML%2FRF.jsp%3Ffunction_id%3D1022220%
    26resp_id%3D-1%26resp_appl_id%3D-1%26security_group_id%3D0%26lang_code%3DUS%26pa
    rams%3DjhrRwMslHTnWURqwrLrjIddWDK1nVN5HguEvwBa7elqwM2TwnGcuXPo-sFvsEb3pGep8jWq8P
    V4phTYDyU0op5tCBtuqL19T.6LjVXG3aGH6Vb7cQ.Y.89BEs.5Km7ROYtFKSId6p6mDDQELpgoYI5Yca
    nmI9MbDBtHUZhBnfLaprf-KM.eZsXcqV7rPEnB4teKqO5ybgETVLRCyDHn-NbAEOwsap.uxhgZGafXKZ
    iQrJ4qsEjjsj7NZigRL0Ah0EFlpHLv6SqBMgX.3pOD-2gy6S1z-9p-cp8Us.8WxdeBlB9hTIqGZYGk0K
    tM-xifcWKTo14hLMKBWQ2mB97U7XVxpiXXUZ.RdwSB7.uNnLebAQ9TJVJfaktuayKCzpa-4BFRFASUYM
    bOy3SW3vko0jszaQ3kb8k-nSr9JF7hTzIywE4wlXI4SJK4mTf-kJdCALI-skzTE7p4GIvVLdG2Mrg2xf
    vHH2pHNlm1dIqsliF3rDuWAwzHFRt6OznTVE7fgL0Ha0UcinjKPjGoWwgESF6NPrpBRgSjWfCHazUxZT
    svzBKDCPAn3cnC.4URcNVcoC908xIL-h113ejgw.5RokOeA48BWFJrzYrgyj-gQJCinDHratvCBTqwzR
    jM9nX0bHR8Cc0kLcX-q.arAffPKQpX-BFFDaYoxRSddODbpNWutpreWCymqd87hP-OoiCJLLcaO8HxeU
    eHaW8aQQmVyWOy-diSCk3BtDNfJOUxhdhbUKUrx6osQAUc86k4DTp3GXmPKlTsp5-VD8Ir4HTL2jN26A
    tADivPbxMGRTicuS8CdNYSfznFfSQM51tRc1-439qMJwV8cWvbD9QTWn8fIfL-HhWtca8AYZl7z98fbC
    vxh7hNVR7tjuiXcFa7WIxp7GP0bL7cn.y07AaICSCzCAwJ7.LJog9uN7lbg.n-ytEeMaC0GnvAC47x6f
    uW4WVu0f7e2l7p6hoX76z4FPrt.Cw%26oas%3DhtB4ZVHRR_mk1RWyQ6rTeA..&cancelUrl=http%3A
    %2F%2F<hostname>%3A8060%2FOA_HTML%2FAppsLogin&langCode=US HTTP/1.1" 302 407
    4 0 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; I
    nfoPath.2; MS-RTC LM 8; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5
    .30729)"
    172.16.7.000 - - [18/Mar/2010:10:08:31 -0700] "GET /OA_HTML/AppsLocalLogin.jsp?r
    equestUrl=http%3A%2F%2F<hostname>%3A8060%2FOA_HTML%2FRF.jsp%3Ffunction_id%3
    D1022220%26resp_id%3D-1%26resp_appl_id%3D-1%26security_group_id%3D0%26lang_code%
    3DUS%26params%3DjhrRwMslHTnWURqwrLrjIddWDK1nVN5HguEvwBa7elqwM2TwnGcuXPo-sFvsEb3p
    Gep8jWq8PV4phTYDyU0op5tCBtuqL19T.6LjVXG3aGH6Vb7cQ.Y.89BEs.5Km7ROYtFKSId6p6mDDQEL
    pgoYI5YcanmI9MbDBtHUZhBnfLaprf-KM.eZsXcqV7rPEnB4teKqO5ybgETVLRCyDHn-NbAEOwsap.ux
    hgZGafXKZiQrJ4qsEjjsj7NZigRL0Ah0EFlpHLv6SqBMgX.3pOD-2gy6S1z-9p-cp8Us.8WxdeBlB9hT
    IqGZYGk0KtM-xifcWKTo14hLMKBWQ2mB97U7XVxpiXXUZ.RdwSB7.uNnLebAQ9TJVJfaktuayKCzpa-4
    BFRFASUYMbOy3SW3vko0jszaQ3kb8k-nSr9JF7hTzIywE4wlXI4SJK4mTf-kJdCALI-skzTE7p4GIvVL
    dG2Mrg2xfvHH2pHNlm1dIqsliF3rDuWAwzHFRt6OznTVE7fgL0Ha0UcinjKPjGoWwgESF6NPrpBRgSjW
    fCHazUxZTsvzBKDCPAn3cnC.4URcNVcoC908xIL-h113ejgw.5RokOeA48BWFJrzYrgyj-gQJCinDHra
    tvCBTqwzRjM9nX0bHR8Cc0kLcX-q.arAffPKQpX-BFFDaYoxRSddODbpNWutpreWCymqd87hP-OoiCJL
    LcaO8HxeUeHaW8aQQmVyWOy-diSCk3BtDNfJOUxhdhbUKUrx6osQAUc86k4DTp3GXmPKlTsp5-VD8Ir4
    HTL2jN26AtADivPbxMGRTicuS8CdNYSfznFfSQM51tRc1-439qMJwV8cWvbD9QTWn8fIfL-HhWtca8AY
    Zl7z98fbCvxh7hNVR7tjuiXcFa7WIxp7GP0bL7cn.y07AaICSCzCAwJ7.LJog9uN7lbg.n-ytEeMaC0G
    nvAC47x6fuW4WVu0f7e2l7p6hoX76z4FPrt.Cw%26oas%3DhtB4ZVHRR_mk1RWyQ6rTeA..&cancelUr
    l=http%3A%2F%2F<hostname>%3A8060%2FOA_HTML%2FAppsLogin&langCode=US HTTP/1.1
    " 302 5692 0 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.
    1.4322; InfoPath.2; MS-RTC LM 8; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NE
    T CLR 3.5.30729)"
    127.0.0.1 - - [18/Mar/2010:10:08:38 -0700] "HEAD /index.html HTTP/1.1" 200 0 0
    ERROR LOG:
    [Thu Mar 18 10:07:24 2010] [info] got an event: IAS/PM/PROC_ALIVE
    [Thu Mar 18 10:07:25 2010] [info] got an event: IAS/PM/PROC_START
    [Thu Mar 18 10:07:34 2010] [info] got an event: IAS/PM/PROC_READY
    [Thu Mar 18 10:07:49 2010] [info] got an event: IAS/PM/PROC_READY
    [Thu Mar 18 10:07:49 2010] [info] mod_oc4j: Inserting instance=<Instance name>
    <hostname>, opmnid=969549335 into proc table
    [Thu Mar 18 10:07:49 2010] [info] got an event: IAS/PM/PROC_ALIVE
    [Thu Mar 18 10:07:54 2010] [info] got an event: IAS/PM/PROC_READY
    [Thu Mar 18 10:08:04 2010] [info] got an event: IAS/PM/PROC_READY
    [Thu Mar 18 10:08:19 2010] [info] got an event: IAS/PM/PROC_READY
    Thanks for any help in advance

    Hi,
    I have upgraded Oracle EBS from 11.5.9 to 12.1.1 but i am stuck at this problemDid the upgrade complete successfully with no errors?
    Can you find any errors in the database log file?
    Please enable debug as per (Note: 422419.1 - R12, 12.1.1 - How To Enable and Collect Debug for HTTP, OC4J and OPMN) and see if more details are collected in the logs then.
    Regards,
    Hussein

  • Problem in getting the application login page

    Hi Firends,
    I am facing problem in getting the application login page.
    http://localhost:7777/pls/apex/f?p=102:1
    when i am clicking this link it is not directing me to the login page for this application.please let me know what could be the reason behind this.
    Thanks in advance

    Hi Martin, many thanks for replying. Let me know how this could effect in not getting the login page. I have checked in my application,it is by default "No application authorization required " and other option is " must not be a public user " . Should i change it to " must not be a public user from no application authorization required"
    please put more light on it. Y i am saying this because it was working fine day b4r yesterday but today i am getting problem in finding the login page of my application aftr providing the url. i am following the SSO authentication scheme and under Home>Application Builder>Application 102>Shared Components>Edit Security Attributes , i have given f?p=&APP_ID.:1:&SESSION. as home link and under Home>Application Builder>Application 100>Page 101>Edit Page Process, this code i have provided
    wwv_flow_custom_auth_std.login(
    P_UNAME => v('P101_USERNAME'),
    P_PASSWORD => :P101_PASSWORD,
    P_SESSION_ID => v('APP_SESSION'),
    P_FLOW_PAGE => :APP_ID||':1'
    as a source code.
    i am really stucked into it, and i need to finish is ASAP. Please provide all possible reasons for this problem.

  • Unexpected error forwarding or redirecting to login page

    Hello Everybody!!
    I am having problem with JEE 5 update 3.
    after starting the server http://localhost:4848/ fails to open the login page .
    The log in >domain>domain1>log>server shows the following error
    Unexpected error forwarding or redirecting to login page
    java.lang.NoSuchMethodError: javax.servlet.ServletContext.getContextPath()Ljava/lang/String;
    Please help me .I have installed JEE 5 from java_ee_sdk-5_03-windows-nojdk.
    I am working on win XP and have jdk1.6.0 installed.
    please help.I am really getting irritated as i am stuck at this place for very long.
    Thanks in advance.

    Is there any body who can figure it out what i should do.
    Common plz help.

  • E4200 Guest SSID Login page fails

    Config:
    Netgear ProSafe Gigabit Router is my DHCP Server -- The entire home net work is on the same subnet (192.168.15.xxx)
    Linksys E4200 configured as an access point ONLY -- wired connection -- static IP assigned -- DHCP server turned off
    Linksys WRT610N configured as an access point ONLY  -- wired connection -- static IP assigned -- DHCP server turned off
    3 -- 5 port gigabit switches
    1 -- 8 port gigabit switch
    No more than two switches between any two wired devices
    Both Linksys access points have the same SSID and WPA2 security phrase -- total of 4 radios
    Nonoverlapping channels are selected on both the 2.4Ghz and 5.0Ghz radio to minimize interference
    All computers are running Windows 7 Professional 64bit with all the latest updates
    Two iPhones and one iPad also access the network
    All LAN and WAN connectivity is working as designed
    Problem:
    guest SSID is turned on
    password is established
    All devices will connect to the guest SSID and the E4200 is assigning an ip address to the device in the 192.168.33.xxx range which is what it's supposed to do.
    When I open a web browser, I am not automatically redirected to the Cisco Login Page. If I enter 192.168.33.1 as the URL, the login screen is presented. I enter the password I have created in the guest admin page on the wireless guest tab.  I then see a blank page and a URL of 192.168.33.1/guestnetwork.asp. THIS IS WHERE I GET STUCK. THE ONLY WAY TO EVER SEE THE LOGIN PAGE AGAIN IS TO REBOOT THE E4200, otherwise you just get unable to connect messages when opening web browsers and the wireless status icon in the system tray shows a yellow exclamation mark.
    I successfully connect to the guest SSID but I do not get access to the internet. When I type ipconfig, I see that the DNS is set to 192.168.33.1 which does not exist on my network. I assume there's some internal NAT magic that is supposed to happen in the E4200 to bridge me over to my 192.168.15.xxx network but it doesn't seem to be happening.
    At the beginning of the call I specifically asked them if the E4200 must be the DHCP server in order for the guest SSID feature to work and they said no. 1.5 hours later they had no answers so they told me that it wasn't working because the E4200 was not the DHCP server. The documentation says nothing about a DHCP requirement for guest AP service. Linksys support further could not answer what you would do if you needed more than one AP with guest service enabled.
    It seems like this is a firmware issue but it may be the guest SSID service requires the E4200 to also act as the DHCP server. Can anyone shed any light on whether this is a bug or if the router/AP is working as designed?
    Thanks,
    (Mod note: Edited for guideline compliance.)

    Yes the E4200 must have DHCP turned on in order to pass out IP's to your Guest Network.  No DHCP, no Guest Network.

  • My itv is stuck on one page

    Why does my Apple TV get stuck on one page that says computer and apple itv

    You've posted in a PowerPC old vintage system discussion area.
    Do you have an Intel based Mac or a G4/G5 model prior to 2006?
    If the computer is running OS X 10.7.5 or later, you may try to Force Quit the computer
    by holding the power button down for about a minute. Then try to start the computer
    in Recovery mode and if that is present, you can use OS X Utilities, and choose Disk
    utility to see if repairing the hard disk drive helps.
    Or from the original OS X install DVD, if you have a PPC Mac w/ OS X 10.5.8;
    or if Intel Mac w/ optical drive & retail or original install-restore on DVD... Insert
    the DVD and hold the C key down on startup to use tools on the Install DVD.
    Or before going this far, on attempt to restart, try SafeBoot where you hold the Shift
    key down after the start tone, and keep holding it until you see the login screen,
    for your user password. Continue holding the Shift key down until you see Desktop
    or Finder, then let the key go. This does may allow you to run Disk Utility from
    the system in the computer, to see if repair disk permissions can help it.
    You may have to use Recovery to attempt a reinstall of the OS X, if you have a
    computer that is an Intel-based Mac. You posted in an older Mac area for items
    built before 2006, that is before Macs had intel processors: they ran PowerPC.
    Should the issue be the probability of whatever you were attempting to get, did not
    make it, due to failure of the internet, or other issue, that may have timed out.
    With poor or spotty internet, software or system updates or upgrade is problematic.
    And if you were also using Wi-Fi, not an Ethernet connection, that usually is worse.
    Since iOS is not a Mac OS X system, that is meaningless or not helpful in determining
    anything about a Mac, or troubleshooting one. So actual related information is missing.
    To supply info about your Computer, its OS X version, and other configuration specs
    would help anyone else seeing your vague question.
    Good luck

  • IMac purchased at garage sale help. Gets stuck at "Login Window Starting."

    Hi all,
    I recently purchased an iMac at a barn sale, and it turns on and everything, but then gets stuck at "Login Window starting" screen (http://i605.photobucket.com/albums/tt135/gpd2paul4/IMG_0251.jpg). When Goggling this problem, I see that I am not alone in thee problem, but I am alone in the fact that I don't even know what model it is (I think G3, but not sure), let alone have the original CDs or paperwork. I have tried holding 'shift' right after the startup chime to start up in safe mode, but it still gets stuck at "Login Window starting." I have attached a few pictures of the computer to help you veteran Mac users identify it, which might help you help me. Any help is appreciated. (Step-by-step instructions are best, I am good at using a Mac, but this is getting pretty technical.)
    Thanks!!!
    Photos:
    http://i605.photobucket.com/albums/tt135/gpd2paul4/IMG_0253.jpg
    http://i605.photobucket.com/albums/tt135/gpd2paul4/IMG_0254.jpg
    http://i605.photobucket.com/albums/tt135/gpd2paul4/IMG_0255.jpg

    Try holding down the shift key when powering on. This will skip a few programs from loading.
    Hold down the shift key when booting into Mac OS X. this will check your file structure and do a repair. This will also leave off some files from being used.
    http://support.apple.com/kb/HT1455
    "What is Safe Boot, Safe Mode? (Mac OS X) "
    http://support.apple.com/kb/HT1564?viewlocale=en_US
    Try holding down the option key when powering on. This will bring up the startup manager. Perhaps 9 is installed. Click on icon then click on right arrow.
    This is an iMac g3 slot loader.
    Your Mac won't start up in Mac OS X (Mac OS X 10.3.9 or earlier).
    http://support.apple.com/kb/TS1411?viewlocale=en_US
    Which iMac Is It? OK here are some more comparison charts:
    http://lowendmac.com/macdan/05/0202.html
    http://docs.info.apple.com/article.html?artnum=58669
    You need to figure out the level of your firmware before installing 10.2 or greater. ( The PC name for firmware is BIOS. ) Installing 10.2 with a down level firmware will most likely make your iMac unusable and difficult to fix.
    What is firmware?
    The firmware software receives control when you poweron your machine. It does some hardware testing and some hardware configuration then passes control to your version of Mac OS. It reside on a PROM ( program read only memory ) chip on the logic board.
    Open Firmware, boot into Open Firmware.
    Power on your iMac while holding down commandoption+of
    The first output line contains the firmware level. Mine reads:
    Apple PowerMac4,1 4.1.9f1 BootRom built on 09/14/01 at 13.18.04
    Copyright 1994-2001 Apple Computer Inc.
    On my machine, I have 4.1.9f1.
    What firmware do you need?
    http://docs.info.apple.com/article.html?artnum=86117
    For a slot loading iMac, this article indicates that you need to be running 9.1 or later version of Mac OS Classic.
    http://docs.info.apple.com/article.html?artnum=75130
    "The iMac Firmware Update 4.1.9 will only run on iMac computers with lot-loading CD or DVD drives running Mac OS 9.1 or later from a local drive. If you are using Mac OS X you must boot from a local Mac OS 9.1 or later writeable partition (not a CD, or network disk) prior to following the update instructions."
    You can download the Mac OS 9 updates from the Apple site.
    http://support.apple.com/kb/HT1387?viewlocale=en_US
    For tiger, you need 256meg of memory.
    Mac OS X 10.4: System requirements
    http://support.apple.com/kb/HT1514
    There is no need to partition. You can save hard drive space by doing a custom install. Leave out the print drivers you do not need and the languages you do not need. Doing so you will need about three gigabytes of space.
    You need to get into single use mode.
    This page will tell you how to get into single user mode.
    http://support.apple.com/kb/HT1492
    Basically, you hold down the command-s key then powering on your machine. The command key has a little apple symbol on the lower left. It is between the alt/option key and the space bar
    When you are in single user mode, you are in Unix. you can try looking in the log files to see if you can find anything.
    To see the current boot log you use the dmsg command.
    dmsg
    startup information is in /var/log/system.log
    to display the last 500 lines use the tail command.
    tail -n 500 /var/log/system.log | more
    For these commands you will need to gain write access to your startup disk. There are some comments at the end of the startup process that list the needed commands.
    mac $ ls -lF ~/zztemp.txt
    ls: /Users/mac/zztemp.txt: No such file or directory
    mac $ tail -n 500 /var/log/system.log | cat > ~/zztemp.txt
    mac $ nano ~/zztemp.txt
    mac $
    I assume the message contained /Library/Logs/CrashReporter. Do a change directory:
    cd /Library/Logs/CrashReporter
    mac $ pwd
    /Library/Logs/CrashReporter
    mac $ ls
    ???.crash.log VoiceCenter.crash.log
    Exited process.crash.log
    mac $ tail -n 400 \?\?\?.crash.log
    Host Name: ???
    Date/Time: 2008-09-15 14:28:37.577 -0400
    OS Version: 10.4.11 (Build 8S165)
    Report Version: 4
    Robert

  • My login page goes to Darwin/BSD. I would like to transfer my photos.

    My G4 opens to the login page. I click my user name and when I type the first letter of my password the screen changes to a black screen with white type starting with "Darwin/BSD." A couple of lines down there's a user name request, which I do, then hit return. Then a password request, which I type in, hit return. Then I'm stuck.
    Is there a code I can type in to access the photo files and move them onto my new computer?
    Addtionally, I've restarted from the Tiger installation disk. I can't archive and reinstall because I don't have enough memory.
    I've restarted in OS 9.2 and tried to trash unnecessary programs, etc. then emptied the trash to make room but that hasn't made a difference.
    I stuck a thumb drive into the USB port to see if I could move photos onto that but the computer says it can't enumerate it so I removed it.

    Sounds like for some reason, your computer may be trying to start up
    in Single User mode. You may have to see if there is a way to make it
    reboot or restart normally from the odd screen you get after trying to
    put in your password. And it also sounds like there is a problem in there.
    • Mac OS X: How to start up in single-user or verbose mode
    Jun 19, 2008 ... Mac OS X Server, Mac OS X 10.4, Mac OS X 10.3,
    Mac OS X 10.2, Mac OS X 10.1, Mac OS X 10.0, Mac OS X 10.5.
    Starting up in single-user or... http://support.apple.com/kb/HT1492
    You could try, first, to see if starting up in SafeBoot mode, by holding
    the Shift key down after the startup tone, and continue to hold it until
    you get a login screen where you should be able to enter password.
    And then, the computer should go to a normal looking reduced form
    of Finder desktop screen. From here, you could try running Disk Utility
    and in there, run 'repair disk permissions' then quit this Utility & restart.
    If that does not work, then consider the above link to Single User boot.
    Also, other options may include trying to start the computer from the
    Installer boot disc for your OS X presently in the computer, and use its
    Disk Utility from the Installer's drop-down menu options just before the
    actual Installer would try to get you to reinstall. You don't need that part.
    PS: You could not begin to remove enough to a flash drive to make a
    difference, if the main hard disk drive is overfull and it can't find enough
    room for a new system folder that an archive & install would create.
    Good luck & happy computing!

  • NEWBIE - creating a simple JSP login page

    Hi guys,
    I am really really stuck, and I would be so grateful if you guys could help me in any way. I am creating a simple application, but as part of the application i have to create a login / logout sub-application. It needs to verify the username and password by looking up a database in mySQL. I've had a look around on the internet to see if there is any simple way of doing it, but i can't understand most of it. I'm really new to JSP and only know how to do simple statement like <c:choose> and stuff like that. If anyone can help me in any way to create as simple a login / logout application that verifies the username and password from a database, I would be ever so grateful, thank you!
    Just to let you know, the security-roles and all that stuff together with the <tomcat-users> stuff has already been set up.
    I found this code by the author brain.compression, which seems to very useful, I've not tried it out yet, but was wondering, if somebody could help me split the code up into the separate JSP pages i will need, as I am not too sure which bits of the code need to go on what pages.
    Thank you to anyone that can help me out and thanks for brain.compression for providing this code. I'm sorry for posting this in a forum not related to JSP, its just that I am a complete newbie to JSP and nobody in that forum is helping me.
    brain.compression's code starts here...
    First for the page you are requesting you would need a verify if the user is logged in or not:
    <c:if test="${existingUser==null}">
    <jsp:forward page="login.jsp">
    <jsp:param name="origURL" value="${pageContext.request.requestURL}"/>
    <jsp:param name="errorMsg" value="Please log in first" />
    </jsp:forward>
    </c:if>
    This will redirect you to the login page:
    <font color="red">
    ${fn:escapeXml(param.errorMsg)}
    </p>
    </font>
    <form method="post" action="authenticate.jsp">
    <table>
    <tr>
    <td>Please Enter the following information to log in:</td>
    </tr>
    </table>
    <table>
    <tr>
    <td>User ID:</td>
    <td><input name="userid" value="${fn:escapeXml(cookie.userid.value)}"></td>
    </tr>
    <tr>
    <td>Password:</td>
    <td><input type="password" name="password" value="${fn:escapeXml(cookie.password.value)}"></td>
    </tr>
    </table>
    After that you have to verify with your DB if the login info provided is correct:
    %-- Removing any scoped variables --%>
    <c:remove var="existingUser" />
    <c:if test ="${empty param.userid || empty param.password}" >
    <c:redirect url="login.jsp">
    <c:param name="errorMsg" value="Please enter a User Id and Password." />
    </c:redirect>
    </c:if>
    <%-- Checking if User Id and Password are valid --%>
    <sql:query var="anyvariable" dataSource="${data}">
    SELECT * FROM table WHERE user_id = ? AND pass = ?
    <sql:param value="${param.userid}"/>
    <sql:param value="${param.password}"/>
    </sql:query>
    <c:if test="${anyvariable.rowCount == 0}">
    <c:redirect url="login.jsp">
    <c:param name="errorMsg" value="Invalid User Id or Password"/>
    </c:redirect>
    </c:if>
    Also can somebody tell me if i am right. Do I need to create a page called login.jsp to put the actual form on, and a page called authenticate.jsp to verify the username and password are correct? Finally i see that brain.compression has used a variable called existingUser but has he actually declared it anywhere. Thanks again for anybody that can help me out!

    i am still a jsp noobie but i have done some applications using html javascript php asp and other languages. What you want to do is take the data from the login form then compare that to the db see if it actually exist and has the correct info. From there you want to write a cookie to the users computer to hold the username and password, which will be checked for at the begining of every page verifying it in the database. This is how i have done password verification in the past and it works fairly well and unless your server gets hacked your pages should be secure.

  • Spotify stuck on Login

    Hi,  I've never posted before so I'm sorry if I'm doing something wrong. 
    I've looked on the forum but can't seem to find a solution to my problem.
    I recently got an Asus tablet (fonepad 7) - KitKat. I installed Spotify but after I try to login through Facebook (Facebook works fine) the app just gets stuck on the login page, the one with "Logging in, please wait..." and the green moving circle. I tried waiting up to an hour and a half, it's still stuck. I tried deleting the app, reinstalling it, deleting the folder, etc. I tried earlier versions of the app, still same results. I also upgraded to Lollipop and tried Spotify again, no change.
    I've got no idea what could be causing this, because the app works perfectly on my phone. What's different with this tablet?
    Thanks for any help!

    I would go on the computer, and disconnect from facebook. That will make your credentials not linked to facebook. Then go to forgot password, and reset it -- after you do that, log in on the phone, and then you can connect it to facebook without issues (hopefully). Hope it works!

Maybe you are looking for

  • ASP ,JSP in one file

    Hi...i need to include ASP code in the JSP file...is it possible...if so how to run that file since each requires a different server.....plz advice me... Thanks in advance...

  • When is Apple going to fix the problem with slow Time Machine backups with Mavericks?

    I have been with Apple tech support and they got my Time Machine working by doing a spotlight re-indexing and a safe boot.  This worked for about three days and I am back to very slow backups.  It is impossible for Time Machine to back up every hour

  • MP4 Thumnails not appearing correctly or at all after import

    I have tried the alt/ctrl/shift to no avail. LR4 will display them correctly as will Windows Live Photo Gallery. I've deleted from catalog and re-imported with same result. Using the "update thumbnail" tool does not work. Some times it will display i

  • Disaster recovery server

    hi experts i am using SAP Version: ECC 6.0 SR3 Database Version: 10.2.0.4 OS Version: HP-UX B.11.31 i have a server where O/S installed. i want to make this as a disaster Recovery server. now i want to know. 1- what is the man power needed.? 2 -which

  • Throw a custom error message while doing CATS timesheet approval

    Hi, We are going to implement CATS Timesheet approval using ESS / MSS portal. Requirement is NOT to allow an approver to approve / reject a timesheet workitem in MSS duing payroll block period ( e.g last week of a month). we need to throw an error me