i have an applet which is in my .war package, all the libraries of the war are referenced from the ear package. now i want to run an applet from one of the views which is xhtml. there are two options i understand. either use something like
<applet archive="./any.jar" code="any.class" width="950" height="650" >
or
<object type="application/x-java-applet" classid="java:HelloWorld.class" height="70" width="300">
in the first case, you need to put the jar in the same folder, which is not my option. if i implement the second option, how do i refer to a jar which is in my ear lib? its being a pain.
thanks in advance
