I have an applet that should use WinAPI through JNA. The applet signed by its own key. I've deployed it on the page like this:
<applet id="_TestApplet" code="TestApplet.class" archive="/Content/TestApplet.jar"
name="Test Applet" width="0" height="0" mayscript="">
<param name="codebase_lookup" value="false">
</applet>
In Chrome and FF all OK, but in IE 6,7,8 there is an exception:
TypeError: Object doesn't support this property or method
Java Console doesn't contain any exception.
What is my mistake?