Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am working for a developing firm and am doing a major redesign on a Web Application, which reloaded everything after each click, to make extensive use of Javascript, so it actually feels like a real Web application. One of the Features is to use a web-based Painter (think of MSPaint on the Web), which I embed on the Page on Demand. After the image is painted and uploaded, the Web-app then unloads the applet and proceeds to show the directory where the file was uploaded to.

This is where Trouble starts. It all works on IE and Safari, but not on Firefox 3.5 (3.0 works perfectly though). Firebug tells me that the expando property is missing.

The Web-app Tiparlo which I was working on before had a similar Problem (in fact, any manipulation done on an applet via jQuery is faulty) but solved that Problem by wrapping a div around and controlling (hide and show) the div instead of the applet. This, unfortunately isn't applicable on this Web-app, because the Applet has to be destroyed and not just hidden and shown, as it takes up too much resources to be run the entire time where it is not needed.

To make it short: Is it possible to make an Applet destroy itself via Javascript? Alternatively: Is there a workaround on the jQuery/expando/applet problem? I know that applet is deprecated in HTML 4.01 strict but changing it to object is not an option right now.

EDIT: I have added a Picture of Firefox + Firebug to show you the actual Error Message. Posting Code does no god, since it works flawless on every other Browser and is a Firefox 3.5 specific Problem. Here be pictures

Note: You can ignore the JS Bug coming from button.js.

share|improve this question
4  
What happens if you destroy the DIV that surrounds the applet? (not hide it, destroy it with removeElement and delete – Itay Moav -Malimovka Aug 12 '09 at 16:00
1  
I tried that, but to no avail. My Theory: I imagine that by hiding the parent div, the Browser itself takes care of hiding the children too and not Javascript. But, when deleting the parent div, it is also Javascript's Job to delete the child applet hence causing the expando Bug to arise. I have been looking at the jQuery Bug Tracker and that particular Bug is listed on the Roadmap for the 1.3.3 release. Since I cannot wait for it to fix itself (be fixed by jQuery dev Team), I have to find a workaround. – Mike Aug 13 '09 at 6:28

2 Answers

up vote 1 down vote accepted

You could always load the applet in a an iframe and just navigate away from the page where the applet is loaded. This will kill it.

Your other option if you want to call the destroy from javascript would be to put something like this in.

 <script>
 document.MyApplet.killApplet();
 </script>


 public void killApplet() 
 {
    AccessController.doPrivileged(new PrivilegedAction() 
   {

        public Void run() {
            // kill the JVM
            System.exit(0);
            return null;
        }
    });
 }

This is not a nice way to kill an applet but on newer browsers it does not throw a JS error, on older ones like IE6 it will throw a js error.

share|improve this answer
Yep, this one solves the problem (generates a new one but I can handle that one). – Mike Aug 14 '09 at 7:54
What was the new problem it created, just curious. – Keibosh Aug 17 '09 at 15:17
If you kill the applet after the javascript call finishes it will probably avoid the error. You can do this with java.util.Timer.schedule(). – Sarel Botha Jun 3 at 16:36

I would suggest that you create a class that monitors the applet to be killed. run the monitor as some sort of servlet and get javascript to post 'kill applet' commands when it needs to be killed.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.