I'm using an applet. I want to pass some java arguments to the JVM when browser start the applet but some of arguments were ignored and some don't
Here is my applet tag
<APPLET CODE="com.example.HelloApplet" archive="HelloApplet.jar" >
<PARAM name="java_arguments" value="-verbose:gc" >
</APPLET>
after running the applet in browser i can see the -verbose:gc in jconsole but if i change the applet tag
<APPLET CODE="com.example.HelloApplet" archive="HelloApplet.jar" >
<PARAM name="java_arguments" value="-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=1044" >
</APPLET>
and run the applet again in browser i can't see the value in jconsole... where is the problem? Thanks