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

[OS-webwork] Displaying a progress page

2003-06-25 Thread lars . fischer
Does anyone have a good idea how to display a temporary progress page in WW 1.x ? I have a form where users can define paremeters for an import of data into the local database. After submitting the page the import method is started. This process may take a while so I want to show a general

RE: [OS-webwork] Displaying a progress page

2003-06-25 Thread Jason Carreira
... If the process is done you can forward to a final status page. We've used this technique pretty successfully. Jason -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 25, 2003 8:31 AM To: [EMAIL PROTECTED] Subject: [OS-webwork] Displaying

RE: [OS-webwork] Displaying a progress page

2003-06-25 Thread Lars Fischer
] Sent: Wednesday, June 25, 2003 8:31 AM To: [EMAIL PROTECTED] Subject: [OS-webwork] Displaying a progress page Does anyone have a good idea how to display a temporary progress page in WW 1.x ? I have a form where users can define paremeters for an import of data

RE: [OS-webwork] Displaying a progress page

2003-06-25 Thread Jason Carreira
PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 25, 2003 8:31 AM To: [EMAIL PROTECTED] Subject: [OS-webwork] Displaying a progress page Does anyone have a good idea how to display a temporary progress page in WW 1.x ? I have a form where users can define

Re: [OS-webwork] Displaying a progress page

2003-06-25 Thread Mike Cannon-Brookes
:[EMAIL PROTECTED] Sent: Wednesday, June 25, 2003 8:31 AM To: [EMAIL PROTECTED] Subject: [OS-webwork] Displaying a progress page Does anyone have a good idea how to display a temporary progress page in WW 1.x ? I have a form where users can define paremeters for an import of data

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