ClassNotFoundException in Applets

I get a ClassNotFoundException when displaying a web page with an Applet on it. It's a general problem with every site on the Internet, it does work when I use an Applet locally. I have the jdk1.4 plug-in installed and I'm using IE 5.5(SP2) on W2K in a network environment in my company. Any idea if that is a configuration/installation problem or has something to do with network/firewall?

But why!?!?!
I've noticed this as well, but would actually like to start using the Sun VM for applets in IE. Has anyone heard if this is an official bug? Is Sun going to fix this?!?

Similar Messages

  • ClassNotFoundException in applet-urgent

    Hai
    I am having an applet "tstapplet" whose class file is stored in a jar file and the applet is inside a package named test.
    I wrote the following applet tag
    <applet code="tstapplet.class" archive="../deploy/showj.jar">
    </applet>
    I am getting ClassNotFoundException ; tstapplet.class
    What should I do Is the applet code wrong
    Plz help urgent
    tintuthilak

    <applet code="test.tstapplet" archive="../deploy/showj.jar">
    </applet>
    Try to open it with Firefox or Mozilla (you can be sure MSJVM does not try to open
    the applet).
    When it works convert the html page with [jdk.home]\bin\htmlconverter.exe

  • Getting ClassNotFoundException in Applet by using JDK1.6_20

    In my web application, we are using an applet which gets invoked from the jsp.
    Its working fine with jdk1.5 and 1.4 but when I am executing it on machine having JDK1.6_20 its throwing ClassNotFoundException. (Please see the log below)
    I cleared the cache and history but still getting this issue.
    I tried by switching off to Next Generation Java Plugin but still its not working.
    load: class com.idautomation.linear.BCApplet not found.
    java.lang.ClassNotFoundException: com.idautomation.linear.BCApplet
         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)
    Please provide the solution of it.

    am_mehra wrote:
    Hi,
    In my jsp, we have used the following lines to show an apple.
    <applet name="myApplet" width="390" height="105" align="Baseline">
    <param name="code" value="com.idautomation.linear.BCApplet">
    <param name="archive" value="LinearBarCode.jar">
    <param name="name" value="BarCodeApplet">
    <param name = "BARCODE" value = "<%= boOrderReturn.getString("return_no")%>">
    <param name = "CODE_TYPE" value = "CODE128">
    <param name = "BAR_HEIGHT" value = "2">
    <param name = "LEFT_MARGIN" value = "0">
    <param name = "TEXT_FONT" value = "ARIAL|BOLD|11">
    <param name="scriptable" value="true">
    </applet>Looking at this in code tags, which makes things more clear, suggests various problems to me..
    <applet name="myApplet" width="390" height="105" align="Baseline">
    <param name="code" value="com.idautomation.linear.BCApplet">
    <param name="archive" value="LinearBarCode.jar">
    <param name="name" value="BarCodeApplet">
    <param name = "BARCODE" value = "<%= boOrderReturn.getString("return_no")%>">
    <param name = "CODE_TYPE" value = "CODE128">
    <param name = "BAR_HEIGHT" value = "2">
    <param name = "LEFT_MARGIN" value = "0">
    <param name = "TEXT_FONT" value = "ARIAL|BOLD|11">
    <param name="scriptable" value="true">
    </applet>1) [Values for align|http://www.w3.org/TR/REC-html40/struct/objects.html#adef-align-IMG] can be bottom|middle|top|left|right. Note that none of those is 'Baseline'. You cannot just 'make up' HTML and expect it to work.
    2) The code and archive attributes should be in the applet opening element, not specified as params.
    3) Does that applet truly accept a 'name' param?
    4) The barcode param value looks suspiciously like it it is malformed.
    Fixing those things (barring point 4, but also removing the redundant spaces in the param elements) might result in something like..
    <applet
         name="myApplet"
         code="com.idautomation.linear.BCApplet"
         archive="LinearBarCode.jar"
         width="390"
         height="105"
         align="bottom">
    <param name="name" value="BarCodeApplet">
    <param name="BARCODE" value='<%= boOrderReturn.getString("return_no")%>'>
    <param name="CODE_TYPE" value="CODE128">
    <param name="BAR_HEIGHT" value="2">
    <param name="LEFT_MARGIN" value="0">
    <param name="TEXT_FONT" value="ARIAL|BOLD|11">
    <param name="scriptable" value="true">
    </applet>
    The above code is working in JDK1.4 and 1.5 but throwing classnotfoundexception.Did you mean ClasNotFoundException? If so, then please use the correct capitals, so there is no confusion. This is even more important on an international technical forum.
    I am not clear with the response "Change line 114, column 28 of the source from a '.' to a ','. All the problems should be gone." , kindly explain where I need to change this.That was commonly known as sarcasm. It meant I cannot fix code that I cannot see. That is why I requested you post the SSCCE (please read the link).
    It's an internal application not publicly available.OK - understood.

  • ClassNotFoundException in applet

    Hi,
    I have a class which contains:
    "Class.forName("oracle.jdbc.driver.OracleDriver");"
    If I run it using java myclass, everything is fine and
    the application gives a result set from Oracle.
    If I run it under applet, I got "ClassNotFoundException"
    error.
    Anyone can give a help?
    Thanks,

    What do you use to run the applet? Not the jdk's appletviewer, I suspect?

  • ClassNotFoundException: Jar - Applet - WebServer ?

    I'm running an applet (IE 5.0 whith plug-in) from a web server (MIIS). The applet uses some other classes. If I put the html page, the applet and the other classes in the same directory, everything works fine.
    If, instead of it, I put in that directory the html page, the applet (*.class) and a jar file containing the classes the applet need, I get the ClassNotFoundException. What is wrong with this?
    Can anybody help? I have read a lot of messages from this forum, looking for a similar problem, but nobody seems to have it.
    Thank you in advance.
    [email protected]

    Placing your class files in a jar is nice for speeding up the download process, but you don't necessarily have to have them in the same jar. You have a couple of options at your disposal.
    1. Use the html archive tag to specify multiple jars. There is nothing wrong with the specifing multiple jars in the archive value - just seperate them with commas.
    ex. archive="one.jar, two.jar, images/three.jar"
    2. Use the download extension mechanism. Place your classes in a jar, and create a custom manifest for that jar specifing a Class-Path attribute that refers to another (or multiple) jar file(s).
    ex. Class-Path: one.jar, two.jar, images/three.jar
    When specifing the additional files, in most cases use relative paths. When this is not possible, an absolute URL may also be used (but with some care - it's not obvious in some cases).
    Be warned though, that trying to traverse up a directory tree (by using "..") can lead to a security exception in some browsers, so try to plan ahead and not do this.
    Hope this helps,
    -Ron

  • Error while running Dev60 with jdk 11711o

    Dear OTN Members / Oracle Development Team.
    Have any one tried it. Help required form Oracle Devlopemnt
    Team.
    hi i am using oracle8 OAS 4.0.7, Developer 6.0 production
    with NT 4.0 and service Pack 3
    when i try to run the form through jinitinator or JDK provided
    with the package i get the following error.
    running with jinitator
    Oracle JInitiator version 1.1.7.11
    Using JRE version 1.1.7.11o
    User home directory = E:\WINNT\Profiles\Administrator
    Proxy Configuration: no proxy
    java.io.FileNotFoundException: \forms60\f60all.jar
    at java.io.FileInputStream.<init>(FileInputStream.java:56)
    at sun.net.www.protocol.file.FileURLConnection.connect(Compiled
    Code)
    at
    sun.net.www.protocol.file.FileURLConnection.getInputStream(FileUR
    LConnection.java:162)
    at
    sun.net.www.protocol.http.HttpURLConnection.openConnectionCheckRe
    directs(Compiled Code)
    at
    sun.applet.AppletCache.getInputStream(AppletCache.java:588)
    at
    sun.applet.AppletResourceLoader.loadJar(AppletResourceLoader.java
    171)
    at sun.applet.JinitAppletPanel.loadJarFiles(Compiled
    Code)
    at sun.plugin.AppletViewer.loadJarFiles(Compiled Code)
    at
    sun.applet.JinitAppletPanel.runLoader(JinitAppletPanel.java:500)
    at sun.applet.JinitAppletPanel.run(Compiled Code)
    at java.lang.Thread.run(Thread.java:466)
    and with JDK
    Microsoft (R) VM for Java, 5.0 Release 5.0.0.3165
    ==============================================
    ? help
    c clear
    f run finalizers
    g garbage collect
    m memory usage
    q quit
    t thread list
    ==============================================
    com.ms.security.SecurityExceptionEx[oracle/forms/engine/Main.init
    ]: cannot access file E:\WINNT\Java\.hotjava
    at com/ms/security/permissions/FileIOPermission.check
    at com/ms/security/PolicyEngine.deepCheck
    at com/ms/security/PolicyEngine.checkPermission
    at com/ms/security/StandardSecurityManager.chk
    at com/ms/security/StandardSecurityManager.checkRead
    at java/io/File.exists
    at java/io/File.mkdirs
    at sun/applet/AppletViewer.<clinit>
    at java/lang/ClassLoader.findSystemClass
    at com/ms/vm/loader/URLClassLoader.loadClass
    at java/lang/ClassLoader.loadClassInternal
    at oracle/forms/engine/Main.init
    at com/ms/applet/AppletPanel.securedCall0
    at com/ms/applet/AppletPanel.securedCall
    at com/ms/applet/AppletPanel.processSentEvent
    at com/ms/applet/AppletPanel.processSentEvent
    at com/ms/applet/AppletPanel.run
    at java/lang/Thread.run
    Error getting package information: sun/applet
    com.ms.packagemanager.PackageManagerException: Package not
    ound
    at com/ms/packagemanager/PackageManager.getPackage
    at
    com/ms/security/SecurityClassLoader.getSecurityInfoFromPackage
    at
    com/ms/security/SecurityClassLoader.findPackageManagerClass
    at
    com/ms/security/SecurityClassLoader.findPackageManagerClass
    at com/ms/vm/loader/URLClassLoader.loadClass
    at java/lang/ClassLoader.loadClassInternal
    at oracle/forms/engine/Main.init
    at com/ms/applet/AppletPanel.securedCall0
    at com/ms/applet/AppletPanel.securedCall
    at com/ms/applet/AppletPanel.processSentEvent
    at com/ms/applet/AppletPanel.processSentEvent
    at com/ms/applet/AppletPanel.run
    at java/lang/Thread.run
    java.lang.ClassNotFoundException: sun.applet.AppletViewer
    at com/ms/vm/loader/URLClassLoader.loadClass
    at java/lang/ClassLoader.loadClassInternal
    at oracle/forms/engine/Main.init
    at com/ms/applet/AppletPanel.securedCall0
    at com/ms/applet/AppletPanel.securedCall
    at com/ms/applet/AppletPanel.processSentEvent
    at com/ms/applet/AppletPanel.processSentEvent
    at com/ms/applet/AppletPanel.run
    at java/lang/Thread.run
    what could be the problem have any one encountered this kind of
    problem.
    pls help required.
    mobeen
    null

    Dear OTN Members / Oracle Development Team.
    Have any one tried it. Help required form Oracle Devlopemnt
    Team.
    hi i am using oracle8 OAS 4.0.7, Developer 6.0 production
    with NT 4.0 and service Pack 3
    when i try to run the form through jinitinator or JDK provided
    with the package i get the following error.
    running with jinitator
    Oracle JInitiator version 1.1.7.11
    Using JRE version 1.1.7.11o
    User home directory = E:\WINNT\Profiles\Administrator
    Proxy Configuration: no proxy
    java.io.FileNotFoundException: \forms60\f60all.jar
    at java.io.FileInputStream.<init>(FileInputStream.java:56)
    at sun.net.www.protocol.file.FileURLConnection.connect(Compiled
    Code)
    at
    sun.net.www.protocol.file.FileURLConnection.getInputStream(FileUR
    LConnection.java:162)
    at
    sun.net.www.protocol.http.HttpURLConnection.openConnectionCheckRe
    directs(Compiled Code)
    at
    sun.applet.AppletCache.getInputStream(AppletCache.java:588)
    at
    sun.applet.AppletResourceLoader.loadJar(AppletResourceLoader.java
    171)
    at sun.applet.JinitAppletPanel.loadJarFiles(Compiled
    Code)
    at sun.plugin.AppletViewer.loadJarFiles(Compiled Code)
    at
    sun.applet.JinitAppletPanel.runLoader(JinitAppletPanel.java:500)
    at sun.applet.JinitAppletPanel.run(Compiled Code)
    at java.lang.Thread.run(Thread.java:466)
    and with JDK
    Microsoft (R) VM for Java, 5.0 Release 5.0.0.3165
    ==============================================
    ? help
    c clear
    f run finalizers
    g garbage collect
    m memory usage
    q quit
    t thread list
    ==============================================
    com.ms.security.SecurityExceptionEx[oracle/forms/engine/Main.init
    ]: cannot access file E:\WINNT\Java\.hotjava
    at com/ms/security/permissions/FileIOPermission.check
    at com/ms/security/PolicyEngine.deepCheck
    at com/ms/security/PolicyEngine.checkPermission
    at com/ms/security/StandardSecurityManager.chk
    at com/ms/security/StandardSecurityManager.checkRead
    at java/io/File.exists
    at java/io/File.mkdirs
    at sun/applet/AppletViewer.<clinit>
    at java/lang/ClassLoader.findSystemClass
    at com/ms/vm/loader/URLClassLoader.loadClass
    at java/lang/ClassLoader.loadClassInternal
    at oracle/forms/engine/Main.init
    at com/ms/applet/AppletPanel.securedCall0
    at com/ms/applet/AppletPanel.securedCall
    at com/ms/applet/AppletPanel.processSentEvent
    at com/ms/applet/AppletPanel.processSentEvent
    at com/ms/applet/AppletPanel.run
    at java/lang/Thread.run
    Error getting package information: sun/applet
    com.ms.packagemanager.PackageManagerException: Package not
    ound
    at com/ms/packagemanager/PackageManager.getPackage
    at
    com/ms/security/SecurityClassLoader.getSecurityInfoFromPackage
    at
    com/ms/security/SecurityClassLoader.findPackageManagerClass
    at
    com/ms/security/SecurityClassLoader.findPackageManagerClass
    at com/ms/vm/loader/URLClassLoader.loadClass
    at java/lang/ClassLoader.loadClassInternal
    at oracle/forms/engine/Main.init
    at com/ms/applet/AppletPanel.securedCall0
    at com/ms/applet/AppletPanel.securedCall
    at com/ms/applet/AppletPanel.processSentEvent
    at com/ms/applet/AppletPanel.processSentEvent
    at com/ms/applet/AppletPanel.run
    at java/lang/Thread.run
    java.lang.ClassNotFoundException: sun.applet.AppletViewer
    at com/ms/vm/loader/URLClassLoader.loadClass
    at java/lang/ClassLoader.loadClassInternal
    at oracle/forms/engine/Main.init
    at com/ms/applet/AppletPanel.securedCall0
    at com/ms/applet/AppletPanel.securedCall
    at com/ms/applet/AppletPanel.processSentEvent
    at com/ms/applet/AppletPanel.processSentEvent
    at com/ms/applet/AppletPanel.run
    at java/lang/Thread.run
    what could be the problem have any one encountered this kind of
    problem.
    pls help required.
    mobeen
    null

  • Java error when running Form in Web

    I've got the following message when I run form on web.
    java.lang.ClassNotFoundException: sun.applet.AppletViewer
    at com/ms/vm/loader/URLClassLoader.loadClass
    at java/lang/ClassLoader.loadClassInternal
    at oracle/forms/engine/Main.init
    at com/ms/applet/AppletPanel.securedCall0
    at com/ms/applet/AppletPanel.securedCall
    at com/ms/applet/AppletPanel.processSentEvent
    at com/ms/applet/AppletPanel.processSentEvent
    at com/ms/applet/AppletPanel.run
    at java/lang/Thread.run
    Is there any file missing when I setup my environment.
    Please help me.
    Regards,
    ET
    null

    Thank you very much otherwise I will waste a lot of time.
    Regards,
    ET
    Oracle Developer Team wrote:
    : ET (guest) wrote:
    : : I've got the following message when I run form on web.
    : : java.lang.ClassNotFoundException: sun.applet.AppletViewer
    : : at com/ms/vm/loader/URLClassLoader.loadClass
    : : at java/lang/ClassLoader.loadClassInternal
    : : at oracle/forms/engine/Main.init
    : : at com/ms/applet/AppletPanel.securedCall0
    : : at com/ms/applet/AppletPanel.securedCall
    : : at com/ms/applet/AppletPanel.processSentEvent
    : : at com/ms/applet/AppletPanel.processSentEvent
    : : at com/ms/applet/AppletPanel.run
    : : at java/lang/Thread.run
    : : Is there any file missing when I setup my environment.
    : : Please help me.
    : ET - this is a known bug with the 6.0.5.0.2 forms applet.
    This
    : bug has been fixed and will be available in patchset 2 due out
    : in August.
    : In the meantime a workaround is to put the classes.zip from
    the
    : standard JavaSoft JDK into the classpath on the client machine
    : or - unzip the classes.zip file into the virtual directory on
    : the server that you use as the CODEBASE parameter in the HTML
    : file.
    : There is a technical note that describes how to setup IE to
    run
    : Developer Server 6.0 applications on the OTN website. Check
    : this out for some more details.
    : - The Developer Team -
    : : Regards,
    : : ET
    null

  • Dev 6.0(Prod) web forms not running

    hi i am using oracle8 OAS 4.0.7, Developer 6.0 production
    with NT 4.0 and service Pack 3
    when i try to run the form through jinitinator or JDK provided
    with the package i get the following error.
    running with jinitator
    Oracle JInitiator version 1.1.7.11
    Using JRE version 1.1.7.11o
    User home directory = E:\WINNT\Profiles\Administrator
    Proxy Configuration: no proxy
    java.io.FileNotFoundException: \forms60\f60all.jar
    at
    java.io.FileInputStream.<init>(FileInputStream.java:56)
    at
    sun.net.www.protocol.file.FileURLConnection.connect(Compiled
    Code)
    at
    sun.net.www.protocol.file.FileURLConnection.getInputStream(FileUR
    LConnection.java:162)
    at
    sun.net.www.protocol.http.HttpURLConnection.openConnectionCheckRe
    directs(Compiled Code)
    at
    sun.applet.AppletCache.getInputStream(AppletCache.java:588)
    at
    sun.applet.AppletResourceLoader.loadJar(AppletResourceLoader.java
    :171)
    at sun.applet.JinitAppletPanel.loadJarFiles(Compiled
    Code)
    at sun.plugin.AppletViewer.loadJarFiles(Compiled Code)
    at
    sun.applet.JinitAppletPanel.runLoader(JinitAppletPanel.java:500)
    at sun.applet.JinitAppletPanel.run(Compiled Code)
    at java.lang.Thread.run(Thread.java:466)
    and with JDK
    Microsoft (R) VM for Java, 5.0 Release 5.0.0.3165
    ==============================================
    ? help
    c clear
    f run finalizers
    g garbage collect
    m memory usage
    q quit
    t thread list
    ==============================================
    com.ms.security.SecurityExceptionEx[oracle/forms/engine/Main.init
    ]: cannot access file E:\WINNT\Java\.hotjava
    at com/ms/security/permissions/FileIOPermission.check
    at com/ms/security/PolicyEngine.deepCheck
    at com/ms/security/PolicyEngine.checkPermission
    at com/ms/security/StandardSecurityManager.chk
    at com/ms/security/StandardSecurityManager.checkRead
    at java/io/File.exists
    at java/io/File.mkdirs
    at sun/applet/AppletViewer.<clinit>
    at java/lang/ClassLoader.findSystemClass
    at com/ms/vm/loader/URLClassLoader.loadClass
    at java/lang/ClassLoader.loadClassInternal
    at oracle/forms/engine/Main.init
    at com/ms/applet/AppletPanel.securedCall0
    at com/ms/applet/AppletPanel.securedCall
    at com/ms/applet/AppletPanel.processSentEvent
    at com/ms/applet/AppletPanel.processSentEvent
    at com/ms/applet/AppletPanel.run
    at java/lang/Thread.run
    Error getting package information: sun/applet
    com.ms.packagemanager.PackageManagerException: Package not found
    at com/ms/packagemanager/PackageManager.getPackage
    at
    com/ms/security/SecurityClassLoader.getSecurityInfoFromPackage
    at
    com/ms/security/SecurityClassLoader.findPackageManagerClass
    at
    com/ms/security/SecurityClassLoader.findPackageManagerClass
    at com/ms/vm/loader/URLClassLoader.loadClass
    at java/lang/ClassLoader.loadClassInternal
    at oracle/forms/engine/Main.init
    at com/ms/applet/AppletPanel.securedCall0
    at com/ms/applet/AppletPanel.securedCall
    at com/ms/applet/AppletPanel.processSentEvent
    at com/ms/applet/AppletPanel.processSentEvent
    at com/ms/applet/AppletPanel.run
    at java/lang/Thread.run
    java.lang.ClassNotFoundException: sun.applet.AppletViewer
    at com/ms/vm/loader/URLClassLoader.loadClass
    at java/lang/ClassLoader.loadClassInternal
    at oracle/forms/engine/Main.init
    at com/ms/applet/AppletPanel.securedCall0
    at com/ms/applet/AppletPanel.securedCall
    at com/ms/applet/AppletPanel.processSentEvent
    at com/ms/applet/AppletPanel.processSentEvent
    at com/ms/applet/AppletPanel.run
    at java/lang/Thread.run
    what could be the problem have any one encountered this kind of
    problem.
    mobeen.
    null

    mobeen (guest) wrote:
    : hi i am using oracle8 OAS 4.0.7, Developer 6.0 production
    : with NT 4.0 and service Pack 3
    : when i try to run the form through jinitinator or JDK provided
    : with the package i get the following error.
    : running with jinitator
    : Oracle JInitiator version 1.1.7.11
    : Using JRE version 1.1.7.11o
    : User home directory = E:\WINNT\Profiles\Administrator
    : Proxy Configuration: no proxy
    : java.io.FileNotFoundException: \forms60\f60all.jar
    : at
    : java.io.FileInputStream.<init>(FileInputStream.java:56)
    : at
    : sun.net.www.protocol.file.FileURLConnection.connect(Compiled
    : Code)
    : at
    sun.net.www.protocol.file.FileURLConnection.getInputStream(FileUR
    : LConnection.java:162)
    : at
    sun.net.www.protocol.http.HttpURLConnection.openConnectionCheckRe
    : directs(Compiled Code)
    : at
    : sun.applet.AppletCache.getInputStream(AppletCache.java:588)
    : at
    sun.applet.AppletResourceLoader.loadJar(AppletResourceLoader.java
    : :171)
    : at sun.applet.JinitAppletPanel.loadJarFiles(Compiled
    : Code)
    : at sun.plugin.AppletViewer.loadJarFiles(Compiled Code)
    : at
    sun.applet.JinitAppletPanel.runLoader(JinitAppletPanel.java:500)
    : at sun.applet.JinitAppletPanel.run(Compiled Code)
    : at java.lang.Thread.run(Thread.java:466)
    : and with JDK
    : Microsoft (R) VM for Java, 5.0 Release 5.0.0.3165
    : ==============================================
    : ? help
    : c clear
    : f run finalizers
    : g garbage collect
    : m memory usage
    : q quit
    : t thread list
    : ==============================================
    com.ms.security.SecurityExceptionEx[oracle/forms/engine/Main.init
    : ]: cannot access file E:\WINNT\Java\.hotjava
    : at com/ms/security/permissions/FileIOPermission.check
    : at com/ms/security/PolicyEngine.deepCheck
    : at com/ms/security/PolicyEngine.checkPermission
    : at com/ms/security/StandardSecurityManager.chk
    : at com/ms/security/StandardSecurityManager.checkRead
    : at java/io/File.exists
    : at java/io/File.mkdirs
    : at sun/applet/AppletViewer.<clinit>
    : at java/lang/ClassLoader.findSystemClass
    : at com/ms/vm/loader/URLClassLoader.loadClass
    : at java/lang/ClassLoader.loadClassInternal
    : at oracle/forms/engine/Main.init
    : at com/ms/applet/AppletPanel.securedCall0
    : at com/ms/applet/AppletPanel.securedCall
    : at com/ms/applet/AppletPanel.processSentEvent
    : at com/ms/applet/AppletPanel.processSentEvent
    : at com/ms/applet/AppletPanel.run
    : at java/lang/Thread.run
    : Error getting package information: sun/applet
    : com.ms.packagemanager.PackageManagerException: Package not
    found
    : at com/ms/packagemanager/PackageManager.getPackage
    : at
    : com/ms/security/SecurityClassLoader.getSecurityInfoFromPackage
    : at
    : com/ms/security/SecurityClassLoader.findPackageManagerClass
    : at
    : com/ms/security/SecurityClassLoader.findPackageManagerClass
    : at com/ms/vm/loader/URLClassLoader.loadClass
    : at java/lang/ClassLoader.loadClassInternal
    : at oracle/forms/engine/Main.init
    : at com/ms/applet/AppletPanel.securedCall0
    : at com/ms/applet/AppletPanel.securedCall
    : at com/ms/applet/AppletPanel.processSentEvent
    : at com/ms/applet/AppletPanel.processSentEvent
    : at com/ms/applet/AppletPanel.run
    : at java/lang/Thread.run
    : java.lang.ClassNotFoundException: sun.applet.AppletViewer
    : at com/ms/vm/loader/URLClassLoader.loadClass
    : at java/lang/ClassLoader.loadClassInternal
    : at oracle/forms/engine/Main.init
    : at com/ms/applet/AppletPanel.securedCall0
    : at com/ms/applet/AppletPanel.securedCall
    : at com/ms/applet/AppletPanel.processSentEvent
    : at com/ms/applet/AppletPanel.processSentEvent
    : at com/ms/applet/AppletPanel.run
    : at java/lang/Thread.run
    : what could be the problem have any one encountered this kind of
    : problem.
    : mobeen.
    Morbeen,
    There is a document than helps a lot in
    \orant\tools\devdem60\web\readmem.ht. I have exacly the same
    environment and it worked fine with jinitiator (a little bit
    slow) and following this Cookbook.
    Regards,
    Rogerio
    null

  • Missing .class ffiles MX7

    CFtree, etc java applets not working.. throw this error..
    what files am I missing on my cf install?
    It works fine on my other CFMX7 install..
    TIA,
    Mark Holm
    Java Plug-in 1.5.0_06
    Using JRE version 1.5.0_06 Java HotSpot(TM) Client VM
    User home directory = C:\Documents and Settings\mholm
    c: clear console window
    f: finalize objects on finalization queue
    g: garbage collect
    h: display this help message
    l: dump classloader list
    m: print memory usage
    o: trigger logging
    p: reload proxy configuration
    q: hide console
    r: reload policy configuration
    s: dump system and deployment properties
    t: dump thread list
    v: dump thread stack
    x: clear classloader cache
    0-5: set trace level to <n>
    dreaming = false
    java.lang.InterruptedException: sleep interrupted
    load: class coldfusion.applets.CFTreeApplet.class not found.
    java.lang.ClassNotFoundException:
    coldfusion.applets.CFTreeApplet.class
    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
    load: class coldfusion.applets.CFTreeApplet.class not found.
    java.lang.ClassNotFoundException:
    coldfusion.applets.CFTreeApplet.class
    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
    load: class coldfusion.applets.CFTreeApplet.class not found.
    java.lang.ClassNotFoundException:
    coldfusion.applets.CFTreeApplet.class
    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
    load: class coldfusion.applets.CFTreeApplet.class not found.
    java.lang.ClassNotFoundException:
    coldfusion.applets.CFTreeApplet.class
    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
    Exception in thread "Thread-164"
    java.lang.NullPointerException
    at sun.plugin.util.GrayBoxPainter.showLoadingError(Unknown
    Source)
    at sun.plugin.AppletViewer.showAppletException(Unknown
    Source)
    at sun.applet.AppletPanel.runLoader(Unknown Source)
    at sun.applet.AppletPanel.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    java.lang.NullPointerException
    at sun.plugin.util.GrayBoxPainter.showLoadingError(Unknown
    Source)
    at sun.plugin.AppletViewer.showAppletStatus(Unknown Source)
    at sun.applet.AppletPanel.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    Exception in thread "thread
    applet-coldfusion.applets.CFTreeApplet.class"
    java.lang.NullPointerException
    at sun.plugin.util.GrayBoxPainter.showLoadingError(Unknown
    Source)
    at sun.plugin.AppletViewer.showAppletException(Unknown
    Source)
    at sun.applet.AppletPanel.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    load: class coldfusion.applets.CFTreeApplet.class not found.
    java.lang.ClassNotFoundException:
    coldfusion.applets.CFTreeApplet.class
    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
    Exception in thread "Thread-168"
    java.lang.NullPointerException
    at sun.plugin.util.GrayBoxPainter.showLoadingError(Unknown
    Source)
    at sun.plugin.AppletViewer.showAppletException(Unknown
    Source)
    at sun.applet.AppletPanel.runLoader(Unknown Source)
    at sun.applet.AppletPanel.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    load: class coldfusion.applets.CFTreeApplet.class not found.
    java.lang.ClassNotFoundException:
    coldfusion.applets.CFTreeApplet.class
    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

    compare your /CFIDE/classes/ directories with the one that
    works.
    hth
    Tim Carley
    www.recfusion.com
    [email protected]
    Yes, that's what I though too.. review shows the same files.
    Even tried replacing the classes dir with the one form the
    correctly working install .. no change

  • Java error when running fmx using appletviewer

    "java.util.MissingResourceException: can't find resource for
    oracle.ewt.alert.resource.AlertBundle_en_US"
    such an error appears when trying:
    appletviewer file:d:\wwwroot\form60code\static.htmlnull

    Thank you very much otherwise I will waste a lot of time.
    Regards,
    ET
    Oracle Developer Team wrote:
    : ET (guest) wrote:
    : : I've got the following message when I run form on web.
    : : java.lang.ClassNotFoundException: sun.applet.AppletViewer
    : : at com/ms/vm/loader/URLClassLoader.loadClass
    : : at java/lang/ClassLoader.loadClassInternal
    : : at oracle/forms/engine/Main.init
    : : at com/ms/applet/AppletPanel.securedCall0
    : : at com/ms/applet/AppletPanel.securedCall
    : : at com/ms/applet/AppletPanel.processSentEvent
    : : at com/ms/applet/AppletPanel.processSentEvent
    : : at com/ms/applet/AppletPanel.run
    : : at java/lang/Thread.run
    : : Is there any file missing when I setup my environment.
    : : Please help me.
    : ET - this is a known bug with the 6.0.5.0.2 forms applet.
    This
    : bug has been fixed and will be available in patchset 2 due out
    : in August.
    : In the meantime a workaround is to put the classes.zip from
    the
    : standard JavaSoft JDK into the classpath on the client machine
    : or - unzip the classes.zip file into the virtual directory on
    : the server that you use as the CODEBASE parameter in the HTML
    : file.
    : There is a technical note that describes how to setup IE to
    run
    : Developer Server 6.0 applications on the OTN website. Check
    : this out for some more details.
    : - The Developer Team -
    : : Regards,
    : : ET
    null

  • Coldfusion certificate issue

    I have a working site and I am in the process of creating a
    backup site.
    My backup site domain anem is backupcompany.com where as I
    bought the SSL for company.com. The coldfusion works fine for
    couple of screens but it does not work for CFGRID, when I see the
    view source i can see data, but the control comes with an error
    messgae
    load: class coldfusion.applets.CFGridApplet.class not found.
    java.lang.ClassNotFoundException:
    coldfusion.applets.CFGridApplet.class
    AND
    Caused by: java.io.IOException: open HTTP connection failed.
    Need Help

    Are you forcing SSL on your servers but having your code call
    with only HTTP? Maybe? Are your CF servers behind any SSL
    accelerators?

  • Urgent :Dev 6.0 Developement Team Forms error

    Help required form Oracle Devlopemnt Team.
    hi i am using oracle8 OAS 4.0.7, Developer 6.0 production
    with NT 4.0 and service Pack 3
    when i try to run the form through jinitinator or JDK provided
    with the package i get the following error. running with
    jinitator Ihave tried using earlier version of JDK its show the
    same problem.
    Oracle JInitiator version 1.1.7.11
    Using JRE version 1.1.7.11o
    User home directory = E:\WINNT\Profiles\Administrator
    Proxy Configuration: no proxy
    java.io.FileNotFoundException: \forms60\f60all.jar
    at java.io.FileInputStream.<init>(FileInputStream.java:56)
    at sun.net.www.protocol.file.FileURLConnection.connect(Compiled
    Code)
    at
    sun.net.www.protocol.file.FileURLConnection.getInputStream(FileUR
    LConnection.java:162)
    at
    sun.net.www.protocol.http.HttpURLConnection.openConnectionCheckRe
    directs(Compiled Code)
    at
    sun.applet.AppletCache.getInputStream(AppletCache.java:588)
    at
    sun.applet.AppletResourceLoader.loadJar(AppletResourceLoader.java
    171)
    at sun.applet.JinitAppletPanel.loadJarFiles(Compiled Code)
    at sun.plugin.AppletViewer.loadJarFiles(Compiled Code)
    at
    sun.applet.JinitAppletPanel.runLoader(JinitAppletPanel.java:500)
    at sun.applet.JinitAppletPanel.run(Compiled Code)
    at java.lang.Thread.run(Thread.java:466)
    and with JDK through Explorer i get the following errors
    Microsoft (R) VM for Java, 5.0 Release 5.0.0.3165
    ==============================================
    ? help
    c clear
    f run finalizers
    g garbage collect
    m memory usage
    q quit
    t thread list
    ==============================================
    com.ms.security.SecurityExceptionEx[oracle/forms/engine/Main.init
    ]: cannot access file E:\WINNT\Java\.hotjava
    at com/ms/security/permissions/FileIOPermission.check
    at com/ms/security/PolicyEngine.deepCheck
    at com/ms/security/PolicyEngine.checkPermission
    at com/ms/security/StandardSecurityManager.chk
    at com/ms/security/StandardSecurityManager.checkRead
    at java/io/File.exists
    at java/io/File.mkdirs
    at sun/applet/AppletViewer.<clinit>
    at java/lang/ClassLoader.findSystemClass
    at com/ms/vm/loader/URLClassLoader.loadClass
    at java/lang/ClassLoader.loadClassInternal
    at oracle/forms/engine/Main.init
    at com/ms/applet/AppletPanel.securedCall0
    at com/ms/applet/AppletPanel.securedCall
    at com/ms/applet/AppletPanel.processSentEvent
    at com/ms/applet/AppletPanel.processSentEvent
    at com/ms/applet/AppletPanel.run
    at java/lang/Thread.run
    Error getting package information: sun/applet
    com.ms.packagemanager.PackageManagerException: Package not
    ound
    at com/ms/packagemanager/PackageManager.getPackage
    at
    com/ms/security/SecurityClassLoader.getSecurityInfoFromPackage
    at
    com/ms/security/SecurityClassLoader.findPackageManagerClass
    at
    com/ms/security/SecurityClassLoader.findPackageManagerClass
    at com/ms/vm/loader/URLClassLoader.loadClass
    at java/lang/ClassLoader.loadClassInternal
    at oracle/forms/engine/Main.init
    at com/ms/applet/AppletPanel.securedCall0
    at com/ms/applet/AppletPanel.securedCall
    at com/ms/applet/AppletPanel.processSentEvent
    at com/ms/applet/AppletPanel.processSentEvent
    at com/ms/applet/AppletPanel.run
    at java/lang/Thread.run
    java.lang.ClassNotFoundException: sun.applet.AppletViewer
    at com/ms/vm/loader/URLClassLoader.loadClass
    at java/lang/ClassLoader.loadClassInternal
    at oracle/forms/engine/Main.init
    at com/ms/applet/AppletPanel.securedCall0
    at com/ms/applet/AppletPanel.securedCall
    at com/ms/applet/AppletPanel.processSentEvent
    at com/ms/applet/AppletPanel.processSentEvent
    at com/ms/applet/AppletPanel.run
    at java/lang/Thread.run
    what could be the problem pls urgent help is required.
    mobeen
    null

    Mohammed Moizuddin (guest) wrote:
    : Mobeen (guest) wrote:
    : : Help required form Oracle Devlopemnt Team.
    : : hi i am using oracle8 OAS 4.0.7, Developer 6.0 production
    : : with NT 4.0 and service Pack 3
    : : when i try to run the form through jinitinator or JDK
    : provided
    : : with the package i get the following error. running with
    : : jinitator Ihave tried using earlier version of JDK its show
    : the
    : : same problem.
    : : Oracle JInitiator version 1.1.7.11
    : : Using JRE version 1.1.7.11o
    : : User home directory = E:\WINNT\Profiles\Administrator
    : : Proxy Configuration: no proxy
    : : java.io.FileNotFoundException: \forms60\f60all.jar
    : : what could be the problem pls urgent help is required.
    : : mobeen
    : The "Exception" being thrown by Java shows that you have not
    : specified proper path for the JAR Archives. The path must be
    : drive:\oracle_home\forms60\java
    : Hope this will solve your problem.
    : Regards
    : Moiz
    Thank you for the reply where do i have to set this jar Archives
    path. the parameters working fine with earlier and beta version
    of Dev 6.0
    the static file i am using is
    <html>
    <head>
    <meta http-equiv="Content-Type"
    content="text/html; charset=iso-8859-1">
    <meta name="GENERATOR" content="Microsoft FrontPage Express 2.0">
    <title>Developer/2000 for the Web</title>
    <!-- FILE: cartridg.html -->
    <!-- Oracle Cartridge HTML File Template (Windows NT) -->
    <!-- Rename, and modify tags and parameter values as needed -->
    </head>
    <body>
    <applet code="oracle.forms.engine.Main"
    codebase="http://ant.132.147.163.1/forms60/" align="baseline"
    width="767" height="494"
    archive="http://ant.132.147.163.1/forms60/f60all.jar"><param
    name="serverApp" value="app"><param name="serverArgs"
    value="module=c:\citi4\master.fmx"><param name="serverPort"
    value="9000">Please use Java Supported Browser</applet> <!--
    applet definition (end) --></p>
    </body>
    </html>
    the /forms60/ points to physical directory e:\oarnt\forms60\java
    which is correct.
    any other ideas
    mobeen
    null

  • CFApplets seem to not be installed

    I am currently moving a legacy application from CF7 to CF9. One trouble I'm having is with the cfgrid tag. The applet is failing. To ensure that this is a problem with my server setup and not the applicaiton I created a test case:
    <cfquery datasource="user" name="users">
    select  *
    from    Main_Users
    order by lastname, firstname
    </cfquery>
    <div style="background-color:yellow" >
    <h3>cfgrid Example</h3>
    <i>Currently available courses</i>
    <!--- cfgrid must be inside a cfform tag. --->
    <cfform>
        <cfgrid
            query="users"
            name="urupdating">
        </cfgrid>
    </cfform>
    </div>
    The java applet fails and when I click it for more details I get:
    load: class coldfusion.applets.CFGridApplet.class not found.
    java.lang.ClassNotFoundException: coldfusion.applets.CFGridApplet.class
         at sun.plugin2.applet.Applet2ClassLoader.findClass(Applet2ClassLoader.java:252)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass0(Plugin2ClassLoader.java:250)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Plugin2ClassLoader.java:180)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Plugin2ClassLoader.java:161)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
         at sun.plugin2.applet.Plugin2ClassLoader.loadCode(Plugin2ClassLoader.java:687)
         at sun.plugin2.applet.Plugin2Manager.createApplet(Plugin2Manager.java:3046)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Plugin2Manager.java:1498)
         at java.lang.Thread.run(Thread.java:680)
    Exception: java.lang.ClassNotFoundException: coldfusion.applets.CFGridApplet.class
    Seems like I don't even have this part of CF installed. I've compared the Extenstions from the working CFAdmin to my own and don't see anything missing. If this is something internal to the installation I haven't been able to find any clues to installing it. Checking the documentation indicates that I don't need to intsall anything further.

    I can access that .jar file through the URL -
    Admin is : ApplicationName:8307/CFIDE/administrator/index.cfm
    Jar file is : ApplicationName:8307/CFIDE/classes/cfapplets.jar
    The problem is that CF is attempting to access that jar file through /CFIDE/classes/cfapplets.jar. Whithout specify the Application Name and port. Looking at the CFGrid documentation I dont' see  a way to specify those things. The first half of the rendered tag is:
    <embed type="application/x-java-applet;version=1.3" pluginspage="http://java.sun.com/j2se/1.3/jre/index.html" code="coldfusion.applets.CFGridApplet.class" archive="/CFIDE/classes/cfapplets.jar" mayscript="true" width="300" height="300" autowidth="false" .....
    So without being able to configure the archive tag I found that I could copy the CFIDE directory and place it in the applications webroot. Removing all other directories but Classes I can now get the CFGRID tag to work.

  • Components in a JApplet

    im not so sure if i should use a layout or anything, but basicly what i have is a JApplet, and i want to put text fields so that they are aligned in the center at the bottom. i want to add 6 components the the bottom and reserve the top portion of my applet for drawing. i want a 3 text fields and a JLabel for each and im having two problems setting this up.
    1: i cannot get them on the bottom(the are created in the top center(with default layout)
    2: after the applet is constructed and the fields and whatnot added, the Textfields wont show unless you click on where they are supposed to be(or you press tab while in one of the other text fields. after the textfields are shown for the first time i have no problems after this.
    can anyone possibly suggest a solution to what i might be doing wrong?

    this is my constructor and init methods
    public class ThreeD extends JApplet implements MouseMotionListener, ActionListener, MouseListener
         private int windowWidth;
         private int windowHeight;
         private JTextField xval;
         private JTextField yval;
         private JTextField zval;
         public ThreeD(int width, int height)
              windowWidth = width;
              windowHeight = height;
              JFrame f = new JFrame("Window");//create new window
            f.addWindowListener(new WindowAdapter() {
                public void windowClosing(WindowEvent e) {System.exit(0);}//add a window listener
            this.setLayout(new BorderLayout());
            JPanel InfoPanel1 = new JPanel(new BorderLayout());
              JPanel InfoPanel2 = new JPanel(new GridLayout(1,6));//textfields
              JPanel InfoPanel3 = new JPanel(new BorderLayout());
              xval = new JTextField(4);
            yval = new JTextField(4);
            zval = new JTextField(4);
            xval.addActionListener(this);
            yval.addActionListener(this);
            zval.addActionListener(this);
            JLabel xtext = new JLabel("X:");
            JLabel ytext = new JLabel("Y:");
            JLabel ztext = new JLabel("Z:");
            xval.addActionListener(this);
            yval.addActionListener(this);
            zval.addActionListener(this);
              InfoPanel2.add(xtext);
              InfoPanel2.add(xval);
              InfoPanel2.add(ytext);
              InfoPanel2.add(yval);
              InfoPanel2.add(ztext);
              InfoPanel2.add(zval);
              JPanel bottomPanel = new JPanel(new GridLayout(1,3));
              bottomPanel.add(InfoPanel1);
              bottomPanel.add(InfoPanel2);
              bottomPanel.add(InfoPanel3);
              add(bottomPanel,BorderLayout.SOUTH);
              f.getContentPane().add(this,0);
              getContentPane().validate();
              f.pack();
            f.setSize(new Dimension(getWindowWidth(),(getWindowHeight())));//set the window size
            f.show();
              init();
         public void init()
              addMouseListener(this);
                addMouseMotionListener(this);
              setBackground(Color.BLACK);
            setForeground(Color.WHITE);
         my action listeners that are currently set to help me test this appletpublic void actionPerformed(ActionEvent e)
         public void mouseExited(MouseEvent e)
         {repaint();}
         public void mouseEntered(MouseEvent e)
         {repaint();}
         public void mouseReleased(MouseEvent e)
         {repaint();}
         public void mousePressed(MouseEvent e)
         {repaint();}
         public void mouseClicked(MouseEvent e)
         {repaint();}
         public void mouseMoved(MouseEvent e)
              System.out.println(e.getX() + " " +e.getY());
              repaint();}
         public void mouseDragged(MouseEvent e)
         {repaint();}paint and update     public void paint(Graphics g)
              System.out.println("Paint " + num);
              Graphics2D g2 = (Graphics2D)g;
              g2.setPaint(Color.BLACK);
              g2.fill(new Rectangle2D.Double(99,90,120,101));//repaints the backround
              g2.setPaint(Color.WHITE);
              g2.drawString(""+num, 100,100);
              num++;
         public void update(Graphics g)
              paint(g);
         and main
    public static void main(String[] args) throws IOException , ClassNotFoundException
              JApplet applet = new ThreeD(1000,700, Objects1);
    }note:not all code shown(just code that i think helps create and draw the applet)

  • CFGRID 6.1 on Linux not working

    I am getting the following error in my browser when running a
    page with CFGRID on it.
    The server is running CF 6.1 with Linux.
    Thanks!
    David Ross
    load: class coldfusion.applets.CFGridApplet.class not found.
    java.lang.ClassNotFoundException:
    coldfusion.applets.CFGridApplet.class
    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

    I still have a segmentation fault problem with sqlplus!!! But the only thing you have to do for svrmgrl and the other command is the mv the svrmgrlO file on to the svrmgrl file then you create you DB object in the installation mode and it's working. After that, you can start and stop your DB with svrmgrl... The only problem is that sqlplus is always segm'faulting and dumping cores, that's realy not good. I don't know at that point what to do with it, because I didn't have any sqlplusO to use instead!

Maybe you are looking for

  • Security on Cost Center

    hi gurus i have a situation in which i have like 60 plus users every one has authorization to different set of Cost centers. now how can i accopmlish that. secondly suppose they run a report with a Cost Center Hierarchy with lots of cost centers at d

  • Spotlight does NOT find iPhoto keywords

    Hi, maybe you guys can help me. Spotlight does not find any of my iPhotos attached with keywords. My System is: Mac OS 10.4.4 and iPhoto 6 (5 did not work either). This is what I have tried so far: - repaired permissions more then once - rebuilt the

  • Sort order changes when adding a phonetic last name?

    I have my contacts sorted and displayed by first name. If I add a phonetic last name to a contact, it changes the order of that person to the top of list. Why wouldn't it leave them in the first name alphabetic order?

  • Parse String, split into rows

    I have a report who has the following output: MODEL    PO No   RR No  RR Date,     PartNo           Part Description,              Qty Received   Lot No             DR No.    DR Date      QB3-DLX  150     100455  3/16/2011   657712S400   ROD HOOD SUP

  • Please help! Need to re-install earlier version of QT than 7.4.5

    Hello and thanks to anyone who can help. Recently I updated to QT 7.4.5 but I did not realize it would disable a very important function of a program I use called Toon Boom. It's an animation software similar to Flash. When you update to QT 7.45 it d