RE: [OS-webwork] Displaying a progress page

2003-06-26 Thread lf_mailing
] Sent: Wednesday, June 25, 2003 3:42 PM To: [EMAIL PROTECTED] Subject: RE: [OS-webwork] Displaying a progress page Jason, thanks for the reply ! Any hint how you start the asynchronous process ? Lars If you can start it up as an asynchronous process, you can use

RE: [OS-webwork] Displaying a progress page

2003-06-26 Thread Lars Fischer
: [OS-webwork] Displaying a progress page Jason, thanks for the reply ! Any hint how you start the asynchronous process ? Lars If you can start it up as an asynchronous process, you can use the trick of having a progress page which checks some state

Re: [OS-webwork] Displaying a progress page

2003-06-26 Thread Lars Fischer
PROTECTED] Sent: Wednesday, June 25, 2003 7:01 PM To: [EMAIL PROTECTED] Subject: Re: [OS-webwork] Displaying a progress page Uhm, well why not just make your task runnable and run it in a new thread? :) Or you could use a util.Timer. Another (nicest IMHO) alternative

RE: [OS-webwork] Displaying a progress page

2003-06-26 Thread Les . Stroud
] Subject: Re: [OS-webwork] Displaying a progress page Uhm, well why not just make your task runnable and run it in a new thread? :) Or you could use a util.Timer. Another (nicest IMHO) alternative is to make it a scheduled task and use something like Quartz to kick it off. M On 26/6/03

RE: [OS-webwork] Displaying a progress page

2003-06-26 Thread Lars Fischer
' ? Cheers Lars -Original Message- From: Mike Cannon-Brookes [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 25, 2003 9:33 PM To: [EMAIL PROTECTED] Subject: Re: [OS-webwork] Displaying a progress page Les, You could do it using DHTML, but I'm fairly sure that's not how Expedia

RE: [OS-webwork] Displaying a progress page

2003-06-26 Thread Raible, Matt
PROTECTED] Sent: Thursday, June 26, 2003 1:14 PM To: [EMAIL PROTECTED] Subject: RE: [OS-webwork] Displaying a progress page Lars, just out of curiosity, what is driving the requirement for not supporting the complete browser model (no javascript)? These are some of the reasons: - some

Re: [OS-webwork] Displaying a progress page

2003-06-26 Thread Lars Fischer
PROTECTED] Sent: Wednesday, June 25, 2003 9:33 PM To: [EMAIL PROTECTED] Subject: Re: [OS-webwork] Displaying a progress page Les, You could do it using DHTML, but I'm fairly sure that's not how Expedia do it. It's a LOT more error prone to do that way :) FWIW we're

Re: [OS-webwork] Displaying a progress page

2003-06-26 Thread Hani Suleiman
a web application that acts like a web site (click, wait, click, wait) then don't use it. Matt -Original Message- From: Lars Fischer [mailto:[EMAIL PROTECTED] Sent: Thursday, June 26, 2003 1:14 PM To: [EMAIL PROTECTED] Subject: RE: [OS-webwork] Displaying a progress page Lars, just out

RE: [OS-webwork] Displaying a progress page

2003-06-26 Thread Les . Stroud
in J2EE applications ? Is it 'allowed' ? Cheers Lars -Original Message- From: Mike Cannon-Brookes [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 25, 2003 9:33 PM To: [EMAIL PROTECTED] Subject: Re: [OS-webwork] Displaying a progress page Les, You could do

RE: [OS-webwork] Displaying a progress page

2003-06-25 Thread Jason Carreira
If you can start it up as an asynchronous process, you can use the trick of having a progress page which checks some state, such as a database or something in the session, and shows the progress bar or just a processing... and have it refresh itself using a meta-refresh if things aren't done... If

RE: [OS-webwork] Displaying a progress page

2003-06-25 Thread Lars Fischer
Jason, thanks for the reply ! Any hint how you start the asynchronous process ? Lars If you can start it up as an asynchronous process, you can use the trick of having a progress page which checks some state, such as a database or something in the session, and shows the progress bar or just

RE: [OS-webwork] Displaying a progress page

2003-06-25 Thread Jason Carreira
Well, for us we queue a JMS message. I'm not sure of another way to start an asynch process in the J2EE spec -Original Message- From: Lars Fischer [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 25, 2003 3:42 PM To: [EMAIL PROTECTED] Subject: RE: [OS-webwork] Displaying

Re: [OS-webwork] Displaying a progress page

2003-06-25 Thread Mike Cannon-Brookes
: Well, for us we queue a JMS message. I'm not sure of another way to start an asynch process in the J2EE spec -Original Message- From: Lars Fischer [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 25, 2003 3:42 PM To: [EMAIL PROTECTED] Subject: RE: [OS-webwork] Displaying

RE: [OS-webwork] Displaying a progress page

2003-06-25 Thread Les . Stroud
-Original Message- From: Mike Cannon-Brookes [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 25, 2003 7:01 PM To: [EMAIL PROTECTED] Subject: Re: [OS-webwork] Displaying a progress page Uhm, well why not just make your task runnable and run it in a new thread? :) Or you could use a util.Timer

Re: [OS-webwork] Displaying a progress page

2003-06-25 Thread Mike Cannon-Brookes
] Subject: Re: [OS-webwork] Displaying a progress page Uhm, well why not just make your task runnable and run it in a new thread? :) Or you could use a util.Timer. Another (nicest IMHO) alternative is to make it a scheduled task and use something like Quartz to kick it off. M On 26/6/03

Re: [OS-webwork] Displaying a progress page

2003-06-25 Thread Tim Dwelle
- From: Mike Cannon-Brookes [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, June 25, 2003 9:32 PM Subject: Re: [OS-webwork] Displaying a progress page Les, You could do it using DHTML, but I'm fairly sure that's not how Expedia do it. It's a LOT more error prone to do that way :) FWIW