• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Unable to open Applet in Firefox/Mozilla

 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All,

I am dveloping one applicatiion that does DnD(Drag and Drop) for picture images,and then upload the byte content to the server...
I have wriiten a code for the DnD and also got the signed jar(which will contain .class) to access local resource of the client machine.

Here is a HTML code that i am using to display Applet
<html>
<head>
<title>Dnd Uploader Screen</title>
</head>
<body>
<applet code="com.el.chandra.AppletJUploader.class" width="400" height="400" archive="app.jar" codebase="C:\Documents and Settings">
</applet>
</body>
</html>

using above file I am able to see the applet in IE browser, along with performing DnD operation.

But When i am using Mozilla/Firefox to open the applet , a Blank page comes...
can anybosy tell me where is the problem.
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Welcome to JavaRanch.

Do you see any messages in the Java console?
 
Nilesh Gupta
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Ulf Dittmer:
Welcome to JavaRanch.

Do you see any messages in the Java console?



No , The page is blank and even if we right click in the applet area nothing comes.... but when i seen the source of Html page, it has the applet declaration..looks like Applet is loaded but unable to see it...
is it a problem with , Browser or something else..
 
Ulf Dittmer
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Any messages would be in the Java Console (which you can access through the Java Plugin control panle if you don't see it), not in the applet area in the browser.
 
Nilesh Gupta
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Java Console is Empty.
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic