RE: [OT] EJB LIKE A TRIGGER

2003-06-16 Thread NYIMI Jose (BMB)
> -Original Message- > From: Tillin, Dan [mailto:[EMAIL PROTECTED] > Sent: Monday, June 16, 2003 5:58 PM > To: Struts Users Mailing List > Cc: NYIMI Jose (BMB) > Subject: RE: [OT] EJB LIKE A TRIGGER > > > How about using JMS and message driven beans (MDB)?

RE: [OT] EJB LIKE A TRIGGER

2003-06-16 Thread NYIMI Jose (BMB)
: Re: [OT] EJB LIKE A TRIGGER Seems to me it would make more sense to move your business logic to Struts (e.g., ActionForm.validate() and/or Action.permform()/execute()) before writing to the database then to hit your database every few seconds looking for changes Ian D. Stewart Open Systems

Re: [OT] EJB LIKE A TRIGGER

2003-06-16 Thread ian_d_stewart
Seems to me it would make more sense to move your business logic to Struts (e.g., ActionForm.validate() and/or Action.permform()/execute()) before writing to the database then to hit your database every few seconds looking for changes Ian D. Stewart Open Systems Engineer II Enterprise Midrange -

RE: [OT] EJB LIKE A TRIGGER

2003-06-16 Thread Tillin, Dan
l Message- From: Mark Galbreath [mailto:[EMAIL PROTECTED] Sent: 16 June 2003 16:07 To: 'Struts Users Mailing List' Subject: RE: [OT] EJB LIKE A TRIGGER My team did something similar to this last year, but we had to write our own mechanism involving cached flags that would indicate t

RE: [OT] EJB LIKE A TRIGGER

2003-06-16 Thread Mark Galbreath
My team did something similar to this last year, but we had to write our own mechanism involving cached flags that would indicate to the session façade when an entity when had last been used to update the database. But as far querying the db and recovering the number of records that were added, mo