RE: logic:iterate with EJB's, casting problem?

2002-05-13 Thread Jon.Ridgway
Hi Nicolas, Looks like there may be several issues here. The type should be the fully qualified class name (you have Artists, should be package.Arist?) Also if Artist is itself an EJB you should consider changing your stateless session bean to return a collection of ArtistValueObjects; your prese

Re: logic:iterate with EJB's, casting problem?

2002-05-12 Thread Arron Bates
You'll most likely find that the "PortableRemoteObject.narrow()" will be the part giving you grief. The tags will have no idea that it has to do this. The fact that you can get away with it so easily with a small scriptlet will probably mean that it will remain your best option. Your problem i