Applet inside a UIX screen

I am trying to use an applet inside my UIX page. does anyone have any thought on how to do this. I am using Jdev 10g for this. I have gotten as far as the error "element OBJECT not defined in parent pageLayout"
maybe I just need to know where to stick the code?
any thoughts?
thanks

ok here is the code.
I would like the applet to appear in the middle of the screen, but this is where I could get the applet to display, also I have not put in the side nav yet.
thank for the time and effort.
<content>
<dataScope xmlns="http://xmlns.oracle.com/uix/ui">
<provider></provider>
<contents>
<document>
<metaContainer>
<head title="Heading here"/>
</metaContainer>
<contents>
<body>
<contents>
<form name="form0">
<contents>
<pageLayout title="Title">
<corporateBranding>
<image source="ennovation.jpg" />
</corporateBranding>
<tabs>
<tabBar>
<contents>
<link text="Home" />
<link text="Configuration" />
<link text="Tracking" />
<link text="ReferenceTables"/>
</contents>
</tabBar>
</tabs>
<pageHeader>
<globalHeader>
<contents>
<link text=" "destination=""/>
</contents>
</globalHeader>
</pageHeader>
<globalButtons>
<globalButtonBar>
<contents>
<globalButton text="ERO Suite" />
<globalButton text="Contact Us" />
<globalButton text="Help" />
</contents>
</globalButtonBar>
</globalButtons>
<contents/>
</pageLayout>
<pageLayout xmlns:html="http://www.w3.org/TR/REC-html40">
<contents>
<html:object classid="clsid:8AD9C840-044E-11D1-B3E9- 00805F499D93" width = "1250" height = "575" codebase="http://java.sun.com/products/plugin/1.3/jinstall-13-win32.cab#Version=1,3,0,0">
<html:param name = "CODE" value = "com.nwoods.jgo.examples.flower.Flower" />
<html:param name = "CODEBASE" value = "." />
<html:param name = "ARCHIVE" value = "Flower.jar" />
<html:param name="type" value="application/x-java- applet;version=1.3"/>
<html:param name="scriptable" value="false"/>
</html:object>
</contents>
</pageLayout>
<pageLayout>
<contents>
<copyright>
<styledText text="Ennovation Inc 2004"
styleClass="OraCopyright"/>
</copyright>
<privacy>
<link text="Privacy Statement" destination=""/>
</privacy>
</contents>
</pageLayout>
</contents>
</form>
</contents>
</body>
</contents>
</document>
</contents>
</dataScope>
</content>
<handlers>
</handlers>
</page>

