While entering the username and password in OEM, it is showing error : java.lang.ClassNotFoundException: _database._instance._sitemap._sitemap

After starting OEM and entering the username and password , it is showing error : java.lang.ClassNotFoundException: _database._instance._sitemap._sitemap

>
Your reply might be useful, but it is still not a suitable answer for my question. >You might try reading it again, because you've absolutely missed the point.
>
I am familiar with NetBeans, because I have built many websites by this tool before, I don't want to change to other IDEs, ..>Nobody suggested 'another IDE'.
Oh, and your 'hurry' is none of my business or concern. But if you are in such a gosh-darn hurry, it might be useful to read replies carefully - otherwise you might end up wasting a great deal of time.

Similar Messages

  • HT1695 I am trying to connect to my uni wifi, and when i click on the wifi, it directs me to a log in page. However, the two boxes to enter the username and password do not appear. Can anyone help me with this???

    I am trying to connect to my uni wifi, and when i click on the wifi, it directs me to a log in page. However, the two boxes to enter the username and password do not appear. Can anyone help me with this???

    You didn't say what you have already tried, but if you haven't already done so, power-cycle your router (unplug it for 15 seconds then plug it back in), then on your phone go to Settings>General>Reset and tap Reset Network Settings, then try joining your wifi again.

  • Why is my Cisco ER admin page is blank after I place and enter the username and password?

    when i enter my username and password in the CER admin login screen my page is blank. Can anyone tell me why? BTW I restarted Cisco Tomcat and my Cisco Emergency Responder will not start.

    Version: 10.0.2.10000-11
    Yes i did.
    the platform page works just fine. It is just when i login with the admin page does not load.I mean it is just a blank white screen.
    it should still appear without certificates. I have attached a screen shot

  • How to catch exception while validating the username and password in hbm

    Hi,
    I do want to set the username and password dynamically in hibernate.cfg.xml
    Here below is my configuration file.
    {code<hibernate-configuration> 
    <session-factory> 
           <property name="hibernate.bytecode.use_reflection_optimizer">false</property> 
           <property name="hibernate.connection.driver_class">oracle.jdbc.driver.OracleDriver</property> 
           <property name="hibernate.connection.pool_size">10</property> 
           <property name="show_sql">true</property> 
           <property name="hibernate.dialect">org.hibernate.dialect.OracleDialect</property> 
           <property name="hibernate.hbm2ddl.auto">update</property> 
           <property name="current_session_context_class">thread</property> 
           <property name="show_sql">true</property> 
         </session-factory> 
    </hibernate-configuration>{code}
    Also im getting that session factory object like the below code.
    public class Sessions {        private static SessionFactory sessionFactory;      private static Configuration configuration = new Configuration();        static {          try {              String userName = GuigenserviceImpl.userName;              String password = GuigenserviceImpl.password;              String hostName = GuigenserviceImpl.hostName;              String portNo = GuigenserviceImpl.portNo;              String sId = GuigenserviceImpl.sId;                  configuration                      .setProperty("hibernate.connection.username", userName);              configuration                      .setProperty("hibernate.connection.password", password);              configuration.setProperty("hibernate.connection.url",                      "jdbc:oracle:thin:@" + hostName + ":" + portNo + ":" + sId);                try {              configuration.configure("/hibernate.cfg.xml");              sessionFactory = configuration.buildSessionFactory();              GuigenserviceImpl.strAccpted = "true";              }              catch (Exception e) {                    e.printStackTrace();                  GuigenserviceImpl.strAccpted = "false";              }            }          catch (HibernateException hibernateException) {              GuigenserviceImpl.strAccpted = "false";              hibernateException.printStackTrace();          }          catch (Throwable ex) {                GuigenserviceImpl.strAccpted = "false";              ex.printStackTrace();              throw new ExceptionInInitializerError(ex);          }      }          public static SessionFactory getSessionFactory() {          return sessionFactory;      } 
    So, in this above scenario, suppose if im giving the wrong password means exception should be caught and the string variable "GuigenserviceImpl.strAccpted" should be assigned to false.
    But im getting the SQL Exception only in console like wrong username and password. And finally i couldn't able to catch the exception in Sessions class, static block.
    Anyone can help me in catching that SQL Exception in my Sessions class and i need to handle that SQL Exception in my class.
    Im getting this following exception message in my console.
      INFO: configuring from resource: /hibernate.cfg.xml  Apr 6, 2009 2:47:00 PM org.hibernate.cfg.Configuration getConfigurationInputStream  INFO: Configuration resource: /hibernate.cfg.xml  Apr 6, 2009 2:47:00 PM org.hibernate.cfg.Configuration doConfigure  INFO: Configured SessionFactory: null  Apr 6, 2009 2:47:00 PM org.hibernate.connection.DriverManagerConnectionProvider configure  INFO: Using Hibernate built-in connection pool (not for production use!)  Apr 6, 2009 2:47:00 PM org.hibernate.connection.DriverManagerConnectionProvider configure  INFO: Hibernate connection pool size: 10  Apr 6, 2009 2:47:00 PM org.hibernate.connection.DriverManagerConnectionProvider configure  INFO: autocommit mode: false  Apr 6, 2009 2:47:00 PM org.hibernate.connection.DriverManagerConnectionProvider configure  INFO: using driver: oracle.jdbc.driver.OracleDriver at URL: jdbc:oracle:thin:@192.168.1.12:1521:orcl  Apr 6, 2009 2:47:00 PM org.hibernate.connection.DriverManagerConnectionProvider configure  INFO: connection properties: {user=scott, password=****}  Apr 6, 2009 2:47:01 PM org.hibernate.cfg.SettingsFactory buildSettings  WARNING: Could not obtain connection metadata  java.sql.SQLException: ORA-01017: invalid username/password; logon denied        at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:70)      at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:131)      at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:204)      at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:455)      at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:406)      at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:399)      at oracle.jdbc.driver.T4CTTIoauthenticate.receiveOauth(T4CTTIoauthenticate.java:799)      at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:368)      at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:508)      at oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:203)      at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:33)      at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:510)      at java.sql.DriverManager.getConnection(DriverManager.java:525)      at java.sql.DriverManager.getConnection(DriverManager.java:140)      at org.hibernate.connection.DriverManagerConnectionProvider.getConnection(DriverManagerConnectionProvider.java:110)      at org.hibernate.cfg.SettingsFactory.buildSettings(SettingsFactory.java:84)      at org.hibernate.cfg.Configuration.buildSettings(Configuration.java:2073)      at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1298)      at com.beyon.ezygui.server.Sessions.<clinit>(Sessions.java:39)      at com.beyon.ezygui.server.GuigenserviceImpl.testRPC(GuigenserviceImpl.java:322)      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) 
    Thanks in advance.
    Thanks & Regards,
    Kothandaraman N.

    Hi,
    Myself hardcoded that username and password checking like the below code.
    String name = loginData.get("userName").toString();
              String pswd = loginData.get("pswd").toString();
              String hstName = loginData.get("hName").toString();
              String prtNo = loginData.get("portNo").toString();
              String sid = loginData.get("sId").toString();
              SessionFactory sessionFactory = null;
              try {
                   if (name.trim().equals(userName) && pswd.trim().equals(password)
                             && hstName.trim().equals(hostName)
                             && prtNo.trim().equals(portNo) && sid.trim().equals(sId)) {
                        sessionFactory = Sessions.getSessionFactory();
                        strAccpted = "true";
                   } else {
                        strAccpted = "false";
              } catch (Exception e) {
                   e.printStackTrace();
                   strAccpted = "false";
              }I have my own values in string objects, then comparing that values with the values from login form. If both values are matching, then i will do configurations in hibernate.
    ResourceBundle resourceBundle = ResourceBundle
                   .getBundle("com.beyon.ezygui.server.Queries");
         public static final String connection_url = resourceBundle
                   .getString("connection.url");
         public static final String userName = resourceBundle.getString("userName");
         public static final String password = resourceBundle.getString("password");
         public static final String hostName = resourceBundle.getString("hostName");
         public static final String portNo = resourceBundle.getString("portNo");
         public static final String sId = resourceBundle.getString("sId");The above are the String objects i'm checking for the match with values from login form.
    Thanks & Regards,
    Kothandaraman N.

  • 'Please enter the username and password for this s...

    Hello,
    ever since we have Bt broadband there have ben problems with the email account and this d****d pop-up! No matter what I do to the box , it keeps coming back. Then the account works fine for a while until it decides to appear again. I can have a whole week without it then a whole week with it appearing every few seconds. It has got worse today. Then Bt broadband help will pop up and say there are issues with the email account. I ask it to fix it and it goes through its procedure and comes back with no issues found! Finally this morning I had had enough and contacted the live chat. The man at the end of the line took over the computer, did not know what he was talking about and took me an hour to undo the damage he had done! He did say though that there were issues with Outlook 2010 and bt mail. I wonder if anyone else has suffered the same issues and solved them or if anyone knows of any conflicts between Outlook 2010 and bt mail? I'm at my wits end and bt is no help with its overseas, script driven help line! All my settings are fine as it happened with a second account that the 'chat' man set up and nothing happens with another account that I have with Virgin.
    Thanks ... Louise.

    eddielouise wrote:
    Hello,
    ever since we have Bt broadband there have ben problems with the email account and this d****d pop-up! No matter what I do to the box , it keeps coming back. Then the account works fine for a while until it decides to appear again. I can have a whole week without it then a whole week with it appearing every few seconds. It has got worse today. Then Bt broadband help will pop up and say there are issues with the email account. I ask it to fix it and it goes through its procedure and comes back with no issues found! Finally this morning I had had enough and contacted the live chat. The man at the end of the line took over the computer, did not know what he was talking about and took me an hour to undo the damage he had done! He did say though that there were issues with Outlook 2010 and bt mail. I wonder if anyone else has suffered the same issues and solved them or if anyone knows of any conflicts between Outlook 2010 and bt mail? I'm at my wits end and bt is no help with its overseas, script driven help line! All my settings are fine as it happened with a second account that the 'chat' man set up and nothing happens with another account that I have with Virgin.
    Thanks ... Louise.
    Hi Louise, welcome to the forums.
    There is no issue with Outlook 2010 - in fact there are no issues with pratically any mail client. The issue is down to the yahoo mail servers solely, particularly the backend mail server farm mail.btinternet.com.
    Over the past couple of months they seemed to time out, reject access and all sorts of things for different users and different user accounts at different times.
    You may like to try altering the Outlook account settings yourself to enter the details I've written via my shortcuts option 0d/h. See how you get on with that.
    Also you may like to stop Outlook checking every few minutes, assuming you've got that option set. Hence do a manual send/receive at your own leisure.
    http://www.andyweb.co.uk/shortcuts
    http://www.andyweb.co.uk/pictures

  • Can avoid the entering my username and password always when i click on URL

    Hi,
    Iam new to BSP,i developed a simple BSP application to display a list of orders on the second page when a cutomer is entered in the first page. it is working fine.
    when i test the BSP application, it is asking for username and password.when i entered my username and password it is working fine.
    Then my question is when i test the BSP application, can i avoid the entering the username and password always.
    is there any way we can avoid the entering my username and password always when i click on the URL.
    Thanks
    Srinivas Manda

    sure.
    You can include the password and the username in the BSP link :
    <bsp_lnk>?sap-client=<client>?sap-user=<username>?sap-password=<password>
    where:
    <client>  = client where the username and password are defined
    <bsp_lnk> = your bsp link
    <username> = your username
    <password> = your password
    Regards,
    fabrizio

  • HT4623 I entered my username and password but it says on my Ipad screen that it is deactivated.

    I have been on leave then when I came back I did not use my Ipad for one month. When I thought of using it again, I charged it first then when I entered the username and password it appeared on the screen that my Ipad is deactivated. How can I use it again?
    Thanks

    Deactivated or disabled?
     Cheers, Tom

  • I have entered my username and password and the message comes up is "User name or password is incorrect" when I have tried to press ok and continue, it won't let me, it has frozen, the rest of the phone is working fine, it's just in the iclound screen

    I have entered my username and password and the message comes up as User name or password is incorrect, this has frozened this page - so I am unable to use my settings, the rest of the phone is working fine

    Try "resetting" the iPhone.
    Hold the On/Off Sleep/Wake button and the Home button down at the same time for at least ten seconds, until the Apple logo appears.

  • HT4623 When I joined my wireless network I set authentication required to on and di not eneter a username or password.  I then went into safari and as requested entered my username and password.  Now,however the iPod is remembering my credentials. How do

    When I joined my wireless network I set authentication required to on and di not eneter a username or password.  I then went into safari and as requested entered my username and password.  Now,however the iPod is remembering my credentials. How do I clear my credentials?

    Go to Settings>Safari and Clear History, Cookies and Data
    Also go to Settings>Safari>AutoFill and Make sure that Names and Passwords are OFF and Clear All.

  • Why won't this song play even after I authorized the computer? It says that I need to authorize the computer, then I enter my username and password and it says the computer is already authorized. But then the song still won't play. What do I do?

    Why won't this song play even after I authorized the computer? It says that I need to authorize the computer, then I enter my username and password and it says the computer is already authorized. But then the song still won't play. What do I do?

    Use the Apple ID support -> http://www.apple.com/support/appleid/ - click through the contact information and select the iTunes, etc., hot button. You can have Apple call you or email them.
    Clinton

  • I'm trying to activate icloud.  It asks me to verify my e-mail address by entering my username and password.  It keeps refusing to accept my password.  I've have changed the password twice now.  Still the same result.  What do I do?

    I'm trying to activate icloud.  It asks me to verify my e-mail address by entering my username and password.  It keeps refusing to accept my password.  I've have changed the password twice now.  Still the same result. It did however accepted my password to join Apple Support Communites just now. What do I do?

      I had the same promblem using my ipad2, I thought i was going crazy, then I noticed once when I put my user name in and checked it was right, one time it dropped the last letter of my U/N as went to hit submit so i went back put the deleted "m" back into ".com", hit enter, put in my password multiple times, tripple checked, no joy. So I hit remote on my iphone4s did the same UN/PW and it worked first time! I had the same promblem with accessing YouTube - I know I was putting the right UN/PW in but it wouldn't let me in, then miraculously one time it did... could be a letter dropping bug...

  • I cant getmy new IPAD to connect to the wifi at my apartment.  how do i get a prompt to enter a username and password?

    I just purchased a new IPAD (16GB + 4G cell)  I am trying to get it to connect to the wifi hotspot at the apartment where I live.  The wifi signal requires a username and password.  How do I get the IPAD to prompt for the username and password?  Any help is appreciated

    Settings>General>Reset>Reset Network Settings

  • "You may need to enter the name and password for an admin" ....

    Hi everyone!
    I'm getting this error when trying to copy files over to a network drive. First, it'll pop up and say:
    "You may need to enter the name and password for an administrator on this computer to change the item named"
    At the same time, it will create an empty file on the target drive. When I click "Continue", it asks me for my username and password, which I happily enter. At that point, it errors out and says "The operation cannot be completed because an item with the name "xyz" already exists".
    I've tried repairing permissions, chmod 777'ing a file, etc. It did work for a short time (it seemed to work while I was at work, but once I arrived home, it quit working and hasn't worked since.) I've tried rebooting as well.
    Does anyone have any suggestions? I'm really puzzled over this!
    Thanks!

    Actually I get some other errors as well:
    "You may need to enter the name and password..."
    Then I click continue...
    "The item "filename" contains one or more items you do not have permission to read. Do you want to copy the items you are allowed to read?"
    I click continue...
    "The operation cannot be completed because you do not have sufficient privileges for some of the items."
    I am copying a text file made from textedit. I have logged into the shared drive on my iMac. I get the same errors coying to my own user folder. Same account on both machines.
    But it does copy a blank version of the file to the drive and adds the .txt extension to it. Then I can delete it from the share.

  • LAN Networking / UUID error - "You may need to enter the name and password"

    I'm having an issue with networking via ethernet cable. I'm connecting to Windows Vista via ethernet from my macbook pro.
    Everything was going hunky dory until today when I connected and tried to copy a folder over from my desktop to a folder on my vista machine.
    The error is a three tier one, as follows:
    1. +"You may need to enter the name and password for an administrator on the computer to change the item name "..." - stop or continue"+
    2. +"The item "..." contains one or more items you do not have permission to read. Do you want to copy the items you are allowed to read?" - stop or continue+
    3. +"The operation cannot be completed because you do not have sufficient privileges for some of the items."+
    This happens with all files and folders that I try to transfer over. I have full permissions on both ends to do this and the folders have full permissions.
    I've done a bit of trawling and have found out that if you goto: system prefs - accounts (click unlock) - right click on the user in question - advanced options, you can click on the "create new" button under UUID and create a new UUID digit, then restart. This works!!!!... But...
    ...it only works for a little while. After transferring a few folders or files accross, it comes up with the three tiered warning: "you may need to enter the name and... etc etc."
    This is really annoying.
    I've found my initial answers on this thread: http://discussions.apple.com/thread.jspa?threadID=1823835&tstart=45, but this issue seems to go one step further by constantly not allowing me access
    Has anyone got any thoughts about what I can do? I've also tried running applejack on startup, but this doens't work either...

    Actually I get some other errors as well:
    "You may need to enter the name and password..."
    Then I click continue...
    "The item "filename" contains one or more items you do not have permission to read. Do you want to copy the items you are allowed to read?"
    I click continue...
    "The operation cannot be completed because you do not have sufficient privileges for some of the items."
    I am copying a text file made from textedit. I have logged into the shared drive on my iMac. I get the same errors coying to my own user folder. Same account on both machines.
    But it does copy a blank version of the file to the drive and adds the .txt extension to it. Then I can delete it from the share.

  • Getting the Username and password Of Enterprise Portal in WebDynPro

    Hi Friends,
              I have developed one webdynpro application to read the excel sheet from KM Repository. i have used URL to open the connection to that excel file and to get the Inputstream.
              While opening the connection to the excel, I've hardcoded the username and password. I need to get the username and password of the user who login into the Enterprise portal and runs that application. then  i need to pass that username and password along with URL of the Excel sheet.
              Could you people find the solution and replied to me. I am waiting for your bright answer.
    Thanks and Regards,
    Sandeep Kumar Bonam.

    A very standard question in this forum.
    Refer this :
    Re: How to get User Id in Web dynpro application
    Regards,
    Subramanian V.

Maybe you are looking for

  • How to deal with my event in DataAction?

    There is a button in my uix,which tiggers an event like this: <form name="form0" method="post" > <submitButton event="login" text="login" /> </form> <event name="login"> <struts:action path="loginDataAction.do" /> </event> I want to deal with the log

  • How to skip an object in a stream?

    There is a stream manipulation method called skipBytes(int len) that skips the indicated number of bytes in the stream, blocking until all the information has been read. Is there a way of skipping an Object or a number of objects of unknown size?

  • Anyone using Lion and Snow Leopard?  I will be soon.

    I will soon be using both Lion and Snow Leopard on my newly upgraded hybrid hard drive.I know that I should need to partition the drive into three 1 for Lion 1 for SL and 1 for data/applications. The problem is how is how much space should I give eac

  • Prevent retry attempts for certain messages

    When the condition in the receiver determination is not met, a Receiver not Found (>|) error occurs in SXMB_MONI.  That's ok, that's what's expected.  The number of system retry attempts is set to 10.  What can I do to prevent additional retry attemp

  • Does ZAM Client work with Windows 7 and/or OS X Snow Leopard

    Or will there be support for either of those environments? Installer seems to work OK, but client does not report to the Collector.