Welcome Guest! You need to login or register to make posts.

Notification

Icon
Error

Options
Go to last post Go to first unread
ghazum  
#1 Posted : Friday, January 23, 2009 10:27:57 AM(UTC)
ghazum

Rank: Newbie

Groups: Member
Joined: 12/31/2008(UTC)
Posts: 5

The following error is displayed by JRE 1.6. This works fine in IE (ActiveX), but in Firefox. I checked the path and the files are there. Also, hard coded the class name 'com.aurigma.imageuploader.ImageUploader.class' - no luck either. Any help is greatly appreciated.

Java Plug-in 1.6.0_11
Using JRE version 1.6.0_11 Java HotSpot(TM) Client VM


load: class com.aurigma.imageuploader.ImageUploader.class not found.
java.lang.ClassNotFoundException: com.aurigma.imageuploader.ImageUploader.class
at sun.plugin2.applet.Applet2ClassLoader.findClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at sun.plugin2.applet.Plugin2ClassLoader.loadCode(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.io.IOException: open HTTP connection failed:http://www.netautox.com/_qa/dealer/com/aurigma/imageuploader/ImageUploader/class.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)
... 7 more
Exception: java.lang.ClassNotFoundException: com.aurigma.imageuploader.ImageUploader.class
Tamila  
#2 Posted : Friday, January 23, 2009 6:08:29 PM(UTC)
Tamila

Rank: Advanced Member

Groups: Member
Joined: 3/9/2008(UTC)
Posts: 554

Was thanked: 1 time(s) in 1 post(s)
Hello,

I just looked through your source code and foud that you have pointed incorrect path to ImageUploader5.jar and ImageUploader5.cab files. But I have found them on your site and you should correct your code thus:
Code:
iu.activeXControlCodeBase = "../ImageUploader5.cab";
iu.activeXControlVersion = "5,7,24,0";
iu.javaAppletCodeBase="../";
iu.javaAppletJarFileName = "ImageUploader5.jar";
iu.javaAppletCached = true;
iu.javaAppletVersion = "5.7.24.0";

Aurigma Support Team

UserPostedImage Follow Aurigma on Twitter!
ghazum  
#3 Posted : Saturday, January 24, 2009 10:51:57 PM(UTC)
ghazum

Rank: Newbie

Groups: Member
Joined: 12/31/2008(UTC)
Posts: 5

Made the changes that you recommended, but still getting the same error in Firefox. BTW, the ActiveX and IE work fine with the original code. Any other suggestions? Thanks.
Tamila  
#4 Posted : Sunday, January 25, 2009 1:35:19 PM(UTC)
Tamila

Rank: Advanced Member

Groups: Member
Joined: 3/9/2008(UTC)
Posts: 554

Was thanked: 1 time(s) in 1 post(s)
Hi,

I have found your ImageUploader5.cab and ImageUploader5.jar here:
http://www.netautox.com/ImageUploader5.jar
http://www.netautox.com/ImageUploader5.cab

I recommend you to point the paths to these files as absolute paths:
Code:
iu.activeXControlCodeBase = "http://www.netautox.com/ImageUploader5.cab";
iu.activeXControlVersion = "5,7,24,0";
iu.javaAppletCodeBase="http://www.netautox.com/";
iu.javaAppletJarFileName = "ImageUploader5.jar";

Aurigma Support Team

UserPostedImage Follow Aurigma on Twitter!
ghazum  
#5 Posted : Sunday, January 25, 2009 10:42:21 PM(UTC)
ghazum

Rank: Newbie

Groups: Member
Joined: 12/31/2008(UTC)
Posts: 5

Modified the code per your latest suggestion, but it still produces Java errors in Firefox.
blltest  
#6 Posted : Monday, January 26, 2009 10:46:20 AM(UTC)
blltest

Rank: Newbie

Groups: Member
Joined: 10/10/2008(UTC)
Posts: 2

I'm having the same problem, I run the PHP Basic Demo with the files unchanged, I get this error:


load: class com.aurigma.imageuploader.ImageUploader.class not found.
java.lang.ClassNotFoundException: com.aurigma.imageuploader.ImageUploader.class
at sun.plugin2.applet.Applet2ClassLoader.findClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at sun.plugin2.applet.Plugin2ClassLoader.loadCode(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.io.IOException: open HTTP connection failed:http://localhost/test/ImageUploader/Samples/PHP/com/aurigma/imageuploader/ImageUploader/class.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)
... 7 more
Exception: java.lang.ClassNotFoundException: com.aurigma.imageuploader.ImageUploader.class

I don't get it

Edited by user Monday, January 26, 2009 10:49:40 AM(UTC)  | Reason: Not specified

Tamila  
#7 Posted : Monday, January 26, 2009 7:37:46 PM(UTC)
Tamila

Rank: Advanced Member

Groups: Member
Joined: 3/9/2008(UTC)
Posts: 554

Was thanked: 1 time(s) in 1 post(s)
Hello,

I recommend you to check the path to ImageUploader.jar file, the most likely that it was pointed incorrectly.
Aurigma Support Team

UserPostedImage Follow Aurigma on Twitter!
ghazum  
#8 Posted : Monday, January 26, 2009 9:21:26 PM(UTC)
ghazum

Rank: Newbie

Groups: Member
Joined: 12/31/2008(UTC)
Posts: 5

The jar file can be found in the root directory, in our case.
phutureuk  
#9 Posted : Thursday, June 18, 2009 1:28:03 AM(UTC)
phutureuk

Rank: Newbie

Groups: Member
Joined: 6/18/2009(UTC)
Posts: 1

I am also getting the same error with the New v6, we were trialling v5 last week with no problems! This is the error

load: class com.aurigma.imageuploader.ImageUploader.class not found.
java.lang.ClassNotFoundException: com.aurigma.imageuploader.ImageUploader.class
at sun.plugin2.applet.Applet2ClassLoader.findClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at sun.plugin2.applet.Plugin2ClassLoader.loadCode(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.io.IOException: open HTTP connection failed:http://www.worldwide-canoeingandkayaking.com/com/aurigma/imageuploader/ImageUploader/class.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)
... 7 more
Exception: java.lang.ClassNotFoundException: com.aurigma.imageuploader.ImageUploader.class


HELP!
Tamila  
#10 Posted : Thursday, June 18, 2009 2:29:11 PM(UTC)
Tamila

Rank: Advanced Member

Groups: Member
Joined: 3/9/2008(UTC)
Posts: 554

Was thanked: 1 time(s) in 1 post(s)
Hello,

What browser do you use when the problem appears?
Aurigma Support Team

UserPostedImage Follow Aurigma on Twitter!
Users browsing this topic
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.