Similar Messages

  • It looked like a small bug going up and down on my screen then it stopped about 12 o clock a quarter of the way from the top, now it seems to be burned in to the inside of the screen, anyone seen this before?  And what can be done about it,  macbook pro

    I have what looked like a small bug that ran up and down the screen and then sudenly stopped in center upper half of screen and now appears to be burned in to the inside of the screen, anyone had this probelm before and what can be done about it?

    Thanks for the suggestion, the next step was to call Apple, who gave me a claim number, which I discovered you must have to get anything done with them.  They refered me to a Apple store or repair center, after some reseach took it to the Computer Store in Mobile, Alabama and they were excellent.  They took pictures of the screen with bug submitted it to Apple who denied the claim but they kept kicking it up to the next level and finally Apple agreed to sent new cover.  The Computer Store had the cover the next day, they changed it out and now I am bug free.  If your in the area of Mobile Alabama you can feel good about getting help from the Computer Store.  For the two folks that responded to my note, Thank You, good comments and good advice.

  • Handling multiple applets inside applet window

    Hi all,
    Does anyone know of a tutorial for handling multiple applets inside an applet window ?? Any suggestions would be greatly appreciated.
    Regards,

    Hello vhhuynh,
    Did you ever get a solution to your question: 'tutorial for handling multiple applets inside an applet window'?
    I have the same situation...
    thanks, msp@duke

  • How To open applet inside AWT Frame

    Hi there !
    I want to open my applet directly inside a AWT Frame window from a hyper link...
    That is when a user clicks a hyper link i want to open my applet inside a AWT Frame...I do not want my applet to be opened inside a browser window is there any possibility to do this ...pls help me
    -Priya

    hi,
    i see one way, but i really do not know it works or not.
    Try the following:
    An applet is nothing more then a panel. So you can intanciate the applet:Class class1=new Class.forName(nameOfApplet);
    Applet a=(Applet)class1.newInstance(//maybe a parameter);
    frame.add(a);
    a.init(); //calling the init-method of the appletJust try, but I really can't commit you the workability.
    regards

  • How to insert 2D applet inside the 3D applet

    i'm doing a project that requires the use of simple 2D applets inside the
    virtual world of Java3D...
    i'm a newbie in Java3D, i've searched the Java3D API specification, and i found nothing..
    can anyone help me .. or even give me an idea on how to do it??
    thanks

    take a look at the
    javax.media.j3d.Billboard
    class
    regards

  • Embedding the Applets inside an activeX control

    Hi there !
    We r trying to embedd an applet inside activeX control.Anybody has any idea how to do this?
    Thanks,
    swami

    There is a tool available from Microsoft to do this (comes in part Microsoft SDK for Java) called javareg, this allows you to embedd java inside ActiveX. a search at http://support.microsoft.com will provide more info.
    Be wary of subsequent releases of the code though as there are dependencies on the generated type library. I think it only worked if further versions were created using the original type library can't remember but lots of headaches at the time.
    I think Sun provide an equivilent - java bridge ????
    ood luck I found it a real pain

  • Applet inside JSP trouble

    Hi,
    I am having trouble in configuring my application to run an applet inside my JSP pages.
    This is my dir structure:
    team/WEB-INF/classes/team/DBAccess.class
    team/WEB-INF/lib/ojdbc14.jar
    team/AppletClass/MyApplet.class
    team/reports/report.jsp
    team/main.jsp
    The Applet class MyApplet is called from within report.jsp by the following codes of line:
    <jsp:plugin type="applet" code = "MyApplet" codebase="../AppletClass/"></jsp:plugin>
    The applet works fine if I code it as a stand alone and not using DBAccess class. That is, it appear on my JSP page, however when I use elements from DBAccess class, which is inside WEB-INF/classes/team, it does not load!
    I have added D:\team\WEB-INF\classes\team into CLASSPATH variable of my win2K system.
    Please help!!! I somehow need this applet class to access DBAccess to query DB and display results on the applet.

    You are actually getting confused with server side execution and client side execution.
    Applet is something that run in client side.
    If you see your directory structure you have DBAccess.class in
    team/WEB-INF/classes/team/DBAccess.class directory
    hope you might be knowing WEB-INF is internal to app server not to the client. so applet can;t find the path for DBAccess.class file.
    You have to put that class in team/AppletClass or any other folder where the client applet can access .

  • Can we plugin Signed applet inside JSP

    HI,
    Can we use an applet jar file that has written to save a file inside the JSP page.If we plugin will it provide the security options.Any way is to solve this particular problem .pls give me solution.
    thnx,
    login

    You are actually getting confused with server side execution and client side execution.
    Applet is something that run in client side.
    If you see your directory structure you have DBAccess.class in
    team/WEB-INF/classes/team/DBAccess.class directory
    hope you might be knowing WEB-INF is internal to app server not to the client. so applet can;t find the path for DBAccess.class file.
    You have to put that class in team/AppletClass or any other folder where the client applet can access .

  • Open an applet inside a JFrame?

    Hi all!
    I know this subject is kind of covered in previous topics, but my situation here is a little different.
    I have a TRENDnet TV-IP100 Internet Camera that uses a Java-Applet to show in a browser window the video it captures, using an xview.class file.
    I built a swing application that extends JFrame and I want to open in a JPanel, inside the JFrame, the applet-class that my camera uses.
    My problem is that I can't take and decompile that class file from the camera, in order to compile from the scratch the Applet; some could say illegal.
    So, I wonder if there is a way to open the class file inside my JFrame application. Also, I want to know if I can pass argumets in the JFrame file, like PARAM, NAME, VALUE, as there are important to start the applet.
    Thank you all, in advance.
    John_Astralidis.

    I have not tried this but if the Applet or JApplet class is to be used only as far as a component in a Container (JFrame.getContentPane() returns a Container) I see no problem with explicitly casting into a Panel or even a Container
    Panel p=(Panel)theAppletInstance;
    this.getContentPane().add(p);//this being the JFrame;There be problem of which I have not considered as the applet class is 'different' to many classes.
    Bamkin
    Message was edited by:
    bamkin-ov-lesta
    Container and Panel examples were used as Applet is derived from Panel, which is derived from Containter

  • Applet inside a JAR: Cannot access other classes within the JAR

    Hello,
    Description
    Web app + applet (packaged in a JAR)
    I have followed this tutorial
    JAR contents
    package mypackage
    SimpleApplet.class
    SimpleObj.class
    _"SimpleApplet" uses "SimpleObj"_
    package mypackage;
    public class SimpleApplet extends JApplet {
        @Override
        public void init() {
            SimpleObj obj = new SimpleObj();
    HTML code
    <applet archive="SimpleApplet.jar" codebase="." code="mypackage.SimpleApplet.class" width="800" height="600" />
    SimpleObj cannot be found (Java Console)
    java.lang.NoClassDefFoundError: mypackage/SimpleObj
    at java.lang.Class.getDeclaredConstructors0(Native Method)
    at java.lang.Class.privateGetDeclaredConstructors(Unknown Source)
    at java.lang.Class.getConstructor0(Unknown Source)
    at java.lang.Class.newInstance0(Unknown Source)
    at java.lang.Class.newInstance(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)
    Caused by: java.lang.ClassNotFoundException: mypackage.SimpleObj
    at sun.plugin2.applet.Applet2ClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    ... 8 more
    Caused by: java.io.IOException: open HTTP connection failed:*http://localhost:8080/SimpleApp/mypackage/SimpleObj.class*
    at sun.plugin2.applet.Applet2ClassLoader.getBytes(Unknown Source)
    at sun.plugin2.applet.Applet2ClassLoader.access$000(Unknown Source)
    at sun.plugin2.applet.Applet2ClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    ... 12 more
    Exception: java.lang.NoClassDefFoundError: mypackage/SimpleObj
    It looks like JRE does not search for the SimpleObj class inside the JAR, but tries to get it from the server...
    Any ideas?
    Thanks in advance,
    Gerard
    Edited by: gsoldevila on Dec 10, 2008 2:05 AM

    misread, deleted
    Edited by: atmguy on Dec 10, 2008 1:12 PM

  • Discoverer Plus Applet - Cant get login screen

    Hi,
    I have discoverer 4i set up on Linux and Win 2000 with 9ias 1.0.2.2.
    The discoverer viewer works fine in both environment.
    The discoverer plus works fine with WIN 2000.
    However with Linux the applet does not bring the login screen. The applet continue to be displayed but is not navigable.
    Thanks
    Shailesh

    Hi,
    This happens due to the configuration of the browser and the java installed.
    First make sure the configuration in the browser are set correctly, pop up blocker disabled, lan setting do not prevent access to the discoverer server and son on...
    Try to remove any java version he has on the computer and install a fresh new JRE.
    Now try again.
    Tamir

  • How to run applet inside a browser coz my applet runs outside the browser

    I would like to run the Java Applet viewer in-line inside a Browser Window. Presently, when launched through an html page, the applet opens another main window outside the browser. Can't seem to find any applet parameter tags for it. If there is a way to do that please let me know. Thanks in advance - m.a.

    public class mainGIS extends JApplet {
    public void init() {
    GISEditor tempGISEditor = new GISEditor();
    public mainGIS(){
         GISEditor tempGISEditor = new GISEditor();
         tempGISEditor.setTitle("Franchise Viewer");
         tempGISEditor.setSize(1000,600);
    and..
    <Html>
    <Head>
    <Title></Title>
    </Head>
    <Body>
    <APPLET CODE="mainGIS.class" archive="aaa.jar" WIDTH="800" HEIGHT="600">
    </APPLET>
    </Body>
    </Html>
    it opens outside a web browser!(it pops out) I mean, I want to display my application in-line with the browser

  • Embedding Applet inside HTML

    Hello,
    I have implemented a class that implements java.awt.LayoutManager which uses a set of jar files to run the interface. The windows .bat file created to set classpath and running the java command works fine and the interface works.
    This is the .bat file created.
    java -cp MBJavaProject.jar;jar\MediaBinServer.jar;jar\axis.jar;jar\jaxrpc.jar;jar\saaj.jar;jar\commons-logging-1.0.4.jar;jar\commons-discovery-0.2.jar;jar\wsdl4j-1.5.1.jar;jar\activation.jar;jar\lib\mail.jar MBAdminConsoleBut while embedding it in the browser, it is causing problems and does not show the interface at all. I tried editing with lot of possibilities and here is the latest snippet used inside the html
    <object classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
                    height="300" width="450" >
              <param name="code" value="MBAdminConsole.class" />
              <param name="archive" value="MBJavaProject.jar,jar/MediaBinServer.jar,jar/axis.jar,jar/jaxrpc.jar,jar/saaj.jar,jar/commons-logging-1.0.4.jar,jar/commons-discovery-0.2.jar,jar/wsdl4j-1.5.1.jar,jar/activation.jar,jar/lib/mail.jar" />
            </object>When I tried this, it works though it pops out of the browser and open a separate window for the interface. Inside the browser, it has a erd 'x' sign and java console says that class can not be casted to java.applet.Applet
    Can any one please suggest me the right code to embed in to the html so as to make the interface appear to work from the browser?
    Thanks
    Shivram Rajamanickam

    The class can be casted to java.applet.Applet only if it extends java.applet.Applet.

  • Applet inside of cfdocument

    I'm trying to allow users to create PDF versions of web pages
    for printing tables and figures to be inserted into reports sent to
    our clients. These PDF's need to be in a specific format. The one
    thing I haven't been able to figure out so far is how to get our
    applets to render inside of a cfdocument. We use an applet for
    doing advanced charting of data that is not possible with cfchart.
    Anyone have any ideas how to get an applet to show in its loaded
    form inside of a cfdocument?
    When I run the code, I get an icon inside the applet
    container showing a document with a question mark and an error
    message of "No pilot configured for 'application/java'".
    Thanks for your help,
    Rob

    I do not know if that is possible. Could you generate an
    image (jpg, png, ...) and use it in the cfdocument?

  • Dust Inside my MBP screen? How can I remove it?

    So I noticed some dust or debris inside my screen when I was cleaning it out! I'm never in very dusty rooms and the annoying part is that it's very obvious! How can I remove it (if any way)? Should I take it to Apple? It's only been just over a year (in February!) Will they replace it? I have the AppleCare extended insurance! Please help I have no idea what to do!!

    I think it's best to take it to Apple and have them deal with it.
    I don't want to assume that they will clean it for free.
    But if it was a seal defect, maybe the cleaning would be done for nothing.
    I don't suggest you open and clean it up.  Might void your warranty.

Maybe you are looking for

  • How do I combine my wife's and my itunes accounts?

    My wife has an ipod and her own itunes account on her own computer. I have my own iphone, ipod and itunes account on my own computer. Our computers are networked together with a couple of others in the house. We both download music and find that we a

  • Multithreading - writing to file

    How can I get to write the Thread name, date and time to a file with the same thread name? What would I need to do to write the same information 1000 times to the file? Thank you. import java.lang.Thread; import java.lang.InterruptedException; public

  • Uninstalled epson printer from control panel...installed new brother printer....now i cannot print anything .pdf old or newly downloaded

    uninstalled epson printer from control panel...installed new brother printer....now i cannot print anything .pdf old or newly downloaded@

  • Parsing XML Doc

    Hi everybody Is that possible i could parse an xml document using netbeans ? If yes then where should i put my xml doument in the project folder. Please look at the code and suggest me if there are problems; import org.w3c.dom.Document; import org.ap

  • Auto-index only shows 9 values instead of 91

    I'm pretty new to LabVIEW and am trying to show a cluster of 91 values pulled from a text file.  Just for a test run without using actual values passed, I created a text file with the numbers ranging from 1-91 (1 number per line up to 91).  When I le