Class oracle.disco.DiscoApplet not found ?????

Hi,
I'm unable to open disco plus 10.1.2.2 today and it was working fine for me till yesterday.
what i getting in console i pasted below.
Any suggestions ????
Java Plug-in 1.6.0_01
Using JRE version 1.6.0_01 Java HotSpot(TM) Client VM
load: class oracle.disco.DiscoApplet not found.
java.lang.ClassNotFoundException: oracle.disco.DiscoApplet
     at sun.applet.AppletClassLoader.findClass(Unknown Source)
     at java.lang.ClassLoader.loadClass(Unknown Source)
     at sun.applet.AppletClassLoader.loadClass(Unknown Source)
     at java.lang.ClassLoader.loadClass(Unknown Source)
     at sun.applet.AppletClassLoader.loadCode(Unknown Source)
     at sun.applet.AppletPanel.createApplet(Unknown Source)
     at sun.plugin.AppletViewer.createApplet(Unknown Source)
     at sun.applet.AppletPanel.runLoader(Unknown Source)
     at sun.applet.AppletPanel.run(Unknown Source)
     at java.lang.Thread.run(Unknown Source)
Caused by: java.io.IOException: open HTTP connection failed.
     at sun.applet.AppletClassLoader.getBytes(Unknown Source)
     at sun.applet.AppletClassLoader.access$100(Unknown Source)
     at sun.applet.AppletClassLoader$1.run(Unknown Source)
     at java.security.AccessController.doPrivileged(Native Method)
     ... 10 more

Hi,
This looks more to me like it was an applet conflict with the newer 10.1.2.2 jar files and the older applet that was cached.
I say this because I have used the 1.6 plugin without issue (not that it is officially certified :-) ) with versions 10.1.2.0.2 and 10.1.2.2 and I have seen that conflict before when applying patches that udpate the Discoverer Plus applet jar files.
If you have this occur again, try to clear your JRE cache (start >> control panel >> java) and then reconnect, it will force the download of the new udpated applet. Likely why it started working when you deninstalled and reinstalled. Not sure if that would be considered a Discoverer bug/issue or a JRE issue when a new applet doesn't overwrite the old one.
Hope that helps,
Steve.

