RE: problem with struts and EJB

2001-09-05 Thread Peter Pilgrim
Where can I find out more information about your ValueObjects What are the pros ? What are the cons? -- Peter Pilgrim | |++44 (0)207-545-9923 \ \ ___ / / ... . - ( * ) --- -- _Cafe_Savannah,_San

RE: problem with struts and EJB

2001-09-05 Thread nicolas bonvin
- From: Peter Pilgrim [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 05, 2001 12:13 PM To: [EMAIL PROTECTED] Subject: RE: problem with struts and EJB Where can I find out more information about your ValueObjects What are the pros ? What are the cons? -- Peter Pilgrim

RE: problem with struts and EJB

2001-09-05 Thread Fletcher, Ken
Thanks Matt and Ted... -Original Message- From: Ted Husted [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 04, 2001 9:56 PM To: [EMAIL PROTECTED] Subject: Re: problem with struts and EJB Matt Ho wrote: Has there ever been talk of making ActionForm an interface rather than a class

RE: problem with struts and EJB

2001-09-04 Thread Matt Ho
Since this bean looks similar to an ActionForm, and we hope to use ActionForms for data validation, and I don't want to have to move data between similar beans, I decided that my bean could extend ActionForm. When I do this and invoke the getBean() method, I get a CORBA MARSHAL exception -

Re: problem with struts and EJB

2001-09-04 Thread Ted Husted
Matt Ho wrote: Has there ever been talk of making ActionForm an interface rather than a class? I'd much rather declare public class PersonForm extends PersonVO implements ActionForm { ... } than what I've described above. See