Incompatible magic value

I have developed an applet, I execute it from a PHP file and I get the following error:
java.lang.ClassFormatError: Incompatible magic value 1013084704 in class file MyApplet/class
     at java.lang.ClassLoader.defineClass1(Native Method)
     at java.lang.ClassLoader.defineClassCond(Unknown Source)
     at java.lang.ClassLoader.defineClass(Unknown Source)
     at java.security.SecureClassLoader.defineClass(Unknown Source)
     at sun.plugin2.applet.Applet2ClassLoader.findClass(Unknown Source)
     at sun.plugin2.applet.Plugin2ClassLoader.loadClass0(Unknown Source)
     at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
     at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
     at java.lang.ClassLoader.loadClass(Unknown Source)
     at sun.plugin2.applet.Plugin2ClassLoader.loadCode(Unknown Source)
     at sun.plugin2.applet.Plugin2Manager.createApplet(Unknown Source)
     at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
     at java.lang.Thread.run(Unknown Source)
Excepción: java.lang.ClassFormatError: Incompatible magic value 1013084704 in class file MyApplet/class
I have looked for information in the web, but I haven't get any useful solution in it. I need some help?
Dani

tschodt wrote:
805978 wrote:
java.lang.ClassFormatError: Incompatible magic value 1013084704 in class file MyApplet/class1013084704 decimal is
3c627220 hexadecimal
viewed as text looks like
"<br " { '&lt;'(&amp;lt;), 'b', 'r', ' '(space) }
and it should have been
3405691582 decimal is
cafebabe hexadecimal
805978 wrote:I don't understand what you want to say. I have to make some changes? Where?I am saying when the Java VM reads MyApplet.class
it expects a byte stream starting with { 0xca, 0xfe, 0xba, 0xbe, ... }
but it gets a byte stream starting with { '&lt;'(&amp;lt;), 'b', 'r', ' '(space), ... }
To fix it you first have to find out why the Java VM is failing to read your class file.

