We put the MyApplet.class in the lib folder and called the applet using html object tab. We set the codebase = "MyApplet.class". The application is throwing the class not found exception.
Any one tried out calling the applet from rails application?
We put the MyApplet.class in the lib folder and called the applet using html object tab. We set the codebase = "MyApplet.class". The application is throwing the class not found exception.
Any one tried out calling the applet from rails application?
We put the MyApplet.class in the lib folder and called the applet using html object tab. We set the codebase = "MyApplet.class". The application is throwing the class not found exception.
Wouldn't the applet need to be somewhere in /public in order for the
browser to be able to download it?
Fred
Hi i have the same issue,
This is the code i used,
<applet code="TwainConnectApplet" name="twainapplet" archive="TwainConnect.jar" width="200" height="200"> </applet>
I have a java applet proj called "TwainConnect" converted tat into a jar TwainConnect.jar(which includes all its dependencies like external jars etc.)
I placed this jar in app\public folder.
TwainConnectApplet.class is the file i need to access...
I used the above code but not working..
Where am goin wrong.