Similar Messages

  • Class oracle.sql.OPAQUE not found in class oracle.xdb.XMLType

    I have the following code written in java in a unix box and this is the error I get when compiling the code. I am not able to find which specific jar or class file I need, Kindly help.
    XMLHelper.java:0: Class oracle.sql.OPAQUE not found in class oracle.xdb.XMLType.
    ^
    1 error
    OracleResultSet orst = .... some code to get data
    orst.next();
    //either of the following 2 lines give the same error
    //XMLType dXml = XMLType.createXML(orst.getOPAQUE(1)) ;
    XMLType dXml = (XMLType)orst.getObject(i);
    xmlDoc = dXml.getDOM();
    Please help

    Hello,
    from the little information in your post i would say try to import oracle.sql.*, oracle.jdbc.* and oracle.xdb.*. Make sure your project can access the following libraries ojdbc14.jar and xdb.jar.
    Regards, Marc

  • Class javax.rmi.PortableRemoteObject not found in import

    I have successfully tested test1.jsp calling stateful ejb test1ejb under JDEV9032. On deploying to standalone OC4J903, the following error occurred on accessing the jsp:
    500 Internal Server Error
    OracleJSP: oracle.jsp.provider.JspCompileException:
    Errors compiling:D:\O9IAS\j2ee\home\application-deployments\test\testWEB\persistence\_pages\\_test1.java
    Line # Error 10
    Class javax.rmi.PortableRemoteObject not found in import. import javax.rmi.PortableRemoteObject;
    Appreciate some pointers on how to troubleshoot this problem. Thanks. William Chew.

    This error is due to the c:\windows\system32\java.exe being first on the path instead of the d:\jdev9i\jdk\bin\java.exe being picked up.

  • I am trying to install oracle 11g xe on ubuntu aws instance when i execute sudo /etc/init.d/oracle-xe configure command iam getting this error: sudo: /etc/init.d/oracle-xe : command not found

    i am trying to install oracle 11g xe on ubuntu aws instance when i execute sudo /etc/init.d/oracle-xe configure command iam getting this error: sudo: /etc/init.d/oracle-xe : command not found.

    "command not found" means ... there is no such thing.
    Has the .rpm been installed?
    http://docs.oracle.com/cd/E17781_01/install.112/e18802/toc.htm#XEINL122

  • Error:Class java.util.date not found

    i have installed 9iAS on my computer.And i want to develop program on JSP.i tried the url below
    http://eyuksel/servlet/IsItWorking
    and i got "it is working" message.when i try to execute my first jsp file i get the error:
    Errors compiling:d:\ias\apache\apache\htdocs\_pages\\_first.java
    d:\ias\apache\apache\htdocs\_pages\_first.java:55: Class java.util.date not found.
    out.print( new java.util.date() );
    ^
    1 error
    what must i do or how can i install the java classes.
    kind regards...
    null

    Thank you very much.It worked:)
    Java is case-sensitive.
    try
    java.util.Date
    instead of
    java.util.date
    null

  • When compiling I get msg: Class java.io.* not found in import.

    import java.io.InputStreamReader;
    import java.io.BufferedReader;
    import java.io.IOException;
    public class CheckNumber {
    //program that checks the input buffer has valid integer value
         public static void main(String[] args) {
              String inLine = null;
              int checkInteger = 0;
              try {
              BufferedReader inStream = new BufferedReader (new InputStreamReader(System.in) );
              System.out.print("Enter a valid Integer and hit <ENTER>: ");
              inLine = inStream.readLine();
              checkInteger = Integer.parseInt(inLine);
              } catch (NumberFormatException nfe) {
              System.out.println("You did not enter a valid Integer: " + nfe);
              return;
              } catch (IOException e) {
              System.out.println("IOException: " + e);
              return;
              System.out.println("You entered a valid Integer: " + checkInteger);
    Compiling produced the following output:
    C:\jdk\work1>javac CheckNumber.java
    CheckNumber.java:1: Class java.io.InputStreamReader not found in import.
    import java.io.InputStreamReader;
    ^
    CheckNumber.java:2: Class java.io.BufferedReader not found in import.
    import java.io.BufferedReader;
    ^
    CheckNumber.java:12: Class java.io.BufferedReader not found in type declaration.
    BufferedReader inStream = new BufferedReader (new InputStreamReader(System.in) );
    ^
    CheckNumber.java:12: Class java.io.InputStreamReader not found in new.
    BufferedReader inStream = new BufferedReader (new InputStreamReader(System.in) );
    ^
    CheckNumber.java:15: Class java.io.BufferedReader not found in void main(java.lang.String[]).
    inLine = inStream.readLine();
    ^
    CheckNumber.java:21: Exception java.io.IOException is never thrown in the body of the corresponding try statement.
    } catch (IOException e) {
    ^
    6 errors

    I recently did a standard installation of jdk 1.5.
    This is the first time I am trying import.
    I set the path:
    set path=c:\jdk\bin
    Hmm...
    C:\jdk\bin>java -version
    java version "1.5.0_15"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_15-b04)
    Java HotSpot(TM) Client VM (build 1.5.0_15-b04, mixed mode, sharing)
    C:\jdk\bin>javac -J-version
    'javac' is not recognized as an internal or external command,
    operable program or batch file.
    There's no javac.exe file.
    I have javaw.exe and java.exe.

  • Class javax.crypto.SecretKey not found in import.

    While compilation i am getting this error.
    Class javax.crypto.SecretKey not found in import.
    I am not able to figure it out . Please help me for that.
    Is it related to some classpath setting.

    This error is due to the c:\windows\system32\java.exe being first on the path instead of the d:\jdev9i\jdk\bin\java.exe being picked up.

  • MyApplet.java:2: Class netscape.javascript.JSObject not found in import.

    Hi,
    Im getting: MyApplet.java:2: Class netscape.javascript.JSObject not found in import.
    import netscape.javascript.JSObject;
    Where can i get this package. Someone said jaws.jar, but its not to be found. Im new on this project and I dont know how the old people compiled this applet.
    JDK version is:
    Solaris VM (build Solaris_JDK_1.2.2_10, native threads, sunwjit)
    Thanks

    Thanks man!
    I installed the jdk1.4 on my workstation. I then compiled the program via JDeveloper and pumped the class over to my server.
    Thanks again.

  • Oracle.jdbc.oracledriver not found

    Hi,
    i have this code .. given below. I installed the oracle client version 8. but everytime i run this code i get the oracledriver not found message. I put the oracle jdbc drivers in the class path. but the code just refuses to compile.
    Can anyone tell me what is wrong here. i have a funny feeling that the classpath is not set properly. let me know whats wrong here.
    ps: i havent set the system DSN - coz i am getting stuck at the drivers itself.
    It says the following .
    AccessDB.java:26: Class oracle.jdbc.driver.OracleDriver not found.
    DriverManager.registerDriver (new oracle.jdbc.driver.OracleDriver());
    i have the CLASSPATH=D:\oracle\ora81\jdbc\lib\classes111.zip;D:\oracle\ora81\jdbc\lib;D:\oracle\ora81\jdbc\lib\classes12.zip;D:\oracle\ora81\jdbc\lib\nls_charset11.zip
    the code is as follows
    //: AccessDB.java
    import java.sql.*;
    * Access the Database through JDBC
    public class AccessDB {
    private Connection con = null;
    private Statement stmt = null;
    private DatabaseMetaData meta = null;
    private String dbURL;
    private String dbUser;
    private String dbPassword;
    * Connects to JDBC driver
    public void connect(String dbURL, String dbUser, String dbPassword){
    try {
    DriverManager.registerDriver (new oracle.jdbc.driver.OracleDriver());
    Class.forName ("oracle.jdbc.driver.OracleDriver");
    con = DriverManager.getConnection(dbURL,dbUser,dbPassword);
    stmt = con.createStatement();
    meta = con.getMetaData();
    catch(Exception e){
    System.out.println("connect: " + e);
    System.exit(0);
    * Disconnects from JDBC driver
    public void disconnect(){
    try {
    if (stmt != null) stmt.close();
    if (con != null) con.close();
    catch(Exception e){
    System.out.println("disconnect: " + e);
    System.exit(0);
    * Retrieves a Statement object
    public Statement getStatement(){
    return stmt;

    hi,
    i have some problem in JSP oracle connectivity,
    I'm running JRUN, PWS under WIN98.
    the following is the code for Oracle connection from JSP
    <%@ page import="java.sql.*" %>
    <HTML>
    <HEAD>
         <title>Example JSP</title>
    </HEAD>
    <BODY>
    <table width="50%" border=1>
         <th>Table Name</th>
         <th>Table Type</th>
    <%
    java.sql.Connection con;
    java.sql.ResultSet rs;
    java.sql.Statement sta;
              Class.forName("oracle.jdbc.driver.OracleDriver");
              con=java.sql.DriverManager.getConnection("jdbc:oracle:thin:@NTSERVER1:1521:orcl","DOHMS","TA");
              sta=con.createStatement();
              rs=sta.executeQuery("select * from USERS");
              while(rs.next()) {
                        out.println("<tr><td>"+rs.getString(1)+"</td><td>"+rs.getString(2)+"</td></tr>");
    %>
    </table>
    <BODY>
    the following is the error:
    Exception thrown on line '21' from page 'C:\\Program Files\\Allaire\\JRun\\servers\\default\\demo-app\\jsp\\dbtest.jsp'.
    java.lang.ClassNotFoundException: oracle.jdbc.driver.OracleDriver [oracle.jdbc.driver.OracleDriver]
         at allaire.jrun.servlet.JRunServletLoader.loadClass(../servlet/JRunServletLoader.java:430)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:265)
         at allaire.jrun.jsp.JSPClassLoader.loadClass(../jsp/JSPClassLoader.java:118)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:265)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:325)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:135)
         at jrun__jsp__dbtest2ejspf._jspService(jrun__jsp__dbtest2ejspf.java:49)
         at allaire.jrun.jsp.HttpJSPServlet.service(../jsp/HttpJSPServlet.java:39)
         at allaire.jrun.jsp.JSPServlet.service(../jsp/JSPServlet.java:228)
         at allaire.jrun.jsp.JSPServlet.service(../jsp/JSPServlet.java:196)
         at allaire.jrun.servlet.JRunSE.service(../servlet/JRunSE.java:1416)
         at allaire.jrun.session.JRunSessionService.service(../session/JRunSessionService.java:1082)
         at allaire.jrun.servlet.JRunSE.runServlet(../servlet/JRunSE.java:1270)
         at allaire.jrun.servlet.JRunRequestDispatcher.forward(../servlet/JRunRequestDispatcher.java:89)
         at allaire.jrun.servlet.JRunSE.service(../servlet/JRunSE.java:1552)
         at allaire.jrun.servlet.JRunSE.service(../servlet/JRunSE.java:1542)
         at allaire.jrun.servlet.JvmContext.dispatch(../servlet/JvmContext.java:364)
         at allaire.jrun.http.WebEndpoint.run(../http/WebEndpoint.java:115)
         at allaire.jrun.ThreadPool.run(../ThreadPool.java:272)
         at allaire.jrun.WorkerThread.run(../WorkerThread.java:75)
    ---------------

  • Oracle service orcl not found in windows services

    hello
    i'm facing a very serious problem. MY server ORacleserviceorcl not found in services. all services currently up and running. but ORCL service not show there and my database is down how i start my database. i found this problem first time. plz help me how to Start oracle. my ORacle version 10g on windows server 2003

    Niall,
    Do you think that the OP should try the following command to re-create the service:
    C:\> ORADIM -NEW -SID ORCLAs far as I have been able to determine, that command will not cause an issue, and will return an error if the service already exists.
    To the OP: It is possible that a utility, such as HiJackThis, was used to remove the service, the Windows registry is corrupt, someone used ORADIM to delete the service, someone was hacking away in the registry and accidentally removed the entry for the service, or any number of other possibilities (I am not sure if MSCONFIG will remove a service when that program disables the service, but that might be another possibility, and dropping the database is another possibility).
    Charles Hooper
    Co-author of "Expert Oracle Practices: Oracle Database Administration from the Oak Table"
    http://hoopercharles.wordpress.com/
    IT Manager/Oracle DBA
    K&M Machine-Fabricating, Inc.
    Edited by: Charles Hooper on Jan 22, 2010 10:42 AM
    Added the note about dropping the database as a possible cause - see if the datafiles still exist.

  • BO4 - auit universe changing to oracle connection - table not found

    Hi,
    We have found the BO4 sample audit universe on sdn and can open in IDT but when parse the objects says table not found.
    The tables physically exist on database and when do insert in data foundation layer they are there.
    Changed connection from mysql to our boaudit databse connection.
    Any ideas?
    Thanks

    Hi Philip,
    I suppose you have downloaded this link:
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/40711187-04e8-2d10-d190-851e20c7665a
    This contains only the Activity universes for Sybase and SQL Server but not Oracle. Unfortunately, every database requires its own Activity universe. I am afraid that you have to build your own.
    Regards,
    Julian

  • ORACLE HTML DB  not found

    at my URL http://<machine-name>:7777/pls/htmldb/htmldb_admin i got this error..,
    Error Error ERR-1014 Application not found.
    OK
    application=4050 workspace=10
    BUT the Oracle EM works fine http://<machine-name>:5501/em/logon/logon

    Bug 3758204??

  • Error: Class java.util.ArrayList not found in import

    Bear with me, I'm learning. That's part of the problem.
    I'm trying to teach myself JSP using a book based on Tomcat, but running it on an Oracle 9iAS server that I don't control. (The DBAs do that.) I'm running into constant problems compiling and using classes and such, I think because of the different directory structures on the two servers. (See subject error.)
    So, what I'd like to know is: how do I set up a default/main/whatever-you-want-to-call-it directory under which I can store my practice applications, such that 9iAS will function correctly? We're not using OC4J as far as I can see (no such directory, though there is a J2EE_containers folder), just JServ. Or, conversely, can someone explain in simple terms the basic 9iAS directory structures for deploying apps on 9iAS? I've been 'round and 'round the Oracle documentation until my head spins, and can't find this basic information.
    Help, please!!

    You will have to make Kawa to use the correct jdk
    Look into
    Options-> Directory
    Make a new Profile if it point to your old jdk version
    Thanks
    Joey

  • Oracle.DataAccess.Client not found[SOLVED]

    Hello,
    I am trying to run a stored procedure using C# and I need to use the Oracle.DataAccess.Client but when i enter
    "using Oracle.DataAccess.Client;" visual studio throws the error:
    Error 1 The type or namespace name 'Oracle' could not be found (are you missing a using directive or an assembly reference?) P:\data\ActionItemLog\ActionItemLog\updateComment.aspx.cs 14 7 ActionItemLog
    And I installed the newest ODTwithODP for .NET. I would really like some help on this subject and I will do my best to clarify even more if needed.
    Thanks in advance,
    Dylan
    Message was edited by:
    dkroy

    Just a stupid mistake on my part all I had to do is in visual studio add the Oracle.DataAccess.dll file to references. I hope this mistake saves some one a bit of time in the future.

  • Oracle Portal Homepage Not Found.

    Hi,
    I've installed Oracle 9i Portal on Windows2000. Login server
    & gateway is up, but Portal homepage is not up.It is giving
    error (as found in install.log):
    ORA-01920: user name 'SCOTT' conflicts with another user or role
    name
    ORA-04043: object ENAME_TYPE does not exist
    ORA-12003: snapshot "SCOTT"."EMP_SNAPSHOT" does not exist
    ORA-04043: object GIVE_RAISE does not exist.
    Pl. reply.
    Thanx in advance,
    Tushar

    8.1.7 installs scott using System for the default and temporary
    tablespace. This can sometimes cause problems. To avoid problems,
    do the following for scott user:
    a) As system, issue the following commands:
    ALTER USER scott
    DEFAULT TABLESPACE users
    TEMPORARY TABLESPACE temp;
    b) Log in as scott and move all of scott's objects to the
    users tablespace.
    For example:
    ALTER TABLE tablename
    MOVE TABLESPACE users;
    I hope this will help.
    Suhail

Maybe you are looking for

  • How to get the count of items(folders or documents) in a SharePoint document library and for a folder in any SharePoint document library?

    I need to get a count of documents and folders in a selected document library(the item for EventRecievers for event deleting) and the count of documents in a selected folder(the item for EventRecievers for event deleting) to determine whether the ite

  • Signing in to gmail using safari

    I can no longer sign in to one gmail account on my ipad2 (there is no issue logging into my other gmail account) using safari. Nothing was changed, one minute i could access both gmail accounts with ease, the next only one, with no changes made to an

  • Printing custom barcode from script

    Hi Friends, Need help. I have created a barcode from SE73.  I used it in a layout .  I want to print it from Script ( With  driver program) .  I am getting print preview . But when I give print barcode is not coming.   But the same barcode I used it

  • Error F5100 - The entry FR 3 A1 is missing in table 021T

    Hi all;   We have an error message when log on in French and try to run transaction F-44. After update Vendor Account, Company Code and click on the button "Process Open Itens" the system returns an error message F5100 - "The entry FR 3 A1 is missing

  • Blackberry Bold 9700 won't Connect to Desktop

    Everytime I connect my BB Bold to my PC in an attempt to back it up using the Blackberry Desktop software, it never actually connects. I have the latest version of the software on my pc...has this happeed to anyone?