Similar Messages

  • Incompatible magic value error Incompatible magic value 1013478509?

    Hi All,
    I am using applets in my adf application,
    Its running fine in my local, But after deploying in the server it gives error Incompatible magic value 1013478509
    java.lang.ClassFormatError: Incompatible magic value 1013478509
    Note : I have checked the java versions and deleted the temp files in java also..
    How to solve this issue ?
    Thanks,
    Gopinath J

    As this is no jdev problem, my friend google might help you. I my case the problem was a security filter which did not allow to send the applet class but instead send a friendly message (in html) to let me know that I'm going to jail if I try this again ;-)
    @john: after years of only dealing with binary values I reached the next of the 36 chambers...
    Timo

  • Incompatible magic value, removed filters issue

    Hello all,
    Some time ago, I had this problem with using applets in ADF web application which was solved by removing trinidad filter, as someone posted it on this forum.
    Now I have this situation where I need trinidad in web.xml for file upload. File upload is messed up when this filter are out - the whole page refreshes, open menus are being closed, there is no message when file upload is completed etc.
    I tried using or adfFaces filter instead of trinidad, but behavior is the same.
    Is there anyone who had similar situation?
    Greetings,
    Jelena

    In reply to myself, I found the [http://www.oracle.com/technetwork/developer-tools/adf/learnmore/71-adf-to-applet-communication-307672.pdf] and actually read it to the end... Thanks Frank, a million thanks!!! Problem was in path to jar file... Applet does work with trinidad, after all...

  • Applet is not shown when viewing in liferay portal (magic value error)

    Hi A,
    When i am viewing applet in a portlet in liferay portal it is giving me following error..
    java.lang.ClassFormatError: Incompatible magic value 218762506 in class file html/portlet/kale/Scribble
         at java.lang.ClassLoader.defineClass1(Native Method)
         at java.lang.ClassLoader.defineClass(Unknown Source)
         at java.security.SecureClassLoader.defineClass(Unknown Source)
         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)
    Pls let me know in case any one knows abt this?
    Regards,
    Neeraj.

    Assuming you are talking about http://www.liferay.com/ I think either they serve
    the applet the wrong way and the jre gets a garbage class or jar file.
    Or you are using a meddling proxy that messes up the class, proxy's can check
    script, classes and other stuff for security reasons and change them accordingly.
    Try to open the .class or jar file in your browser (download) and open it with a text
    editor if the proxy did something it might send you a message in clear text instead
    of the class file.

  • Magic Values - A Question of Development Approach

    Hello folks,
    I have a question for you PL/SQ developers out there. This isn't a specific problem or query I'm raising here, more a question of general approach. I'm probably not using the correct terms here so forgive me. Also, I've already posted this in the ApEx forum, however there's a degree of overlap into pure PL/SQL so I thought you were all bound to have experience of something along the same lines.
    Anyhoo...
    How to deal with Magic values - i.e. values which hold no intrinsic value in and of themselves, other than for state, process or conditional logic control. I use them quite a lot in my PL/SQL code (as I'm sure most developers do in one context or another).
    From a Data architecture perspective, I'll generally have some sort of table for storing the 'facts': names, addresses etc, etc. Any application-specific magic values ('status', 'type') will be held as a foreign key in this table, which will reference a form of lookup table.
    Example:
    EMOTION
    ID   Description
    ==   ===========
    1    HAPPY
    2    SAD
    3    NEUTRAL
    PERSON
    NAME ... EMOTIONAL_STATE
    ====       ===============
    BILL       1
    JERRY    1
    BRIAN      3
    DONNA    2So far, so banal...
    Now, say I have a process that needs to reference someone's emotional state for some sort of conditional logic:
    declare
       n_estate number;
    begin
       select emotional_state into n_estate
         from Person
        where name = 'BILL';
       case when v_state = 1 then
          -- do something
       case when v_state = 2 then 
          -- do something else
       else
          -- otherwise something else again
    end case;
    end;straight away your bad code radar should be going crazy: you're coding literals in there! So, the old java programmer in me wants to store these as constants - I'll generally square them away inside a package somewhere, like so:
    create or replace package PKG_CONSTANTS as
       ES_HAPPY constant number:= 1;
       ES_SAD constant number := 2;
       ES_NEUTRAL constant number := 3;
    end PKG_CONSTANTS;Thus the code becomes
    Case when v_state = PKG_CONSTANTS.ES_HAPPY then ...Herein lies the crux of the issue. I'm effectively defining the same value twice: once in the lookup table (for data integrity) and once in the package. If new values are defined (say "Existential Ennui") or existing values are changed, I need to make sure the two are aligned, which hinders maintainability.
    I thought about initialising the values as sort of pseudo-constants in the package initialise code but then you end up replacing one literal with another; you end up with code like:
    create or replace package PKG_CONSTANTS as
       ES_HAPPY number;
       ES_SAD constant number;
       ES_NEUTRAL constant number;
    end PKG_CONSTANTS;
    create or replace package body PKG_CONSTANTS as 
       rf_curs sys_refcursor;
    begin
       for rf_curs in
          select ID
                 ,description
            from EMOTIONAL_STATE;
       loop
          case description
          when 'HAPPY' then
             ES_HAPPY := ID;
          when 'SAD' then
             ES_SAD := ID;
          when 'NEUTRAL' then
             ES_NEUTRAL := ID;
          else
             null;
          end case;
       end loop;
    end PKG_CONSTANTS;I also thought about using dynamic PL/SQL to re-write and recompile the constants package in the event of a value being changed in the lookup table...seems like quite a lot of work, given that the magic value is pretty much meaningless outside of the scope of the application.
    So... how to deal with this? What approach to you take? Does data integrity over-ride application programming style?
    Any contributions would be welcome!

    Hello,
    I had a look through the article (8 year's worth of thread? Sheesh that's dedication!) and yet it doesn't quite express exactly what I'm meaning. The argument there appears to be between dynamic SQL with bind variables versus static SQL. I'm not talking dynamically building queries or the use of bind variablers per se - its more related to how one makes use of magic values within the context of conditional logic and application code.
    The example I chose happened to use a case statement, which maybe blurs the line with the syntax of pure SQL query and perhaps why you thought I was going down the dynamic SQL route, but I could just have easily replaced them with a series of 'if elsif else end' type expressions.
    From an application developer point of view, the mantra of 'abstraction through constants' is the norm - referencing literals in expressions is generally frowned upon, with the possible exception of special numbers such as 1 or 0 (for incrementing counters, referring to the start of arrays etc, etc). One only has to look at the work of Feuerstein to see this - time and again in his books, the concept of delegating constant values (and subtypes) to well-defined areas (the "Single Source of Truth") rears it's head.
    Now in the Oracle world, data architecture generally has primacy, which in this case manifests itself as the use of foreign keys in data tables referencing the equivalent lookups (dimensional modelling, star diagrams and the rest) - thus even special, application-specific values, i.e. with no intrinsic value in the real world, end up in your ERD. There appears to be a bit difference of opinon, depending on the background of the developer.
    Hence my question - how do you, as developers, deal with these sorts of situations?

  • ERROR - 1073807178 Incompatible bcdUSB value (expected 0x110 or greater)

    Hi Guys
    I am trying to control R&S®NRP-Z23 with PyVISA but the device cannot be detected by PyVISA. However when I check it in NI-MAX it shows the device is there but it  is shown as Miscellaneous VISA Resources. And then I found it in VISA driver wizard. When I was trying to install the driver the following msg popped out:
    Incompatible bcdUSB value (expected 0x110 or greater)
    I have checked a similiar message in this forum and tried everything I can but it didn't work. I am a new guy in controlling equipment with python and I really need you guys to help me out. 
    Thanks!!

    Peixiang wrote:
    Hi Guys
    I am trying to control R&S®NRP-Z23 with PyVISA but the device cannot be detected by PyVISA. However when I check it in NI-MAX it shows the device is there but it  is shown as Miscellaneous VISA Resources. And then I found it in VISA driver wizard. When I was trying to install the driver the following msg popped out:
    Incompatible bcdUSB value (expected 0x110 or greater)
    I have checked a similiar message in this forum and tried everything I can but it didn't work. I am a new guy in controlling equipment with python and I really need you guys to help me out. 
    Thanks!!
    Since you are using non-NI products, what makes you expect support here on a NI forum?
    Contact the people who wrote PyVISA.

  • Invalid MAGIC number in jar file

    HI Gentlemen,
    I just compiled a java file into a class file and then set up a jar file with that one single class. Manifest indicates that the Java version is 1.7.0 as is any other development tool. Now I am inspecting the file with my hex editor and it does not contain CAFEBABE as a magic number. However, a legacy jar file in an Applet sample code has it and works correctly. It was as well with my JDK 1.7.0 compiled. What can be wrong with my method? JDeveloper does not accept the jar when I want to deploy and call the applet.
    Please help if you can.
    Many thanks in advance, kindly regards
    Miklos HERBOLY

    HI gimbal2,
    Thank you for your reply. Just to start with, I included here some stuff.
    (i) JDeveloper parameters
    About
    Oracle JDeveloper 11g Release 1 11.1.1.6.0
    Studio Edition Version 11.1.1.6.0
    Build JDEVADF_11.1.1.6.0_GENERIC_111205.1733.6192.1
    Copyright © 1997, 2011 Oracle and/or its affiliates. All rights reserved.
    IDE Version: 11.1.1.6.38.61.92
    Product ID: oracle.jdeveloper
    Product Version: 11.1.1.6.38.61.92
    Version
    Component     Version
    =========     =======
    ADF Business Components     11.1.1.61.92
    Java(TM) Platform     1.7.0
    Oracle IDE     11.1.1.6.38.61.92
    Versioning Support     11.1.1.6.38.61.92
    Properties
    Name     Value
    ====     =====
    awt.toolkit     sun.awt.windows.WToolkit
    ceditor.java.parse.large     1500
    ceditor.java.parse.small     300
    class.load.environment     oracle.ide.boot.IdeClassLoadEnvironment
    class.load.log.level     CONFIG
    class.transfer     delegate
    compiler.vmargs     -Xmx512m
    EDITOR_J2SE_VERSION     1.5
    feedbackmanager.disable     false
    file.encoding     Cp1252
    file.encoding.pkg     sun.io
    file.separator     \
    http.agent     Mozilla/5.0 (Java 1.7.0; Windows 7 6.1 x86; en_US) ICEbrowser/v6_1_3
    ice.browser.forcegc     false
    ice.pilots.html4.ignoreNonGenericFonts     true
    ice.pilots.html4.tileOptThreshold     0
    ide.bootstrap.start     12082784954629
    ide.build     JDEVADF_11.1.1.6.0_GENERIC_111205.1733.6192.1
    ide.conf     C:\Oracle\Middleware\jdeveloper\jdev\bin\jdev.conf
    ide.config_pathname     C:\Oracle\Middleware\jdeveloper\jdev\bin\jdev.conf
    ide.debugbuild     false
    ide.devbuild     false
    ide.editions     oracle.studio, oracle.j2ee, oracle.jdeveloper
    ide.extension.role.search.path     jdev/roles
    ide.extension.search.path     jdev/extensions:sqldeveloper/extensions
    ide.feedbackmanager.customer     false
    ide.firstrun     false
    ide.java.maxversion     1.8
    ide.java.minversion     1.6.0_04
    ide.launcherProcessId     2132
    ide.main.class     oracle.ide.boot.IdeLauncher
    ide.max.jar.handles     500
    ide.old.user.country     DE
    ide.old.user.language     de
    ide.patches.dir     jdev/lib/patches
    ide.pref.dir     C:\Users\gksadmin\AppData\Roaming\JDeveloper
    ide.pref.dir.base     C:\Users\gksadmin\AppData\Roaming
    ide.product     oracle.jdeveloper
    ide.role     <none>
    ide.shell.enableFileTypeAssociation     C:\Oracle\Middleware\jdeveloper\jdeveloper.exe
    ide.splash.screen     splash.gif
    ide.startingArg0     C:\Oracle\Middleware\jdeveloper\jdeveloper.exe
    ide.startingcwd     C:\Oracle\Middleware\jdeveloper
    ide.throttleLocale     true
    ide.user.dir     C:\Users\gksadmin\AppData\Roaming\JDeveloper
    ide.user.dir.var     JDEV_USER_HOME,JDEV_USER_DIR
    ide.work.dir     C:\\JDeveloper
    ide.work.dir.base     C:\Users\gksadmin\Documents
    ilog.propagatesPropertyEditors     false
    inJUIDesigntime     true
    insight.suppresshidden     true
    INSIGHT_OMIT_HIDDEN     true
    java.awt.graphicsenv     sun.awt.Win32GraphicsEnvironment
    java.awt.printerjob     sun.awt.windows.WPrinterJob
    java.class.path     ..\..\ide\lib\ide-boot.jar
    java.class.version     51.0
    java.endorsed.dirs     C:\Java\jdk1.7.0\jre\lib\endorsed
    java.ext.dirs     C:\Java\jdk1.7.0\jre\lib\ext;C:\Windows\Sun\Java\lib\ext
    java.home     C:\Java\jdk1.7.0\jre
    java.io.tmpdir     C:\Users\gksadmin\AppData\Local\Temp\
    java.library.path     C:\Oracle\Middleware\jdeveloper;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;D:\app\gksadmin\product\11.2.0\dbhome_1\bin;c:\Java\jdk1.7.0\bin;C:\Program Files (x86)\PC Connectivity Solution\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;c:\ocf\lib;c:\Windows/System32;C:\Java\jdk1.7.0\bin;.
    java.naming.factory.initial     oracle.javatools.jndi.LocalInitialContextFactory
    java.protocol.handler.pkgs     oracle.jdevimpl.handler
    java.runtime.name     Java(TM) SE Runtime Environment
    java.runtime.version     1.7.0-b147
    java.specification.name     Java Platform API Specification
    java.specification.vendor     Oracle Corporation
    java.specification.version     1.7
    java.vendor     Oracle Corporation
    java.vendor.url     http://java.oracle.com/
    java.vendor.url.bug     http://bugreport.sun.com/bugreport/
    java.version     1.7.0
    java.vm.info     mixed mode
    java.vm.name     Java HotSpot(TM) Client VM
    java.vm.specification.name     Java Virtual Machine Specification
    java.vm.specification.vendor     Oracle Corporation
    java.vm.specification.version     1.7
    java.vm.vendor     Oracle Corporation
    java.vm.version     21.0-b17
    javax.xml.parsers.DocumentBuilderFactory     oracle.xml.jaxp.JXDocumentBuilderFactory
    jbo.debugoutput     silent
    jbo.showdebugwarningbanner     false
    jps.authz     NULL
    line.separator     \r\n
    oracle.adfm.usemds     false
    oracle.home     C:\Oracle\Middleware\jdeveloper
    oracle.j2ee.extension.status     enabled
    oracle.jbo.usemds     false
    oracle.jdbc.Trace     true
    oracle.jdeveloper.webservice.hidePropertyOverride     false
    oracle.jdeveloper.webservice.showAllOwsmPolicyTypes     false
    oracle.mds.internal.config.override.emptystore     true
    oracle.security.jps.config     /C:/Users/gksadmin/AppData/Roaming/JDeveloper/system11.1.1.6.38.61.92/DefaultDomain/config/fmwconfig/jps-config-jse.xml
    oracle.soap.transport.noHTTPClient     true
    oracle.translated.locales     de,es,fr,it,ja,ko,pt_BR,zh_CN,zh_TW
    oracle.xdkjava.compatibility.version     9.0.4
    os.arch     x86
    os.name     Windows 7
    os.version     6.1
    path.separator     ;
    reserved_filenames     con,aux,prn,lpt1,lpt2,lpt3,lpt4,lpt5,lpt6,lpt7,lpt8,lpt9,com1,com2,com3,com4,com5,com6,com7,com8,com9,conin$,conout,conout$
    sun.arch.data.model     32
    sun.awt.disablegrab     true
    sun.awt.enableExtraMouseButtons     true
    sun.awt.keepWorkingSetOnMinimize     true
    sun.boot.class.path     ../lib/lwawt.jar;C:\Java\jdk1.7.0\jre\lib\endorsed\javax.annotation_1.0.0.0_1-0.jar;C:\Java\jdk1.7.0\jre\lib\endorsed\javax.xml.bind_2.1.1.jar;C:\Java\jdk1.7.0\jre\lib\endorsed\javax.xml.ws_2.1.1.jar;C:\Java\jdk1.7.0\jre\lib\resources.jar;C:\Java\jdk1.7.0\jre\lib\rt.jar;C:\Java\jdk1.7.0\jre\lib\sunrsasign.jar;C:\Java\jdk1.7.0\jre\lib\jsse.jar;C:\Java\jdk1.7.0\jre\lib\jce.jar;C:\Java\jdk1.7.0\jre\lib\charsets.jar;C:\Java\jdk1.7.0\jre\classes;C:\Java\jdk1.7.0\lib\tools.jar;C:\Java\jdk1.7.0\lib\dt.jar
    sun.boot.library.path     C:\Java\jdk1.7.0\jre\bin
    sun.cpu.endian     little
    sun.cpu.isalist     pentium_pro+mmx pentium_pro pentium+mmx pentium i486 i386 i86
    sun.desktop     windows
    sun.io.unicode.encoding     UnicodeLittle
    sun.java2d.noddraw     true
    sun.jnu.encoding     Cp1252
    sun.management.compiler     HotSpot Client Compiler
    sun.os.patch.level     
    svnkit.sax.useDefault     true
    user.country     US
    user.dir     C:\Oracle\Middleware\jdeveloper\jdev\bin
    user.home     C:\Users\gksadmin
    user.language     en
    user.name     gksadmin
    user.script     
    user.timezone     Europe/Berlin
    user.variant     
    wasp.location     ../../uddi
    weblogic.home     C:\Oracle\Middleware\wlserver_10.3\server
    weblogic.security.SSL.ignoreHostnameVerification     true
    weblogic.security.TrustKeyStore     DemoTrust
    windows.shell.font.languages     en
    Extensions
    Name     Identifier     Version     Status
    ====     ==========     =======     ======
    ADF Business Components     oracle.BC4J     11.1.1.6.38.61.92     Loaded
    ADF Business Components Annotations     oracle.adfbcdt.annotations     11.1.2     Loaded
    ADF Business Components Dependency     oracle.bc4j.dependency     11.1.1.6.38.61.92     Loaded
    ADF Business Components Deployment     oracle.bc4jdt.deploy     11.1.1.6.38.61.92     Loaded
    ADF Business Components Modeler     oracle.adfbcdt.modeler     11.1.1.6.38.61.92     Loaded
    ADF Business Components Syscat     oracle.bc4j.syscat     0     Loaded
    ADF Business Components Tester     oracle.bc4j.tester     11.1.1.6.38.61.92     Loaded
    ADF Common Audit     oracle.adf.common.audit     0     Loaded
    ADF Context Debugger     oracle.adf.share.debug     11.1.1.6.38.61.92     Loaded
    ADF Controller Configuration Design Time     oracle.adf.controller.config.dt     11.1.1.6.38.61.92     Loaded
    ADF Data Visualizations Design Time Tests     oracle.dvt.dt     11.1.1.6.38.61.92     Loaded
    ADF Debugger     oracle.adf.debug     11.1.1.6.38.61.92     Loaded
    ADF Debugger Diagram Support     oracle.adf.debug.diagram     11.1.1.6.38.61.92     Loaded
    ADF Desktop Integration Design Time     oracle.adfdt.desktopintegration     11.1.1.6.38.61.92     Loaded
    ADF Faces Cache     oracle.webcache     11.1.1.6.38.61.92     Loaded
    ADF Faces Data Visualization Tools Help     oracle.dvt-faces-doc     11.1.1.0.0     Loaded
    ADF Faces Databinding Design Time     oracle.adf-faces-databinding-dt     11.1.1.6.38.61.92     Loaded
    ADF Faces Design Time     oracle.adf-faces-dt     11.1.1.6.38.61.92     Loaded
    ADF Faces Design Time Migration     oracle.adffacesdt.migration     11.1.1.6.38.61.92     Loaded
    ADF Faces Runtime Help     oracle.adf-faces-rt-doc     11.1.1.0.0     Loaded
    ADF Faces Skin Design Time     oracle.adf-faces-skin-dt     11.1.1.6.38.61.92     Loaded
    ADF JMX Data Control Designtime     oracle.adf.jmxdc     11.1.1.6.38.61.92     Loaded
    ADF Java Server Faces Diagram     oracle.adf.jsf.diagram     11.1.1.6.38.61.92     Loaded
    ADF Library Design Time     oracle.jdeveloper.adflibrary     11.1.1.6.38.61.92     Loaded
    ADF Lifecycle Design Time     oracle.adf.lifecycle.dt     11.1.1.6.38.61.92     Loaded
    ADF Management Pages     oracle.adf.management     11.1.1.6.38.61.92     Loaded
    ADF Menu Model Design-Time     oracle.adfmenudt     11.1.1.6.38.61.92     Loaded
    ADF Page Flow Design Time     oracle.adf.pageflow.dt     11.1.1.6.38.61.92     Loaded
    ADF Page Flow Design Time Extras     oracle.adf.pageflow.dt.extras     11.1.1.6.38.61.92     Loaded
    ADF Page Template DT     oracle.adf-faces-templating-dt     11.1.1.6.38.61.92     Loaded
    ADF Region Design Time     oracle.adf-faces-region-dt     11.1.1.6.38.61.92     Loaded
    ADF Struts Page Flow Modeler     oracle.struts.adf     11.1.1.6.38.61.92     Loaded
    ADF Struts and Model One Databinding     oracle.adf.struts.and.model.one.databinding.dt     11.1.1.6.38.61.92     Loaded
    ADF Swing     oracle.adfdt.swingcore     11.1.1.6.38.61.92     Loaded
    ADF View Debugging Design Time     adf.view.debugging.dt     11.1.1.6.38.61.92     Loaded
    ADFv Common Databinding     oracle.adf-view-databinding-dt     11.1.1.6.38.61.92     Loaded
    Ant     oracle.ant     11.1.1.6.38.61.92     Loaded
    Application Server Manager     oracle.jdeveloper.asnav     11.1.1.6.38.61.92     Loaded
    Application State - Application Navigator     oracle.ideimpl.appstate.appnav     11.1.1.6.38.61.92     Loaded
    Application State - Editors     oracle.ide.appstate.editors     11.1.1.6.38.61.92     Loaded
    Application State Manager     oracle.ide.appstate     11.1.1.6.38.61.92     Loaded
    Archive Compare     oracle.jdeveloper.archive-compare     11.1.1.6.38.61.92     Loaded
    Audit Oracle Public Cloud Support     oracle.jdeveloper.audit.cloud     11.1.2     Loaded
    BI Beans Graph     oracle.bibeans     11.1.1.6.38.61.92     Loaded
    BM metamodel framework     oracle.bm.meta     11.1.1.6.38.61.92     Loaded
    Bug Reporter     oracle.jdeveloper.bugfiler     11.1.1.6.38.61.92     Loaded
    Business Modelers     oracle.bm     11.1.1.6.38.61.92     Loaded
    Check For Updates     oracle.ide.webupdate     11.1.1.6.38.61.92     Loaded
    Code Editor     oracle.ide.ceditor     11.1.1.6.38.61.92     Loaded
    Command Line Formatting Support     oracle.jdeveloper.ojformat     11.1.1.6.38.61.92     Loaded
    Command Line Make/Rebuild Support     oracle.jdevimpl.oj-compiler     11.1.1.6.38.61.92     Loaded
    Common Controller Design-Time     oracle.controller.dt     11.1.1.6.38.61.92     Loaded
    Common Page Flow Design-Time     oracle.pageflow.dt     11.1.1.6.38.61.92     Loaded
    Component Palette     oracle.ide.palette1     11.1.1.6.38.61.92     Loaded
    Controller to ADF Bindings Bridge     oracle.controller.bindings.dt     11.1.1.6.38.61.92     Loaded
    Database Connection Support     oracle.jdeveloper.db.connection     11.1.1.6.38.61.92     Loaded
    Database Features (JDeveloper)     oracle.jdeveloper.db     11.1.1.6.38.61.92     Loaded
    Database Features (SQLDeveloper in JDeveloper)     oracle.jdeveloper.db.navigator     11.1.1.6.38.61.92     Loaded
    Database Modeler     oracle.dbmodeler     11.1.1.6.38.61.92     Loaded
    Database Modeler Migration     oracle.dbmodeler.migrate     11.1.1.6.38.61.92     Loaded
    Database Object Dependency API Support     oracle.jdeveloper.db.dependency     11.1.1.6.38.61.92     Loaded
    Database Object Explorers     oracle.ide.db.explorer     11.1.1.6.38.61.92     Loaded
    Database Object Transfer Framework     oracle.jdeveloper.db.transfer     11.1.1.6.38.61.92     Loaded
    Database UI     oracle.ide.db     11.1.1.6.38.61.92     Loaded
    Design Time Resource Bundle Variable Resolver     oracle.jdeveloper.resourcebundle.resolver.dt     11.1.1.6.38.61.92     Loaded
    Diagram Framework     oracle.diagram     11.1.1.6.38.61.92     Loaded
    Diagram Framework Toplink extensions     oracle.diagram.toplink     11.1.1.6.38.61.92     Loaded
    Diagram Javadoc Extension     oracle.diagram.javadoc     11.1.1.6.38.61.92     Loaded
    Diagram Thumbnail     oracle.diagram.thumbnail     11.1.1.6.38.61.92     Loaded
    Diagram to XMLEF Bridge     oracle.diagram.xmlef     11.1.1.6.38.61.92     Loaded
    Diff/Merge     oracle.ide.diffmerge     11.1.1.6.38.61.92     Loaded
    EJB     oracle.ejb     11.1.1.6.38.61.92     Loaded
    EJB Modeler     oracle.ejbmodeler     11.1.1.6.38.61.92     Loaded
    Editor Tint     oracle.ide.ceditor-tint     11.1.1.6.38.61.92     Loaded
    Editor Tint (Java)     oracle.jdeveloper.ceditor-tint-java     11.1.1.6.38.61.92     Loaded
    Extended IDE Platform     oracle.javacore     11.1.1.6.38.61.92     Loaded
    Extension Designtime Core     oracle.jdeveloper.extensiondt.core     11.1.1.6.38.61.92     Loaded
    Extension Designtime UI     oracle.jdeveloper.extensiondt.ui     11.1.1.6.38.61.92     Loaded
    External Tools     oracle.ide.externaltools     11.1.1.6.38.61.92     Loaded
    Feedback     oracle.ide.feedback     11.1.1.6.38.61.92     Loaded
    File Support     oracle.ide.files     11.1.1.6.38.61.92     Loaded
    Fusion Application Overview Definition     oracle.ide.appoverview.fusion.definition     11.1.1.6.38.61.92     Loaded
    Fusion Web Application (ADF) Template     oracle.adf.webapp.template     11.1.1.6.38.61.92     Loaded
    Go to File     oracle.ide.gotofile     11.1.1.6.38.61.92     Loaded
    Go to Java Type     oracle.jdeveloper.gotojava     11.1.1.6.38.61.92     Loaded
    HTML     oracle.html     11.1.1.6.38.61.92     Loaded
    Help System     oracle.ide.help     11.1.1.6.38.61.92     Loaded
    History Support     oracle.jdeveloper.history     11.1.1.6.38.61.92     Loaded
    IDE Reports Extension     oracle.ide.report     11.1.1.6.38.61.92     Loaded
    Import/Export Support     oracle.ide.importexport     11.1.1.6.38.61.92     Loaded
    Index Migrator support     oracle.ideimpl.indexing-migrator     11.1.1.6.38.61.92     Loaded
    J2EE     oracle.j2ee     11.1.1.6.38.61.92     Loaded
    J2EE     oracle.j2ee.webapp.ve     11.1.1.6.38.61.92     Loaded
    J2EE     oracle.j2ee.webapp.ve.facelets     11.1.1.6.38.61.92     Loaded
    J2EE CSS     oracle.css     11.1.1.6.38.61.92     Loaded
    J2EE Faces Config     oracle.j2ee.facesconfig     11.1.1.6.38.61.92     Loaded
    J2EE Web App     oracle.j2ee.webapp     11.1.1.6.38.61.92     Loaded
    J2EE-ADRS     oracle.j2ee.adrs     11.1.1.6.38.61.92     Loaded
    J2ee extension help     oracle.j2ee.help     11.1.1.0.0     Loaded
    JDeveloper     oracle.jdeveloper     11.1.1.6.38.61.92     Loaded
    JDeveloper Runner     oracle.jdeveloper.runner     11.1.1.6.38.61.92     Loaded
    JGoodies Forms     oracle.jdeveloper.jgoodies     11.1.1.6.38.61.92     Loaded
    JPublisher     oracle.jdeveloper.db.jpub     11.1.1.6.38.61.92     Loaded
    JSON Language support     oracle.jdeveloper.json     11.1.1.6.38.61.92     Loaded
    JViews Registration Addin     oracle.diagram.registration     11.1.1.6.38.61.92     Loaded
    Java Annotation Inspector     oracle.jdeveloper.annotation.inspector     11.1.1.6.38.61.92     Loaded
    Java Breadcrumbs     oracle.jdeveloper.ceditor-breadcrumbs-java     11.1.1.6.38.61.92     Loaded
    Java Class Modeler     oracle.javamodeler     11.1.1.6.38.61.92     Loaded
    Java Modeler Toplink extensions     oracle.javamodeler.toplink     11.1.1.6.38.61.92     Loaded
    Java Server Faces Page Flow Modeler     oracle.jsfmod     11.1.1.6.38.61.92     Loaded
    Java Structure Compare     oracle.jdeveloper.java-compare     11.1.1.6.38.61.92     Loaded
    Java Type Search     oracle.jdeveloper.searchbar.java     11.1.1.6.38.61.92     Loaded
    Java extension help     oracle.java.help     11.1.1.0.0     Loaded
    JavaBeans, Swing, and AWT     oracle.swingawt     11.1.1.6.38.61.92     Loaded
    JavaScript Language Support     oracle.ide.javascript     11.1.1.6.38.61.92     Loaded
    Jdeveloper UI Editor     oracle.jdeveloper.uieditor     11.1.1.6.38.61.92     Loaded
    Jdeveloper XML Extension     oracle.jdeveloper.xml     11.1.1.6.38.61.92     Loaded
    Legacy Controller Design-Time     oracle.controller.bm.dt     11.1.1.6.38.61.92     Loaded
    Legacy Preferences integration for BM     oracle.modeler.bm.prefs     11.1.1.6.38.61.92     Loaded
    Log Window     oracle.ide.log     11.1.1.6.38.61.92     Loaded
    MDS Extension     oracle.mds     11.1.1.6.38.61.92     Loaded
    MOF Ide Integration     oracle.mof.ide     11.1.1.6.38.61.92     Loaded
    MOF Modeler Integration     oracle.modeler.mof     11.1.1.6.38.61.92     Loaded
    Mac OS X Adapter     oracle.ideimpl.apple     11.1.1.6.38.61.92     Loaded
    Modeler Framework     oracle.modeler     11.1.1.6.38.61.92     Loaded
    Modeler Framework Common Layer     oracle.modeler.common     11.1.1.6.38.61.92     Loaded
    Modelling migration from BM     oracle.modeler.bm.migrate     11.1.1.6.38.61.92     Loaded
    Navigator     oracle.ide.navigator     11.1.1.6.38.61.92     Loaded
    Nightly Indexing support     oracle.ideimpl.indexing-rt     11.1.1.6.38.61.92     Loaded
    OAR/MAR/SAR Deployment Support Extension     oracle.deploy.orapp     11.1.1.6.38.61.92     Loaded
    OWSM Policy Manager Installer     oracle.jdeveloper.webservice.wsmpm.installer     11.1.1.6.38.61.92     Loaded
    Object Gallery     oracle.ide.gallery     11.1.1.6.38.61.92     Loaded
    Object Viewer     oracle.sqldeveloper.oviewer     11.1.1.64.48     Loaded
    Offline Database     oracle.jdeveloper.offlinedb     11.1.1.6.38.61.92     Loaded
    Offline Database Import/Generate     oracle.jdeveloper.offlinedb.transfer     11.1.1.6.38.61.92     Loaded
    Offline Database Reports Extension     oracle.jdeveloper.offlinedb.report     11.1.1.6.38.61.92     Loaded
    Offline Database SXML     oracle.jdeveloper.offlinedb.sxml     11.1.1.6.38.61.92     Loaded
    Offline Database User Properties     oracle.jdeveloper.offlinedb.userprops     11.1.1.6.38.61.92     Loaded
    Offline Database User Properties SXML     oracle.jdeveloper.offlinedb.userprops.sxml     11.1.1.6.38.61.92     Loaded
    Oracle Database Browser     oracle.sqldeveloper.thirdparty.browsers     11.1.1.64.48     Loaded
    Oracle Enterprise Repository Editor     oracle.jdeveloper.oereditor     11.1.1.6.38.61.92     Loaded
    Oracle IDE     oracle.ide     11.1.1.6.38.61.92     Loaded
    Oracle JDevloper Deployment Core Module     oracle.deploy.core     11.1.1.6.38.61.92     Loaded
    Oracle MDS Design time     oracle.mds.dt     11.1.1.6.38.61.92     Loaded
    Oracle Mobile ADF     oracle.wireless.dt     11.1.1.6.38.61.92     Loaded
    Oracle Page Templates     oracle.adf-page-template-samples     11.1.1.6.38.61.92     Loaded
    Oracle Public Cloud     oracle.jdeveloper.cloud     11.1.1.0.0     Loaded
    Oracle SQL Developer     oracle.sqldeveloper     11.1.1.64.48     Loaded
    Oracle SQL Developer Reports     oracle.sqldeveloper.report     11.1.1.64.48     Loaded
    Oracle SQL Developer Worksheet     oracle.sqldeveloper.worksheet     11.1.1.64.48     Loaded
    Oracle XML Schema Support     oracle.sqldeveloper.xmlschema     11.1.1.64.48     Loaded
    PL/SQL Debugger     oracle.jdeveloper.db.debug.plsql     11.1.1.6.38.61.92     Loaded
    PROBE Debugger     oracle.jdeveloper.db.debug.probe     11.1.1.6.38.61.92     Loaded
    Peek     oracle.ide.peek     11.1.1.6.38.61.92     Loaded
    Persistent Storage     oracle.ide.persistence     11.1.1.6.38.61.92     Loaded
    Profiler     oracle.jdeveloper.profiler     11.1.1.6.38.61.92     Loaded
    Properties File Support     oracle.jdeveloper.props     11.1.1.6.38.61.92     Loaded
    Property Inspector     oracle.ide.inspector     11.1.1.6.38.61.92     Loaded
    Quick Start Features for Web Applications     quickstart.webapp.dt     11.1.1.6.38.61.92     Loaded
    QuickDiff     oracle.ide.quickdiff     11.1.1.6.38.61.92     Loaded
    REST Web Services     oracle.jdeveloper.webservice.rest     11.1.1.6.38.61.92     Loaded
    Refactoring     oracle.jdeveloper.refactoring     11.1.1.6.38.61.92     Loaded
    Replace With     oracle.ide.replace     11.1.1.6.38.61.92     Loaded
    Reports Extension     oracle.javatools.report     11.1.1.6.38.61.92     Loaded
    Resource Bundle Support     oracle.ide.resourcebundle     11.1.1.6.38.61.92     Loaded
    Resource Bundle Support for Properties Files     oracle.jdeveloper.resourcebundle.props     11.1.1.6.38.61.92     Loaded
    Resource Catalog Application Server Adapter     oracle.jdeveloper.asadapter     11.1.1.6.38.61.92     Loaded
    Resource Catalog DB UI extension     oracle.jdeveloper.db.rcadapter.ui     11.1.1.6.38.61.92     Loaded
    Resource Catalog Database Adapter     oracle.jdeveloper.rcdbadapter     11.1.1.6.38.61.92     Loaded
    Resource Catalog WSIL Adapter     oracle.jdeveloper.rcwsiladapter     11.1.1.6.38.61.92     Loaded
    Resource Lookup     oracle.jdeveloper.rclookup     11.1.1.6.38.61.92     Loaded
    Runner     oracle.ide.runner     11.1.1.6.38.61.92     Loaded
    SQL*Plus Integration     oracle.jdeveloper.db.sqlplus     11.1.1.6.38.61.92     Loaded
    SQLJ     oracle.jdeveloper.sqlj     11.1.1.6.38.61.92     Loaded
    Search Bar     oracle.ide.searchbar     11.1.1.0.0     Loaded
    SearchBar Commands     oracle.ide.searchbar.commands     11.1.1.6.38.61.92     Loaded
    Searchbar Preferences     oracle.ide.searchbar.preferences     11.1.1.6.38.61.92     Loaded
    Snippet Window     oracle.sqldeveloper.snippet     11.1.1.64.48     Loaded
    Struts Page Flow Modeler     oracle.struts     11.1.1.6.38.61.92     Loaded
    Studio     oracle.studio     11.1.1.6.38.61.92     Loaded
    Studio extension help     oracle.studio.help     11.1.1.0.0     Loaded
    Template     oracle.ide.ceditor-template     11.1.1.6.38.61.92     Loaded
    TopLink     oracle.toplink     11.1.1.6.38.61.92     Loaded
    Trinidad Databinding Design Time     oracle.trinidad-databinding-dt     11.1.1.6.38.61.92     Loaded
    Trinidad Design Time     oracle.trinidad-dt     11.1.1.6.38.61.92     Loaded
    UDDI Resource Catalogue Provider     oracle.jdevimpl.uddiadapter     11.1.1.6.38.61.92     Loaded
    UML XMI     oracle.uml.v2.xmi     11.1.1.6.38.61.92     Loaded
    UML v2     oracle.uml.v2     11.1.1.6.38.61.92     Loaded
    UML v2 Activity Modeler     oracle.uml.v2.activity     11.1.1.6.38.61.92     Loaded
    UML v2 Class Diagram     oracle.uml.v2.clazz     11.1.1.6.38.61.92     Loaded
    UML v2 Migration     oracle.uml.v2.migrate     11.1.1.6.38.61.92     Loaded
    UML v2 Sequence Diagram     oracle.uml.v2.sequence     11.1.1.6.38.61.92     Loaded
    UML v2 Transformation to Java     oracle.uml.v2.umljava     11.1.1.6.38.61.92     Loaded
    UML v2 Use Case Diagram     oracle.uml.v2.usecase     11.1.1.6.38.61.92     Loaded
    UML2 Modelers Common Classes     oracle.uml.v2.modeler     11.1.1.6.38.61.92     Loaded
    URL Connection Designtime     oracle.jdevimpl.urlconn     0     Loaded
    VHV     oracle.ide.vhv     11.1.1.6.38.61.92     Loaded
    Versioning Support     oracle.jdeveloper.vcs     11.1.1.6.38.61.92     Loaded
    Versioning Support for Subversion     oracle.jdeveloper.subversion     11.1.1.6.38.61.92     Loaded
    Virtual File System     oracle.ide.vfs     11.1.1.6.38.61.92     Loaded
    WSDL Chooser     oracle.jdeveloper.wsdllookup     11.1.1.0.0     Loaded
    WSDL web services extension     oracle.jdevimpl.wsdl     11.1.1.6.38.61.92     Loaded
    Web Browser and Proxy     oracle.ide.webbrowser     11.1.1.6.38.61.92     Loaded
    Web Services     oracle.jdeveloper.webservice     11.1.1.6.38.61.92     Loaded
    WebDAV Connection Support     oracle.jdeveloper.webdav2     11.1.1.6.38.61.92     Loaded
    WebStart     oracle.j2ee.webstart     11.1.1.0.0     Loaded
    XML Compare     oracle.jdeveloper.xml-compare     11.1.1.6.38.61.92     Loaded
    XML Editing Framework IDE Extension     oracle.ide.xmlef     11.1.1.6.38.61.92     Loaded
    XML Editing Framework Java Integration     oracle.jdeveloper.xmlef     11.1.1.6.38.61.92     Loaded
    adf-deploy-dt     oracle.adfdt.common.deploy     11.1.1.6.38.61.92     Loaded
    adf-deploy-dt-mds     oracle.adfdt.common.deploy.mds     11.1.1.6.38.61.92     Loaded
    adf-installer-ide     adf.installer.dt     11.1.1.6.38.61.92     Loaded
    adf-logging-dt     oracle.adf.logging.dt     11.1.1.6.38.61.92     Loaded
    adf-model-debugger-dt     oracle.adf-model-debugger-dt     11.1.1.6.38.61.92     Loaded
    adf-model-sqldc-ide     oracle.adfm.sqldc     11.1.1.6.38.61.92     Loaded
    adf-model-tools     oracle.adf.model.tools     11.1.1.6.38.61.92     Loaded
    adf-security-policy-dt     oracle.adfdtinternal.adf-security-policy-dt     11.1.1.6.38.61.92     Loaded
    adf-share-audit     oracle.adf-share-audit     11.1.1.6.38.61.92     Loaded
    adf-share-deploy-dt     oracle.adf.share.deploy.dt     11.1.1.6.38.61.92     Loaded
    adf-share-dt     oracle.adf.share.dt     11.1.1.6.38.61.92     Loaded
    adfm-business-editor-deploy     oracle.adf.businesseditor.deploy     11.1.1.6.38.61.92     Loaded
    adfm-business-editor-ide     oracle.adf.model.businesseditor     11.1.1.6.38.61.92     Loaded
    adfm-business-editor-settings-ide     oracle.adfm.businesseditor.settings     11.1.1.6.38.61.92     Loaded
    adfmcoredt-xdf     oracle.adfm.xdf     11.1.1.6.38.61.92     Loaded
    adfquerylovdt     oracle.adf-faces-query-and-lov-dt     11.1.1.6.38.61.92     Loaded
    appoverview     oracle.ide.appoverview     11.1.1.6.38.61.92     Loaded
    asnav-cloud     oracle.jdeveloper.asnav.cloud     11.1.1.6.38.61.92     Loaded
    asnav-weblogic     oracle.jdeveloper.asnav.weblogic     11.1.1.6.38.61.92     Loaded
    audit     oracle.ide.audit     11.1.1.6.38.61.92     Loaded
    audit-core     oracle.ide.audit.core     11.1.1.6.38.61.92     Loaded
    bi-jdbc     oracle.bi.jdbc     11.1.1.6.38.61.92     Loaded
    classpath: protocol handler extension     oracle.jdeveloper.classpath     11.1.1.0.0     Loaded
    db-audit     oracle.ide.db.audit     11.1.1.6.38.61.92     Loaded
    db-modeler-transform     oracle.dbmodeler.transform     11.1.1.6.38.61.92     Loaded
    dcadapters-ide     oracle.adfm.dc-adapters     11.1.1.6.38.61.92     Loaded
    dependency-java     oracle.jdeveloper.java.dependency     11.1.1.6.38.61.92     Loaded
    dependency-refactor     oracle.jdeveloper.refactoring.dependency     11.1.1.6.38.61.92     Loaded
    deploy-ant     oracle.deploy.ant     11.1.1.6.38.61.92     Loaded
    deploy-rt     oracle.jdevimpl.deploy-rt     11.1.1.6.38.61.92     Loaded
    feedback-client2     oracle.ideimpl.feedback2.client     11.1.1.6.38.61.92     Loaded
    ide-diagnostics     oracle.ide.diagnostics     11.1.1.0.0     Loaded
    j2ee-adrsimpl     oracle.j2ee.adrsimpl     11.1.1.0.0     Loaded
    j2ee-cloud     oracle.j2ee.cloud     11.1.1.6.38.61.92     Loaded
    j2ee-facelets     oracle.j2ee.facelets     11.1.1.6.38.61.92     Loaded
    j2ee-jpsconfig     oracle.j2ee.jpsconfig     11.1.1.6.38.61.92     Loaded
    j2ee-security     oracle.j2ee.security     11.1.1.6.38.61.92     Loaded
    j2ee-server     oracle.j2ee.server     11.1.1.0.0     Loaded
    j2ee-server-dt     oracle.j2ee.server.dt     11.1.1.6.38.61.92     Loaded
    j2ee-serverimpl     oracle.j2ee.serverimpl     11.1.1.6.38.61.92     Loaded
    j2ee-weblogic     oracle.j2ee.weblogic     11.1.1.6.38.61.92     Loaded
    j2ee-weblogic-editors     oracle.j2ee.weblogic.editors     11.1.1.6.38.61.92     Loaded
    jdukshare     oracle.bm.jdukshare     11.1.1.6.38.61.92     Loaded
    library-dconfig-infra     oracle.jdeveloper.library.dconfig.infra     11.1.1.6.38.61.92     Loaded
    library-jee-api     oracle.jdeveloper.library.jee.api     11.1.1.6.38.61.92     Loaded
    library-jmx     oracle.jdeveloper.library.jmx     11.1.1.6.38.61.92     Loaded
    library-jps     oracle.jdeveloper.library.jps     11.1.1.6.38.61.92     Loaded
    library-weblogic-api     oracle.jdeveloper.library.weblogic.api     11.1.1.6.38.61.92     Loaded
    library-weblogic-client     oracle.jdeveloper.library.weblogic.client     11.1.1.6.38.61.92     Loaded
    mof     oracle.mof     11.1.1.6.38.61.92     Loaded
    mof-index     oracle.mof.index     11.1.1.6.38.61.92     Loaded
    mof-xmi     oracle.mof.xmi     11.1.1.6.38.61.92     Loaded
    oracle.adfm     oracle.adfm     11.1.1.6.38.61.92     Loaded
    oracle.adfm.contextual     oracle.adfm.contextual     11.1.1.6.38.61.92     Loaded
    oracle.dynamic-faces-dt     oracle.dynamic.faces     11.1.1.6.38.61.92     Loaded
    oracle.ide.dependency     oracle.ide.dependency     11.1.1.6.38.61.92     Loaded
    oracle.ide.filequery     oracle.ide.filequery     11.1.1.6.38.61.92     Loaded
    oracle.ide.indexing     oracle.ide.indexing     11.1.1.6.38.61.92     Loaded
    oracle.ide.usages-tracking     oracle.ide.usages-tracking     11.1.1.6.38.61.92     Loaded
    oracle.todo.tasks     oracle.todo.tasks     11.1.1.6.38.61.92     Loaded
    palette2     oracle.ide.palette2     11.1.1.6.38.61.92     Loaded
    placeholder-jsf-ui     oracle.placeholderjsf-ui     11.1.1.6.38.61.92     Loaded
    placeholderdc-dt     oracle.placeholderdc.dt     11.1.1.6.38.61.92     Loaded
    rcasadapter-cloud     oracle.jdeveloper.asadapter.cloud     11.1.1.6.38.61.92     Loaded
    rcasadapter-cloud-api     oracle.jdeveloper.asadapter.cloud.api     11.1.1.6.38.61.92     Loaded
    rcasadapter-dt     oracle.jdeveloper.asadapter.dt     11.1.1.6.38.61.92     Loaded
    rcasadapter-oc4j     oracle.jdeveloper.asadapter.oc4j     11.1.1.6.38.61.92     Loaded
    rcasadapter-rescat2     oracle.jdeveloper.asadapter.rescat2     11.1.1.6.38.61.92     Loaded
    rcasadapter-thirdparty     oracle.jdeveloper.asadapter.thirdparty     11.1.1.6.38.61.92     Loaded
    rcasadapter-weblogic     oracle.jdeveloper.asadapter.weblogic     11.1.1.6.38.61.92     Loaded
    rcasadapter-weblogic-api     oracle.jdeveloper.asadapter.weblogic.api     11.1.1.6.38.61.92     Loaded
    rescat2     oracle.jdevimpl.rescat2     11.1.1.6.38.61.92     Loaded
    resourcebundle-api-adfdeps     oracle.jdeveloper.resourcebundle.adfdeps     11.1.1.6.38.61.92     Loaded
    resourcebundle-api-xliff     oracle.resourcebundle.xliff     11.1.1.6.38.61.92     Loaded
    resourcebundle-customization     oracle.jdeveloper.resourcebundle.customization     11.1.1.6.38.61.92     Loaded
    searchbar-gallery     oracle.ide.searchbar.gallery     11.1.1.6.38.61.92     Loaded
    searchbar-help     oracle.ide.searchbar.help     11.1.1.6.38.61.92     Loaded
    searchbar-index     oracle.ide.searchbar.index     11.1.1.6.38.61.92     Loaded
    status     oracle.ide.status     11.1.1.6.38.61.92     Loaded
    xml-schema-dt     oracle.jdevimpl.xml.schema     11.1.1.6.38.61.92     Loaded
    xsl-dt     oracle.jdevimpl.xml.xsl     11.1.1.6.38.61.92     Loaded
    xsqldt-ide     oracle.xsqldt-ide     11.1.1.6.38.61.92     Loaded(ii) The beginning portion of my jar file as output by the hex editor
    504B0304140008080800844E7E41000000000000000000000000090004004D4554412D494E462FFECA00000300504B0708000000000200000000000000504B0304140008080800844E7E41000000000000000000000000140000004D4554412D494E462F4D414E49464553542E4D46F34DCCCB4C4B2D2ED10D4B2D2ACECCCFB35230D433E0E5722E4A4D2C494DD175AA040998EB192868F8172526E7A42A38E71715E417259600D56AF272F1720100504B07083F4283104000000041000000504B030414000808080010AF7D4100000000000000000000000010000000443030314170706C65742E636C6173739557097C1C6515FF7FD94D66773B39CB962ED096D256364DD26D5A48611B5ADA84D4D42454124AD35ACD6477924CBAD95D66274D8B0A1E8007E20188E00148C17880D052368170299EA878A2888A8A175A4F040FAC84FF9BDD5C6D5A607F3BDFF1EEF7BEF7DE37F3D84BF73F0460B5F206B01E5704A0E1CA00DE83F7CAEA7D1ADE1F4021AED2F001D95FA1E1EA00FC42E6C70765B8D2870F09F9877DF888ECAF11B26B65B84EB61F0DE07A7C4C861B647BA31F1FC72764F8A46C3F25C34D427C7300B7E03A0D9FD6706B000BB04FF6B7C970BB86CF04701A867DF8ACCC9FF3E1F3327F41863B64B8730E16E28B427B57007763BF860301D4E01E0D070388E05E19B21A460258855119EEF3E37E8CF9F08086070378080F6B782480B385F2167C49905F16A71F0D70F5150D5F5528CB98B66524B69A76C64A252F6C6E54509B158A1B52C98C63249DAD4662D02C44EEA7148AEAADA4E5AC53F0842BB72A781B527153A1B4C54A9A6D8303DDA6DD61742708A96849C528D6A070EEF340AFD36765144E6889AF5C596BA4D39146CE1BD2E984E9ACA5E8FEEE66CA56089CB72766A61DDA4362AFE5C214D9832DFDC66E23923092BD9149123216B73B466C57AB9176D5F060C9356058498579E11DD378DA1DDB4AF6AE75ED36EC5E0A9F3B0B9A8618AE490A853DB631608AC142B527921922416473934049A7E213A88831E4441AAD013399C999E47739DBAD4BC85DC840DA94E6CD38A9B4821637338E9DDAABE0B34D232E21A0288B4FB34241CC5658D2924A9BC99861C723B1946D467844BBAD98196920E402F3E241F253454126A6B0F818A4ED035429F424F4F61831FA5A35459A4A3B112B938AF464224D56C2DC108B99998C50B7E7D8457ABC4761E1AC2C42286CAE68CB3DD7B8E118E4D9B191437FAD0CAB08(iii) Contents of MANIFEST.MF
    Manifest-Version: 1.0
    Created-By: 1.7.0 (Oracle Corporation)(iv) The error message as it appears
    *ClassFormatError*
    Incompatible magic value 1013478509 in class file D001AppletI know that searching a stuff as the hex output is tedious; however, I did it and did not find the value 0xCAFEBABE, the magic value.
    Please let me know if this helped or if you need some further info.
    Thanks, regards,
    Miklos

  • Applet JNLP not accessible in browser ?

    Hello,
    I am new to java and to programiing in general. Thanks in advance for your help. I can't get an Applet to work in any browser (Google, Mozilla, IE) while it works fine in appletviewer. Why?
    The Source:
    import java.awt.*;
    public class Hwa extends java.applet.Applet {
    public void init (){
         add(new Label("Hello World"));
    compiled in Hwa.class, then in a Hwa.jar file,
    The JNLP file:
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp spec="1.0+" codebase="" href="">
    <information>
    <title>Hw Applet</title>
    <vendor>CCN</vendor>
    </information>
    <resources>
    <j2se version="1.4+" href="http://java.sun.com/products/autodl/j2se" />
    <jar href="http://www.ccca.eu/Hwa.jar" />
    </resources>
    </jnlp>
    The HwaAPJNLP.html file:
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
    <html dir="ltr" lang="fr"><head>
    <meta content="text/html; charset=ISO-8859-1" http-equiv="content-type">
    <title>CCCAEU</title>
    <meta content="" name="author">
    <style type="text/css"></style>
    <link rel="stylesheet" href="CCCAEU.css" type="text/css">
    </head><body>
    <applet code="Hwa.class" ref_jnlp="Hwa.jnlp" height="50" width="150"></applet>
    </body></html>
    All files are copied on the http://ccca.eu/. of the server
    Executing appletviewer HwaAPJNLP.html (local copy of the html file) works just fine BUT launching http://www.ccca.eu/HwaAPJNLP.html returns a blank rectangle with the JAVA console message "Detected from bootclasspath: C:\\PROGRA~1\\Java\\jre7\\lib\\deploy.jar" and "Incompatible magic value 1008812135 in class file Hwa". WHY ?
    FYI, the ".htaccess" file on my WebServer is
    AddType x-mapp-php5 .php
    AddType application/x-java-jnlp-file JNLP
    Thanks in advance for your support.

    Thank you Baftos. It works but I still do not understand the logic. Before, my Hwa.class was only accessible through my Hwa.jar file on http://www.ccca.eu/Hwa.jar, itself defined as the reference if the jnlp file, see above. My understanding of the jnlp logic is that the html page will load the Hwa.class from the Hwa.jar file. Is that correct ? Thanks to your post, I copied the Hwa.class directly under http://www.ccca.eu/Hwa.class and yes, when accessed through the browser, I can download it. Even better, my previous html page above - unchanged - now WORKS. Thanks for letting me know where I think wrong.

  • Error while using applet in Jspx

    Hi all,
    I creating an applet application using java 1.6, and run successfully if i run it with HTML page.
    But when i create a jspx page with using oracle webcenter library, i cannot run the applet, it return this error in the java console:
    network: Cache entry not found [url: http://127.0.0.1:7101/Application9-Project1-context-root/faces/, version: null]
    basic: error: Incompatible magic value 1013478509 in class file my/applet/app/client/Applet1.
    java.lang.ClassFormatError: Incompatible magic value 1013478509 in class file my/applet/app/client/Applet1
         at java.lang.ClassLoader.defineClass1(Native Method)
         at java.lang.ClassLoader.defineClassCond(Unknown Source)
         at java.lang.ClassLoader.defineClass(Unknown Source)
         at java.security.SecureClassLoader.defineClass(Unknown Source)
         at sun.plugin2.applet.Applet2ClassLoader.findClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass0(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadCode(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager.createApplet(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Exception: java.lang.ClassFormatError: Incompatible magic value 1013478509 in class file my/applet/app/client/Applet1
    basic: Loading Java Applet Failed...
    security: Accessing keys and certificate in Mozilla user profile: null
    Is there anyone encountered the same problem ?
    Regards,
    Constantin B.

    Not "corrupt", just not a class file at all. The decimal value 1013478509 converts to the hex value 3C68746D, which in ASCII represents "<htm". So the request for a class file returns an HTML file.

  • Not able to run Applet after calling JSP with a Servlet

    Dear Java-Community :)
    At first I want to say, that my English isn't the best.. so I hope you'll understand my problem ;)
    I'm running a J2EE-Application, packed in a EAR-File, on my JBoss with following directory-structur:
    /jaw6c/bin
    /jaw6c/build
    /jaw6c/common
    /jaw6c/ejb
    /jaw6c/sql
    /jaw6c/src
    /jaw6c/webapp
    /jaw6c/webapp/build
    /jaw6c/webapp/build/classes
    /jaw6c/webapp/build/classes/com
    /jaw6c/webapp/build/classes/com/jbossatwork
    /jaw6c/webapp/build/classes/com/jbossatwork/ControllerServlet.class<<<<<<<<
    /jaw6c/webapp/build/distribution
    /jaw6c/webapp/build/distribution/webapp.war
    /jaw6c/webapp/build/gensrc
    /jaw6c/webapp/compile-lib
    /jaw6c/webapp/lib
    /jaw6c/webapp/src
    /jaw6c/webapp/src/com
    /jaw6c/webapp/src/com/jbossatwork
    /jaw6c/webapp/src/com/jbossatwork/ControllerServlet.java
    /jaw6c/webapp/web
    /jaw6c/webapp/web/WEB-INF
    /jaw6c/webapp/web/WEB-INF/classes
    /jaw6c/webapp/web/buyCarForm.jsp
    /jaw6c/webapp/web/carForm.jsp
    /jaw6c/webapp/web/carList.jsp
    /jaw6c/webapp/web/copy_darstellungErgebnisse.jsp
    /jaw6c/webapp/web/darstellungErgebnisse.jsp<<<<<<<<<<<<<<
    /jaw6c/webapp/web/default.css
    /jaw6c/webapp/web/diag.jar
    /jaw6c/webapp/web/diagram.class<<<<<<<<<<<<<<<<<<<<<<<<
    /jaw6c/webapp/web/error.jsp
    /jaw6c/webapp/web/index.jsp
    /jaw6c/webapp/web/selectBewertungslaeufeList.jsp
    /jaw6c/webapp/build.xml
    /jaw6c/build.xmlThe applet should be loaded in my "darstellungErgebnisse.jsp"-File.
    Now the strange situation:
    When I access "darstellungErgebnisse.jsp" DIRECTLY by entering a URL like "localhost:8080/jaw/darstellungErgebnisse.jsp" , the applet is loading perfectly !
    But when my server is forwarding me to the JSP-Site with
    RequestDispatcher dispatcher =  getServletContext().getRequestDispatcher(destinationPage);
    dispatcher.forward(request, response);
    . . . . . . . ..I'll get a ""java.lang.ClassFormatError: Incompatible magic value 1008813135 in class file diagram
    " -Error what means (referenced on the articles I've read here), that the diagram.class Is not found !
    I have tried to put the class file in a JAR, in different locations... using the codebase and archive tag but NOTHING solved my problem.
    So my question:
    Why I'm able to access the JSP-File directly and seeing the applet but after forwarding to the JSP-File via the Servlet, I'm not able to see anything.
    Would appreciate your help
    Thank you and best regards
    Edit:
    1) I'm able to download the diag.jar and diagram.class file from different locations
    2)I recognized, that after using the servlet, my url is changing from
    localhost:8080/jaw
    to
    localhost:8080/jaw/controller
    I tried added the class file to the position, where the controller-class file is, but without sucess.
    3)Opening the class-file with a hex-editor shows me, that
    the first bytes are
    "CAFEBABE0000002E02B9070002010007"
    (http://forum.java.sun.com/thread.jspa?threadID=648990&messageID=3820701)
    Message was edited by:
    Khaled01

    Hello everybody,
    I finaly have found the solution (after 16 hours).
    Like I mentioned before, I recognized (maybe a little to late), that my path is changing when I'm using the servlet :
    localhost:8080/jaw
    to
    localhost:8080/jaw/controller
    (made by url-pattern in my web.xml).
    So when my JSP tries to acces the class file, It's looking at:
    localhost:8080/jaw/controller/applet/diagram.class
    but the file is in:
    localhost:8080/jaw/applet/diagram.class
    So the solution is, to but a codebase-tag in my applet-declaration with following delcaration "basedir="../applet"
    I hope I'll help somebody with the same problems. It took me a day to find out, that the solution was two points and a slash..... lol
    Regards to everybody

  • Problem in inbuilt Web-camera using JMF

    Hi,
    I am using JavaTM Media Framework 2.1.1e downloaded from below link in my application.
    http://www.oracle.com/technetwork/java/javasebusiness/downloads/java-archive-downloads-java-client-419417.html#7372-jmf-2.1.1e-oth-JPR .
    Main functionality of my app is to use Web-camera.
    My application is working fine on Windows XP and Windows 7 using external Web-Cam device.
    However, the same application is giving problem in accessing in-built Webcam on Windows 7.
    I tried to access in-built Web-Camera from JMStudio app(of JMF..File->Capture->check 'Use video device'-> Press 'Ok'), however JMStudio itself is not able to access in-built web-camera. Always I am getting the error 'Couldn't initialize the Capture Device!'.
    Please note that JMF Registry Editor(JMStudio->Preferences->Capture Device->Detect Capture Devices')is able to detect the inbuilt web-cam device.
    Is this the issue in JMF itself or I can resolve the issue from my application also?
    Also, when I tried to do online JMF diagnostics, I am getting below error.
    Online JMFDiagnostics URL: http://www.oracle.com/technetwork/java/javase/jmfdiagnostics-139189.html
    Java Plug-in 1.6.0_26
    Using JRE version 1.6.0_26-b03 Java HotSpot(TM) Client VM
    User home directory = C:\Users\taipakai
    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
    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>
    java.lang.ClassFormatError: Incompatible magic value 1008813135 in class file JMFDiagnostics
    at java.lang.ClassLoader.defineClass1(Native Method)
    at java.lang.ClassLoader.defineClassCond(Unknown Source)
    at java.lang.ClassLoader.defineClass(Unknown Source)
    at java.security.SecureClassLoader.defineClass(Unknown Source)
    at sun.plugin2.applet.Applet2ClassLoader.findClass(Unknown Source)
    at sun.plugin2.applet.Plugin2ClassLoader.loadClass0(Unknown Source)
    at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
    at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.plugin2.applet.Plugin2ClassLoader.loadCode(Unknown Source)
    at sun.plugin2.applet.Plugin2Manager.createApplet(Unknown Source)
    at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    Exception: java.lang.ClassFormatError: Incompatible magic value 1008813135 in class file JMFDiagnostics
    Please suggest.
    Thanks for your help in advance.
    Yogesh

    almightywiz wrote:
    Well, I don't know if the JMF Studio works on a 64-bit system, but the base java libraries work just as well as on a 32-bit system. I currently use both Windows 7 64-bit and 32-bit version, and I am able to recognize all of my audio input devices.JMF wraps around and makes use of a bunch of native interfaces, all of which are precompiled for 32-bit systems. As such, anything relying upon those 32-bit libraries will not work, and that cuts the functionality down to, essentially, the cross-platform pack stuff.
    JMF's sound infastructure is mostly a wrapper around JavaSound, so as long as JavaSound is working on the JRE, you'll be able to utilize the audio functionality.
    As for device detection, I know at least some of that is native code. I'm not 100% sure, but I'd almost expect the Windows performance pack to never return any devices on a 64-bit system, but the cross-platform back to return audio devices. This is an assumption, but, that's what I would expect.
    In any case, if you're using the Windows performance pack, you'd most likely get better results by switching to the cross-platform pack.

  • The struggle of creating a Custom ClassLoader for Native libraries

    Hello Everyone,
    I'm having a really hard time writing and using my own ClassLoader in a Java Applet.
    Context :
    As the this link shows - http://codethesis.com/tutorial.php?id=1 - loading and especially unloading native libraries through Java requires defining our own ClassLoader, and use it to instantiate a class loading a library. When the class using native libraries has finished execution, setting all references to the classloader and calling the garbage collector will cause the native library to be unloaded. The class to load within the custom classloader is thus read byte after byte from the jar and defined using the Classloader.defineClass(..) function. So that's what I did. But I've got two problems.
    Problem 1 :
    On one single machine over 15 tested, the magic number of a given class read from the Jar using Applet.class.getResourceAsStream(classname) takes a value different from CAFEBABE and the defineClass function then throws an "Incompatible magic value" exception (see below). The workaround I found is to force the first 4 bytes of the byte array read from the class with CAFEBABE. But I still would like to understand why it takes a different value on this machine.
    Exception in thread "thread applet-MyApplet.class-1" java.lang.ClassFormatError: Incompatible magic value 409165630 in class file Reader
    at java.lang.ClassLoader.defineClass1(Native Method)
    at java.lang.ClassLoader.defineClass(Unknown Source)
    at NativeClassLoader.findClass(Unknown Source)
    Problem 2 :
    On windows, the NativeClassLoader works perfectly, but on Linux, I'm getting a java.lang.VerifyError (see below).
    Code is compiled with java 1.6.0_06 on windows XP. I tried to remove everything related to native code (remove .so load), the same error is raised.
    java.lang.VerifyError: (class: Reader, method: <clinit> signature: ()V) Illegal instruction found at offset 1
    at java.lang.Class.getDeclaredConstructors0(Native Method)
    at java.lang.Class.privateGetDeclaredConstructors(Class.java:2389)
    at java.lang.Class.getConstructor0(Class.java:2699)
    at java.lang.Class.newInstance0(Class.java:326)
    at java.lang.Class.newInstance(Class.java:308)
    Code :
    NativeClassReader (custom) :
    public class NativeClassLoader extends ClassLoader {
        //the unique instance of the NativeClassLoader
        private static NativeClassLoader instance;
        private NativeClassLoader () {
            super(NativeClassLoader.class.getClassLoader());
         * Get the Singleton instance of the class
        public static NativeClassLoader getInstance () {
            if (instance == null)
                instance = new NativeClassLoader();
            return instance;
        public static void dispose () {
            instance = null;
         * Load a class using its full java name (prefixed with package)
        public Class findClass (String theName) {
            byte[] b = null;
            try {
                b = loadClassDataFromJar(theName);
                Class clazz = defineClass(theName, b, 0, b.length);
                resolveClass(clazz);
                return clazz;
            } catch (Exception e) {
                return null;
         * Gets the bytes of a class file stored in the current jar using
         * its full class name
        public byte[] loadClassDataFromJar (String theName)
                                     throws Exception {
            String filename = "/" + theName.replace('.', '/') + ".class";
            InputStream is = SawsApplet.class.getResourceAsStream(filename);
            BufferedReader br = new BufferedReader(new InputStreamReader(is));
            //compute file size
            Vector vChars = new Vector();
            int c;
            while ((c = br.read()) != -1)
                vChars.add(new Byte((byte) c));
            //fill in byte array with chars read from the buffer
            byte[] buff = new byte[vChars.size()];
            //workaround for a bug on one (some) Vista machine(s)
            //force magic number to CAFEBABE instead of 18635F3E
            if (vChars.size() > 3) {
                buff[0] = (byte) 0xCA;
                buff[1] = (byte) 0xFE;
                buff[2] = (byte) 0xBA;
                buff[3] = (byte) 0xBE;
            for (int i = 4; i < vChars.size(); ++i)
                buff[i] = ((Byte) vChars.get(i)).byteValue();
            return buff;
    }Reader (loading native libary) :
    public class Reader {
       static {
         System.loadLibrary("myLib");
        public static native String getData();
    }Main :
        NativeClassLoader cLoader = NativeClassLoader.getInstance();
        Class clazz = cLoader.findClass("Reader"); // ClassFormatError thrown here
        Object reader = clazz.newInstance(); // VerifyError thrown here
        Method m = clazz.getMethod("getData");
        String s = m.invoke(reader);
        print(s);
        s = null;
        m = null;
        reader = null;
        clazz = null;
        cLoader = null;
        NativeClassLoader.dispose();
        System.gcAny ideas would be really appreciated :-)
    Guillaume

    Are you using the executable exe file and the filename as a parameter in the custom task?
    Andreas Baumgarten | H&D International Group

  • Deploying an applet with jsp

    Hi,
    I am trying to make an applet accessible within a JSP, but it won't load, I have the following error in my browser's Java console:
    java.lang.ClassFormatError: Incompatible magic value 1013461310 in class file MyApplet
    The applet is in the same directory of the JSP that calls it wich is the root of the project. Here's the code in the JSP:
    <jsp:plugin type="applet" codebase="." code="MyApplet.class" width="408" height="410" >
    <jsp:fallback>
    Plugin tag OBJECT or EMBED not supported by browser.
    </jsp:fallback>
    </jsp:plugin>
    There are no preblems when I call the applet from a usual html file with the applet tag.
    What am I doing wrong?

    in order to pass information from your applet to the JSP page, you could call your JSP page from applet.
    you may for example open a new browser window whitch is redirected to your JSP page, and user responses are sent as parameter concatanated to the URL
    or you could use post instead of get, anyhow, the idea is that you try to connect to your JSP's url and send these user responses as well...
    but if you would like the page, on which the applet is, to change according to user response, then you cannot do that (if you are not changing content of forms -- that can be done with LiveConnect <- calling javascript from java applet)
    i hope you get some ideas.
    L.

  • Applet loads in one jsp page and doesn't in the other

    Hi,
    I've got a strange problem. I've written an applet which I want to embed in a jsp page in a web application. I've created a very small web application to simplify testing the applet, and all works well in it. But when I try to embed the applet in my real web application (exactly the same way) it fails to init, firefox hangs, and in java console I get;
    java.lang.ClassFormatError: Incompatible magic value 168430090 in class file pl/cardq/applet/GameApplet1
    at java.lang.ClassLoader.defineClass1(Native Method)
    at java.lang.ClassLoader.defineClass(ClassLoader.java:620)
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124)
    at sun.applet.AppletClassLoader.findClass(AppletClassLoader.java:178)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
    at sun.applet.AppletClassLoader.loadClass(AppletClassLoader.java:127)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
    at sun.applet.AppletClassLoader.loadCode(AppletClassLoader.java:618)
    at sun.applet.AppletPanel.createApplet(AppletPanel.java:778)
    at sun.plugin.AppletViewer.createApplet(AppletViewer.java:2045)
    at sun.applet.AppletPanel.runLoader(AppletPanel.java:707)
    at sun.applet.AppletPanel.run(AppletPanel.java:361)
    at java.lang.Thread.run(Thread.java:619)
    Any idea what that means?
    Thanks in advance

    Once the print window is open, click on "PDF", in the list of options you will find "open PDF in Preview".
    (I hope my translation is good because I am using French...)

  • Applet issue in jsf page

    dear All
    it is the first time i create an applet to include it in my jsf page ,i created the applet and it is working fine, i exported the applet as a jar file myNewApplet.jar
    like Frank Example http://www.oracle.com/technetwork/developer-tools/adf/learnmore/71-adf-to-applet-communication-307672.pdf
    when i included it in my jsf page as per below script.
    <APPLET height="130" width="400" code="project1.Applet1.class"
    archive="/Application6-ViewController-context-root/myNewApplet.jar"
    align="bottom">
    This browser does not support Applets.
    </APPLET>
    i am getting X flag in the applet area , and i see below exception when i open java console
    java.lang.ClassFormatError: Incompatible magic value 1013478509 in class file project1/applet1     
    at java.lang.ClassLoader.defineClass1(Native Method)
         at java.lang.ClassLoader.defineClass(Unknown Source)
         at java.security.SecureClassLoader.defineClass(Unknown Source)
         at sun.plugin2.applet.Applet2ClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadCode(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager.createApplet(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Exception: java.lang.ClassFormatError: Incompatible magic value 1013478509 in class file project1/applet1
    please advise
    Edited by: Oracle ITself on May 1, 2011 1:46 PM

    solved by correcting the name of Applet1 instead of applet1
    thanks

Maybe you are looking for

  • When i try to scroll on a image webside it scips to the bottom and then to the top of the image w/ a vertical black line instead of the curser

    whaen i try to sroll on images on a website that has a gallery and where there is a description up top and a image in th middle and more txt on the sides the scrolling is extremly choppy when i use the arrow keys to scroll

  • Unable to re-join domain

    Hi, I have installed Windows Server 2012 r2 Essentials and successfully connected 5 computers Windows 8.1 Pro to my domain (Test). After that, i removed one of the computer (Test5) from the domain using Essentials Dashboard under Devices --> Remove c

  • Checkbox to strikeout text

    Is there a way to have a checkbox or some other form object that can then trigger a piece of text to be striken out or something similar?

  • Indesign server application

    I have a separate web application, which among other things works with Indesign files. I need to process indesign files: 1)extract text; return extracted text to my application; 2)replace some specific text content inside document; return output docu

  • OutOfMemoryError application crash

    We have a pretty simple application that recently started to fail with folowing: [04/May/2005:11:30:43] failure (15425):      CORE4007: Internal error: Unexpected Java exception thrown (java.lang.OutOfMemoryError, no description), stack: java.lang.Ou