I have a jar file containing applet files which are dependent of below additional jar file. Its running fine as standalone jar file. The applet uses:
xmlrpc-2.0.jarcommons-codec-1.3.jar
But when I tried to run in HTML as below, it's running, but attached additional jar files are not binding with it. How can I fix the problem?
<html>
<body>
<APPLET
CODE="MAIN.class"
WIDTH="100%" HEIGHT="100%"
ARCHIVE = "MAIN.jar,xmlrpc-2.0.jar,commons-codec-1.3.jar"
>
This example uses an applet.
</APPLET>
</body>
</html>
Manifest
Manifest-Version: 1.0
Main-Class: MAIN
Created-By: 1.3.0 (Sun Microsystems Inc.)
Class-Path: xmlrpc-2.0.jar commons-codec-1.3.jar
Name: MAIN.class

APPLETtag in any recent version of HTML, onlyapplet, same for the attributescode,width,height,archive. – Philipp Reichart Sep 24 '11 at 11:50