How can I use a background process with JBoss

2002-02-13 Thread Dirk Storck
Hi, I want to do the following: I have a ShoppingCart. The users clicks on order and the items from the ShoppingCart are moved to my OrderBean. ShoppingCart and OrderBean are EJB's. Now it comes to the problem. The order must be proccessed in background cause it will have a long durration.

RE: [JBoss-user] How can I use a background process with JBoss

2002-02-13 Thread Coetmeur, Alain
); Struts User (E-Mail) Objet: [JBoss-user] How can I use a background process with JBoss Hi, I want to do the following: I have a ShoppingCart. The users clicks on order and the items from the ShoppingCart are moved to my OrderBean. ShoppingCart and OrderBean are EJB's. Now it comes

Re: How can I use a background process with JBoss

2002-02-13 Thread Keith
1 - Make the order process quick - it should be. Then you avoid the problem. Make user wait till it's done. 2 - Don't notify the user - let them do an enquiry to check if they want. If your system is any 100% reliable audited they will rely on it won't even want to be notified. 3 - Send the

RE: How can I use a background process with JBoss

2002-02-13 Thread McDowell, Mark
PROTECTED]] Sent: Wednesday, February 13, 2002 7:17 AM To: Jboss User (E-Mail); Struts User (E-Mail) Subject: How can I use a background process with JBoss Hi, I want to do the following: I have a ShoppingCart. The users clicks on order and the items from the ShoppingCart are moved to my OrderBean

Re: [JBoss-user] How can I use a background process with JBoss

2002-02-13 Thread Joachim Schaaf
Hi, Am Mittwoch, 13. Februar 2002 14:16 schrieb Dirk Storck: Hi, I want to do the following: I have a ShoppingCart. The users clicks on order and the items from the ShoppingCart are moved to my OrderBean. ShoppingCart and OrderBean are EJB's. It's funny to see how everyone is working on