I am using weblogic 6.1 , developing Entity EJBs using CMP. I use Container Managed Relationships to create relationships between Beans using primary key - Foreign key relationship. I have modified my deployment descriptor and everything compiles and deploys fine.
My Scenario is as follow :
I have three tables, table A is related to Table B AND table B is related to table C
I try to access an element form Table A, i can retrieve all related itesm in table B using the relationships. But when i try to access Table C, through the method in table B's local interface, i am not sure what is happening, it just throws a remote exception saying "transaction has timed-out "
I do believe the data is not being loaded for table C, but i am not sure what parameters need to be set in deployment descriptor to make that load in the first place ??
All suggestions are welcome