Can applet be loaded from different context?
I have a web page at:
http://www.xyz.com/app1/pages/test.html
The web page has an applet defined as:
<Applet codebase="/app2/vendor/" code="pp.class">
</Applet>
Notice that the page has context root app1 where as the applet has to load from app2.
When I load this page in IE, I see that applet is not loaded because it can not find the applet class file.
Is there any security issue causing it not to load?

