Ingo Bruell wrote:
>       out.println("Get Primary Key");
>       PersonPK pkey = (PersonPK)ectx.getPrimaryKey();

Try getting the pk and print out its classloader (without casting it):
out.println(ectx.getPrimaryKey().getClass().getClassLoader());
and then print out the cl of the PK class:
out.println(PersonPK.class.getClassLoader());

and see what your results are.

/Rickard

-- 
Rickard �berg

Email: [EMAIL PROTECTED]

Reply via email to