This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
Hi, I have deployed applet .jar files in the Websphere Application Server. I have included the path for this .jar file in the application specific classpath and restarted the Application Server as well. Following is the code snippet for loading the applet from the JSP that was developed for this purpose <OBJECT classid="clsid:CAFEEFAC-0013-0001-0000-ABCDEFFEDCBA" width="800" height="500" codebase="https://xyz/editor/a.jar"> <PARAM NAME="code" VALUE="com.anand.learning.testapplet.class"> <PARAM NAME="archive" VALUE="a.jar"> <PARAM NAME="type" VALUE="application/x-java-applet;version=1.3.1"> <PARAM NAME="scriptable" VALUE="true"> <PARAM NAME="srcFileName" VALUE="test.htm"> No JDK 1.3.1 support for Test Class! </OBJECT> When I tried to view this JSP from the browser, it says "load: class com.anand.learning.testapplet.class" not found in the status bar of the browser. 'a.jar' is the file that contains the class 'com.anand.learning.testapplet.class'. Can somebody help me in resolving this problem. Thanks, AV.