Newbie: Is the CMS output HTML or Java applets?

Hi!
I am looking for what software to buy: Microsoft or Oracle.
In that regard, I see that Java is the development language. Does this mean that the web-interface for clients is based on Java applets, or does the Java-application just generate HTML-code like asp.NET, php and similar server-side languages?
Thanks!

The old Oracle 9iFS web interface was based on Java and JSP, and as such, was an HTML-based interface. It did not use applets.
The new Oracle CMSDK will include a web starter application sample (with source code) also based on Java and JSP, which is also an HTML-based interface that does not use applets.
The CMSDK is a development platform, and you could write a web interface based on Java applets if you wanted to, or based on HTML technologies such as servlets (J2EE) or JSP. You can also write standalone client software in any language that communicates with the CMSDK server using a protocol, such as HTTP. You may define your own protocol and write your own protocol server (in Java), or you may use an existing protocol, like WebDAV/HTTP.
See the CMSDK developer's guide for more information.

Similar Messages

  • Html form - java applet

    Hi friends
    I have an html form with an editable textfield on it. Next to it is an Java Applet with an Button on it. If you klick the button, a Popup aperars where the textfield can be modified. There is also an OK Button on this Popup. If you klick the Button, I want that the value of my string will be plased into the html form.
    If anyone knows how that works. Please help me.
    thanks kendiman

    Sweet, I was wondering how to do that.
    So if one was to design a menu using java, the external Java Script can access the public variables within the applets?
    So if we had
    public class applet extends Applet {
       public int test;
       public applet() {
          test = 6;
    }then the javascript command
    document.applet.test
    would return a 6?
    Do I have this correctly?
    Dale M

  • Display HTML in Java Applet

    Is it possible to display HTML text in some control in Applet. I do not want to use the swing class for that. please guide me. I am currently using the TextArea to display text which displays text only in a single color. But I want to display text in multicolor. How to do it. If possible please show me with an example.

    You will have to write your own component. Look at java.awt.FontMetrics to get the size of a string. Use
    g.setColor(Color.blue);
    Graphics.drawString(myString,x,y);
    to draw a blue string.

  • The window of a java applet is not displayed by Netscape7.1.

    I am using Netscape7.1.
    A parent window is only what opens a new window.
    Please see index.html.
    --------index.html--------
    <HTML>
    <HEAD><TITLE>OYA</TITLE></HEAD>
    <BODY>
    <FORM>
    <CENTER><BR><BR><BR><BR><BR><BR><BR><BR>
    <input type="button" onClick="WIN=open('KODOMO.html', 'win_new_comp', ''); WIN.focus();" value="Open the Window">
    </FORM>
    </CENTER>
    </BODY>
    </HTML>
    There is a button of "CLOSE" with the Java applet called "SimplaApplet.class" in the window opened newly.
    Please see KODOMO.html and SimplaApplet.java.
    --------KODOMO.html--------
    <html>
    <title>Using Applet</title>
    <body>
    <FORM>
    <CENTER><BR><BR><BR>
    <!-- for IE -->
    <OBJECT classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"width="100" height="50">
    <PARAM NAME="type" VALUE="application/x-java-applet;version=1.4">
    <PARAM NAME="java_CODE" VALUE="SimpleApplet">
    <COMMENT>
    <!-- for Netscape-->
    <EMBED type="application/x-java-applet;version=1.4"
    width="100" height="50"
    code="SimpleApplet">
    </EMBED>
    </COMMENT>
    </OBJECT><BR><BR><BR><BR><BR><BR>
    <INPUT TYPE="button" VALUE="CLOSE" onClick="window.close()">
    </CENTER>
    </FORM>
    </BODY>
    </HTML>
    --------SimpleApplet.java--------
    import java.awt.*;
    import java.applet.*;
    public class SimpleApplet extends Applet {
    public void paint (Graphics g) {
    g.drawString("Simple Applet", 10, 30);
    The following operations are performed at this time.
    Step1: "Open the Window" is clicked by index.html.
    Step2: "CLOSE" is clicked by KODOMO.html.
    Step3: "Open the Window" is again clicked by index.html.
    Then, in second KODOMO.html, a Java applet and a "CLOSE" button are never displayed.
    If the same thing is performed by IE6.0 or Netscape4.75, this bug will not happen.
    Please let me know what is bad and whether there is any evasion measure.

    It forgot to write.
    The version of JavaPlug-IN is 1.4.2_03.
    OS is the Windows2000 Japanese version.
    Please access confirming this bug at the following HTML.
    http://web-p.wics.ne.jp/char_audi/index.html

  • Removing the 'Warning Java Applet' Status Bar

    Hi,
    I've written an applet that does not require access outside the sandbox so doesn't need signing. However, it pops up an instance of Window, and because it's not signed the window has a status bar across the bottom which says 'Warning Java Applet' or something similar depending on the browser. Is there any way to remove this status bar without signing the applet or changing the security settings of the browser. I guess it must be added to the window so maybe it's just a component that can be removed, but how?
    Thanks in advance

    Today the Security Warning sign appeared at the bottom of my computer screen - how do I get rid of it. I do have Java whose icon used to be in the lower right hand section of my screen - along with all the other icon programs that I have.
    Now the icon is no longer down on the bottom right of the screen, but in the middle with a Security Warning -(the wording) next to the jave icon.
    This is really annoying me - how can I get rid of it, and - why did it appear here?
    Anxiously awaiting your reply.
    Donna

  • How to Debug Java Applet called in a BSP Component

    Hi All,
    In CRM Marketing->Segments->Graphical Modeler
    A click on settings button will load a Java Applet window.
    The settings window displays some elements. I want to translate a text displayed in that Java Applet window.
    Please let me know the ways to debug a Java applet loaded from BSP Component or ways the data is loaded into Java applet from SAP.
    Your help would be appreciated and points will be rewarded.
    Thanks a lot in advance.

    For the newbies, like me:
    Instruction to setup and debug an applet in Eclipse IDE via your Browser
    Java Console Setup for Applet debugging:
    1. Open up the Java Console Application by double clicking on it at C:\Program Files (x86)\Java\jre1.6.0_03\bin\javacpl.exe
    2. Select the Java Tab
    3. View Applet Runtime Settings button
    4. Enter in the Java Runtime Parameters the following: -Xdebug -Xrunjdwp:transport=dt_socket,address=5555,server=y,suspend=y
    5. Note: the port address 5555 can be anytime you want. You will need to enter whatever number you select into Eclipse IDE.
    6. Note: if you don�t need to debug code in the Applet�s init() method, then use....suspend=n (Not tested yet.)
    Eclipse setup for Applet debugging:
    1. Open up Eclipse and create your Applet. Once you are ready to debug go to the next step.
    2. Select the top level Run menu
    3. Pick the Open Debug Dialog� option
    4. In the left column select Remote Java Application
    5. Then select the �New� button to create a debug configuration for the remote session (the new button looks like a page with a yellow plus in the upper right hand corner)
    6. Give your session a name. I used the class name followed with the work remote for example: mainclassnameRemote
    7. Set connection type to Standard (Socket Attached)
    8. Host to localhost
    9. Port to 5555, or whatever you used in Java Console Setup step 5.
    10. Due not check the �Allow termination of remote VM�
    11. Due not close this window.
    Start debugging:
    1. Go to your Applet html launch file and launch in a browser
    2. Then go back to eclipse and select the debug button
    3. Eclipse should now throw you into the debugger mode.
    4. If it hangs, just retry again. It seems to work ok most of the time. A few time I need to close the browser and start over and then it seems to work.

  • Java Applet Security Restriction?

    Hi,
    I wrote a java applet and test it on my computer. When I view it with applet viewer I can view the applet correctly. But when I try to view on the Internet Explorer, it said "Java Applet Started" But I didn't see anything on the screen.
    This happens when I actually incorporate the JFileChooser. When I take out that, the applet can run.
    What I think is, even if I run the applect in Internet Explorer, since I am actually running directly from my computer (i.e C:\Myapplet.html) and not even through Apache or IIS why I won't be able to carry out such operation?

    Output from JavaConsole
    Exception in thread "AWT-EventQueue-2" java.security.AccessControlException: access denied (java.util.PropertyPermission user.dir read)
         at java.security.AccessControlContext.checkPermission(Unknown Source)
         at java.security.AccessController.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkPropertyAccess(Unknown Source)
         at java.lang.System.getProperty(Unknown Source)
         at java.io.Win32FileSystem.getUserPath(Unknown Source)
         at java.io.Win32FileSystem.resolve(Unknown Source)
         at java.io.File.getAbsolutePath(Unknown Source)
         at sun.awt.shell.Win32ShellFolder2.<init>(Unknown Source)
         at sun.awt.shell.Win32ShellFolder2.listFiles(Unknown Source)
         at sun.awt.shell.ShellFolder.listFiles(Unknown Source)
         at sun.awt.shell.Win32ShellFolderManager2.get(Unknown Source)
         at sun.awt.shell.ShellFolder.get(Unknown Source)
         at javax.swing.plaf.metal.MetalFileChooserUI.updateUseShellFolder(Unknown Source)
         at javax.swing.plaf.metal.MetalFileChooserUI.installComponents(Unknown Source)
         at javax.swing.plaf.basic.BasicFileChooserUI.installUI(Unknown Source)
         at javax.swing.plaf.metal.MetalFileChooserUI.installUI(Unknown Source)
         at javax.swing.JComponent.setUI(Unknown Source)
         at javax.swing.JFileChooser.updateUI(Unknown Source)
         at javax.swing.JFileChooser.setup(Unknown Source)
         at javax.swing.JFileChooser.<init>(Unknown Source)
         at javax.swing.JFileChooser.<init>(Unknown Source)
         at FotoUpload.createGUI(FotoUpload.java:48)
         at FotoUpload.access$000(FotoUpload.java:24)
         at FotoUpload$1.run(FotoUpload.java:86)
         at java.awt.event.InvocationEvent.dispatch(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    This is what happen when I run my code below
    * FotoUpload.java
    * Created on November 15, 2006, 11:30 AM
    * To change this template, choose Tools | Template Manager
    * and open the template in the editor.
    * @author Leo Liu
    import java.io.*;
    import javax.swing.JApplet;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.border.*;
    import javax.swing.JComponent.*;
    import javax.swing.filechooser.*;
    public class FotoUpload extends JApplet implements ActionListener{
        JButton BtnBrowse;
        JPanel PnlUpload;
        JFileChooser fcSelectFile;
        JTextArea log;
        private void createGUI(){
            setLayout(new BorderLayout(5,5));
            //Making Button
            BtnBrowse=new JButton("Browse");
            BtnBrowse.setToolTipText("Click on Browse to select picture");
            BtnBrowse.setAlignmentX(Component.RIGHT_ALIGNMENT);
            BtnBrowse.setPreferredSize(new Dimension(30,20));
            BtnBrowse.addActionListener(this);
            //Putting Button inside the panel and specifying the button size
            JPanel PnlBrowse = new JPanel();
            PnlBrowse.setLayout(new BoxLayout(PnlBrowse, BoxLayout.X_AXIS));
            PnlBrowse.add(Box.createRigidArea(new Dimension(30,20)));
            PnlBrowse.add(BtnBrowse);
            //Create a file chooser
            fcSelectFile = new JFileChooser();
            //Creating Panel to show selected pictures for uploading
            PnlUpload=new JPanel();
            PnlUpload.setBorder(javax.swing.BorderFactory.createTitledBorder("Place Pictures to Upload"));
            PnlUpload.setToolTipText("You can drag and drop images into this area");
            log=new JTextArea(5,20);
            log.setMargin(new Insets(5,5,5,5));
            log.setEditable(false);
            PnlUpload.add(log);
            //adding UI components to Applet
            add(PnlBrowse,BorderLayout.NORTH);
            add(PnlUpload,BorderLayout.CENTER);
        public void actionPerformed(ActionEvent e) {
            if (e.getSource() == BtnBrowse) {
                int returnVal = fcSelectFile.showDialog(this,"Select");
                if (returnVal == JFileChooser.APPROVE_OPTION) {
                    File file[]= fcSelectFile.getSelectedFiles();
                    //This is where a real application would open the file.
                    int count=0;
                    while(count<file.length)
                        log.append("Opening: " + file[count].getName() + ".\n");
                        count++;
                } else {
                    log.append("Open command cancelled by user.\n");
        public void init() {
            javax.swing.SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    createGUI();
    }It seems like I need to catch some exception or something. Can anyone help me?

  • Java Applet HelloWorld "Getting Started With Applets" example not working

    Hi there,
    It's been ages since I ran my Linux CentOS boot of Linux but I am going through the official oracle java applet tutorials, just every time I try and run the "Hello World" applet in Firefox 17.0.3 and I am running the Iced Tea thing for java applets.
    Every time I try and run the example from the following code:
    import javax.swing.JApplet;
    import javax.swing.SwingUtilities;
    import javax.swing.JLabel;
    public class HelloWorld extends JApplet
      // called when the user enters the html page:
      public void init() // keep apps within the init() function very small as per the http://docs.oracle.com/javase/tutorial/deployment/applet/appletMethods.html
        try{
          SwingUtilities.invokeAndWait(new Runnable()
            public void run()
           JLabel myLabel = new JLabel("Hello World");
           add(myLabel);
            } // end running the application
          }); //end of swing invokeand wait
        } catch (Exception error){ // end user running the app in page
           // System.err.println("GUI didn't work on initial run");
    }It keeps bringing up the error "Start: Applet not initialized" I did google that basic error and from what I found I should consult the JavaConsole, I know the console was removed from the Firefox menu quite a while ago. So went to find a way of loading it using the IcedTea one but it keeps bringing up a load of errors in even trying to run that.
    Is there anyway of sorting this out? I mean I have even tried installing the one on the oracle website, the plain JDK but nothing seems to work.
    Is there anyone that can help me get applets working? I was even going to go as far as to reinstall my distro but I want to avoid that as much as possible.
    Thanks and I look forward to any replies,
    Jeremy.

    in the Getting Started with Java DB tutorial they
    tell u how to set ur "DERBY_HOME" (what is that?).
    once i press enter after typing this command:
    set DERBY_HOME=D:\Java\Java
    Phonebook\javadb in my command prompt do i get
    any message or does it just go to the next line?type env or set or whatever in the command line to see what your environment variables are set to
    they also tell u how to set ur "JAVA_HOME" (what is
    that?). The Java installation you want to use
    in their example they give u this: set
    JAVA_HOME=C:\Program Files\Java\j2se1.4.2_05but in my java folder i have jdk1.6.0 and jre1.6.0
    but no j2se1.4.2_05, so which 1 must i choose?It's up to you. I'd go with 1.6
    also once ive done this: set
    DERBY_HOME=D:\Java\Java Phonebook\javadb this
    set JAVA_HOME=D:\Program
    Files\Java\jre1.6.0 and this set
    PATH=%DERBY_HOME%\bin;%PATH% and then type
    sysinfo to verify that the variables were set
    correctly i get these errors: 'D:\Java\Java' is
    not recognized as an internal or external command,
    operable program or batch file and '""'
    is not recognized as an internal or external command,
    operable program or batch file any help would
    really be appreciated because this is really killing
    me!you need to set your path variable - so something like:
    set PATH=C:\Program Files\Java\j2se1.4.2_05\bin

  • Safari 6.0.4 - java applet keeps running when not in use?

    Mac OS X 10.7.5
    Safari 6.0.4
    all the latest updates (software) as of 4/27/13
    Oracle's Java r 21 also installed (latest)
    website: http://javatester.org/version.html
    NOTE: I have seen this on more than 1 computer that the 1st time running the Java applet (after clicking on the plugin missing placeholder, the app appears to begin loading, but 'hangs' as far as UI is concerned, although it is using CPU and accessing the disk the whole time.
    Refreshing the page then allows you to see the Oracle java version displayed in the pink box
    However, what I notice is that if you enter a new URL and go there, blowing away the Java applet page, guess what's still running in the background (via Activity Monitor) "Java Applet - javatester.org", occupying memory and using some small CPU.
    this seems like ridiculously bad behavior in general. Has anyone else seen similar issues? is this related to an outstanding memory leak (bigger problem) in Safari? Any way to get java to behave if you aren't possibly using an applet?
    could it be lazy cleanup/garbage collection in Safari? meaning it might vanish from the process list at some indeterminate point in the future? closing the tab it was running on (before a new URL was loaded) outright doesn't seem to kill it.

    I have not used Onyx recently, although i use a number of other utils, and reset safari periodically.
    It seems that it may be a delayed garbage collection issue. If I leave it for a bit and then come back it seems that the process is disappearing. If I can isolate anything more reliably I'll post again, but for now I'm going to stop worrying about it.
    It was lingering long enough I thought maybe was a leak, but i guess I'm just not patient enough...
    Also, I haven't reliably reproduced the high CPU cycle / hung applet condition on the 1st load. that may be something that shouldn't be going on (regarding the new security around java probably) but low pain point once I reload the page and tell safari to let the app run all the time.
    so just to recap
    - looks like the applet persistence in the process table is a delayed disposal issue that eventually gets done
    - hanging applet on 1st load post security patch may be something, but hitting cmd-R is a lot more satisfying than devoting a lot of time to tracking that down right now
    thanks for your suggestion

  • Cannot initiate java applet

    I am trying to rework a Java Applet. It should work, but for some reason, when I put it into an html container I get this in the debug window:
    java.lang.NoClassDefFoundError: CroaxApplet (wrong name: Croax/CroaxApplet)
    This seems to have something to do with CroaxApplet.class being a part of the package "Croax," but I am unsure how to solve the problem. Anyone?
    Edited by: monocledsardine on Jan 12, 2008 11:42 AM

    Here's the code:
    package Croax;
    import java.applet.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.image.*;
    import java.net.*;
    import javax.imageio.*;
    public class CroaxApplet extends Applet implements Runnable, KeyListener {
        final int roomWidth = 800;
        final int roomHeight = 600;
        Image dbimg;
        Graphics dbg;
        boolean keyLeft, keyRight, keyUp, keyDown=false;
        boolean keyPressLeft, keyPressRight, keyPressUp, keyPressDown=false;
        public void init(){
            addKeyListener(this);
        public void start(){
            Thread th = new Thread(this);
            th.start();
        public void destroy(){
        public void keyTyped(KeyEvent e){
        public void keyPressed(KeyEvent e){
            if (e.getKeyCode() == 37){
                keyLeft=true;
                keyPressLeft=true;
            if (e.getKeyCode() == 39){
                keyRight=true;
                keyPressRight=true;
            if (e.getKeyCode() == 38){
                keyUp=true;
                keyPressUp=true;
            if (e.getKeyCode() == 40){
                keyDown=true;
                keyPressDown=true;
        public void keyReleased(KeyEvent e){
            if (e.getKeyCode() == 37){
                keyLeft=false;
            if (e.getKeyCode() == 39){
                keyRight=false;
            if (e.getKeyCode() == 38){
                keyUp=false;
            if (e.getKeyCode() == 40){
                keyDown=false;
        public void run() {
            Thread.currentThread().setPriority(Thread.MIN_PRIORITY);
            while (true){
                repaint();
                try{
                    Thread.sleep(20);
                } catch (InterruptedException e){
                    e.printStackTrace();
                Thread.currentThread().setPriority(Thread.MAX_PRIORITY);
        public void update(Graphics g){
            if (dbimg == null){
                dbimg = createImage(this.getSize().width, this.getSize().height);
                dbg = dbimg.getGraphics();
            dbg.setColor(getBackground());
            dbg.fillRect(0, 0, this.getSize().width, this.getSize().height);
            dbg.setColor(getForeground());
            draw(dbg);
            paint(g);
        public void paint(Graphics g){
            g.drawImage(dbimg, 0, 0, this);
        public void draw(Graphics g){
    }

  • Help with java applets

    Ok i know i haven't read the applet tutorial or had much experience with applets but just hear me out and see if you can help me.
    BACKGROUND
    Ok...so i have previously viewed an applet on windows viewing an html file on my computer. I am trying to view just the most simple applet (helloworld) on linux. I'm using Ubuntu linux, the latest version as of February 23, 2006.I created an applet file and an html file in the same directory with the html file having an <applet> tag in it linking to the HelloWorldApp. I have tried viewing the html file and the java applet won't load. Everything other than the applet worked and I'm just stuck.
    So my plea is would somebody please just paste the bare minimum html file and applet file that you can see an applet with? I want to learn about applets and will do the tutorial but I would really like to just see one.
    Please help,
    A frustrated applet noob
    p.s.
    According to java.com I have installed JRE 5.0 and i have compiled a java application so I'm pretty sure I have successfully installed JDK 5.0.

    Bob, what web browser are you using?
    Make sure that the browser supports Java applets.
    If you want just to debug your applet try appletviewer utility
    from JDK first.

  • Java Script - Java Applet Communication help me

    hi
    In my website i used html form to get the input from user. the user press the button the value are passed into java applet. The result will display in applet.
    my HTML coding for calling applet is
    <SCRIPT LANGUAGE="JavaScript"><!--
    var info = navigator.userAgent; var ns = false;
    var ie = (info.indexOf("MSIE") > 0 && info.indexOf("Win") > 0 && info.indexOf("Windows 3.1") < 0);
    //--></SCRIPT>
    <SCRIPT LANGUAGE="JavaScript"><!--
    if (_ie == true) document.writeln('<Center><OBJECT classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93" width="360" height="350" codebase="http://java.sun.com/products/plugin/1.1.2/jinstall-112-win32.cab#Vers ion=1,1,2,0"><NOEMBED><XMP>');
    else if (_ns == true) document.writeln('<EMBED type="application/x-java-applet;version=1.1.2" java_CODE = "suddhi.class" name=SuddhiPanchang width="360" height="350" pluginspage="http://java.sun.com/products/plugin/1.1.2/plugin-install.html"> <NOEMBED><XMP>');
    //--></SCRIPT>
    <APPLET mayscript="true" CODE = "suddhi.class" width="450" height="200" name=SuddhiPanchang ></XMP>
    <PARAM NAME = CODE VALUE = "suddhi.class" >
    </APPLET></NOEMBED></EMBED></OBJECT>
    java script code
    function calculate()
    if(checkEntries(document.forms[0]))return;
    with(Math){
    var day1 = floor(document.forms[0].Day1.value);
    var mon1 = floor(document.forms[0].Month1.selectedIndex) +1;
    var year1 = floor(document.forms[0].Year1.value);
    var day2 = floor(document.forms[0].Day2.value);
    var mon2 = floor(document.forms[0].Month2.selectedIndex) +1;
    var year2 = floor(document.forms[0].Year2.value);
    var tzone = abs(floor(document.forms[0].ZoneHour.value));
    tzone += floor(document.forms[0].ZoneMin.value)/60;
    if(Math.floor(document.forms[0].ZoneHour.value)<0.0) tzone *= -1;
    document.SuddhiPanchang.setStart(day1,mon1,year1,day2,mon2,year2,tzone);}
    i have error in the above line
    'document.SuddhiPanchang' is null or not an object
    url: http:\\rafik.cheyon.com\panch\msuddhi.htm check this
    please help me
    thanx

    You need to access it as document.formname.objectname

  • Java applet loading fails

    Hi,
    I am having JRE 1.5.0_08 version on my system. But after I have installed this version I am receiving the following message in the status bar.
    Loading Java Applet Failed
    When I uninstall this version...the applet works properly. Do I need to install any patch or Do I need uninstall the version
    Thanks in advance,
    Sudheer

    I found this Metalink that solved my problem.
    Note:171159.1

  • JComboBox shows "Java Applet Window" as last element

    Hey all,
    I am having a problem with using JComboBox. When I use JComboBox and show it in a JDialog (popup window), the last element of the drop down (JComboBox) is "Java Applet Window". This element is, however, not selectable. I want to get rid fo the "Java Applet Window" in my dropdown.
    This problem only happens when my applet opens up a JDialog that has the JComboBox, but does not happen when I add the JComboBox directly to the applet.
    I've read around in other forums that this has to do with security. I understand the need to show that a popup window (JDialog) is an applet window so the user doesn't mistake it as one of the native windows. But, the JComboBox is not a whole 'nother window, so why does it feel the needs to add that last line to designate it as a "Java Applet Window?"
    Thanks.
    Nina.

    My apologies, I did not clarify myself in my question. Sorry that I created misunderstandings of the problem - as evident in the response in the previous post from himanshug.
    I am using JDK 1.3.1
    I must use an applet, but all my components are standalone. They can be ran as a standalone application. But for deployment, we are using applets. It's easier to do applets so clients can access via browser than deploy a whole application installation on 50 machines halfway across the world.
    And no, there is no element in my list that says "Java Applet Window". When running my application standalone, the "Java Applet Window" does not appear as the last element in my drop down.
    The "Java Applet Window" also does NOT appear when I add the drop down directly to the applet. It only appears when the drop down is in a JDialog that gets launched by an applet.
    My problem: How to get rid of the "Java Applet Window" as it seems something is adding this to my dropdown. And it's not my code that is adding it.
    Thanks. I am also up'ing the duke dollars for a solution to this to 15.

  • Backspace in JAVA Applet - How to fix

    I am running RedHat 7.2 and everything on my keyboard works normally.
    However, when I start the Crossword Puzzle applet (in the Games section) in Yahoo, the Backspace key does not function the same way as it does everywhere else. In particular, I have to use the Ctrl-H keys to perform a move left + character delete.
    Is this a problem isolated to this applet (Crossword Puzzle) or is there a general place to look to set the keyboard keys when a Java applet is running?
    Thanks in advance for any help.
    Donald

    I have tried most of the browsers in both RedHat 7.2 and Mandrake 8.2, and with both Gnome and KDE desktops. Some of the browsers would not run the applet.
    I have the problem with Netscape 6.22, with Java plugin 1.3.1_02-b02
    This browser is the latest version. I am not sure about the Java plugin.
    Regards,
    Donald

Maybe you are looking for