UNCONFIRMED 50829
Java Applet using EMBED or OBJECT tag produces unnecessary request
https://bugs.webkit.org/show_bug.cgi?id=50829
Summary Java Applet using EMBED or OBJECT tag produces unnecessary request
Rocco J Carello
Reported 2010-12-10 10:31:14 PST
When using EMBED to load a Java Applet, Safari makes an unnecessary request for the value of the CODE parameter. Example: <embed height="0" width="0" type="application/x-java-applet" codebase="java/" archive="ReceiptPrinter.jar" code="ReceiptPrinter"> Makes the following request: Request URL:http://SITE_URL/ReceiptPrinter This request, of course, results in a "Failed to Load Resource" error in the console. The Java Applet works fine though. Works in Firefox. Works in IE8. Works, but similar error in Chrome. Similar results using the OBJECT tag with the difference being that IE8 crashes: <object type="application/x-java-applet" width="0" height="0" name="ReceiptPrinter" id="ReceiptPrinter"> <param name="codebase" value="java/"> <param name="archive" value="ReceiptPrinter.jar"> <param name="code" value="ReceiptPrinter"> </object> I am attempting to use EMBED or OBJECT because APPLET is deprecated.
Attachments
tomaccia
Comment 1 2012-02-28 09:50:49 PST
Hello, Issue seems related to the bug 7163 opened in 2006. I think this issue has now more importance since there are now 2 major browser that use webkit both on Mac and Windows and they are growing in popularity (Chrome and Safari). Would it be possible to confirm and increase the urgency of the issue? In my company and we can see from the logs that the bug is causing a lot of useless request to our production platform. Regards, Thomas
Note You need to log in before you can comment on or make changes to this bug.