Hello Toby,
> > Testclient: (jdk 1.3)
>
> Is JBoss also running on 1.3?
>
Yes
> Please show the relevant code from eacm.util.CorbaObjectFinder.
>
its only: obj = orb.string_to_object(ior);
Now I got it running with a dirty hack. The difference between the
standalone application and the j2ee app is here the policy file. My policy
allow code from all codeBase to do what ever it want. But there must be a
valid codeBase which can be checked against the policy file.
So I simply decompiled
com.sun.corba.ee.internal.core.IOR.getCodeBase
and return "C:/jboss/dist/lib/ext"; in any case.
It runs without problems.
(Strange: The method getCodeBase is also called within the standallone
application, has the same array null, but don't throw a nullpointer
exception at array.length as it do within the j2ee server. )
Now I will try to find a way, telling the orb this codebase a the right time
and place.
Thanks for Your help!
Andreas