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?

[468 byte] By [sr1natha] at [2007-11-27 4:33:01]
# 1

I don't think that server-side app contexts has any effect on the browser's ability to download or run an applet, per se.

But I can imagine that if you're juggling contexts on the server, there could be a misconfiguration problem there.

Do your server logs indicate that the applet class was downloaded?

What does the stacktrace say on the browser's java console?

paulcwa at 2007-7-12 9:42:50 > top of Java-index,Desktop,Core GUI APIs...