RE: Releasing client to do another process?

2004-07-15 Thread Hugo Ahlenius
:[EMAIL PROTECTED] | Sent: Wednesday, July 14, 2004 17:36 | To: CF-Talk | Subject: RE: Releasing client to do another process? | | Actually your first option would, indeed, complete the | process - it just couldn't return information to the browser | when done. | | | | A CF Process keeps going until

RE: Releasing client to do another process?

2004-07-14 Thread S . Isaac Dealey
-Original Message- From: Jim Davis [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 13, 2004 4:50 PM To: CF-Talk Subject: RE: Releasing client to do another process? You could call another CF page in an image tag - it'll run, but the rest of your page should download fine (although

RE: Releasing client to do another process?

2004-07-14 Thread Micha Schopman
This is actually very simple, 1: Create a page, and within create an iframe 100% high and wide. Call, parent.doSomething() from the iframe to call the _javascript_ function in the page where the iframe is. This does not complete the process if the user closes the window! Only if it browses to

RE: Releasing client to do another process?

2004-07-14 Thread Micha Schopman
This is actually very simple, 1: Create a page, and within create an iframe 100% high and wide. Call, parent.doSomething() from the iframe to call the _javascript_ function in the page where the iframe is. This does not complete the process if the user closes the window! Only if it browses to

RE: Releasing client to do another process?

2004-07-14 Thread Jim Davis
waiting any longer then you get an error in your logs, but the process did complete. Jim Davis From: Micha Schopman [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 14, 2004 3:27 AM To: CF-Talk Subject: RE: Releasing client to do another process? This is actually very simple, 1: Create a page

Re: Releasing client to do another process?

2004-07-13 Thread Adam Haskell
if you can generate the complete page content before the process you could try to use cfflush... that way the page load while the process finishes... On Tue, 13 Jul 2004 14:10:04 -0400, Dave Phillips [EMAIL PROTECTED] wrote: Hi folks, Okay, here's my situation.I have a process that I want to

RE: Releasing client to do another process?

2004-07-13 Thread Dave Phillips
client to do another process? if you can generate the complete page content before the process you could try to use cfflush... that way the page load while the process finishes... On Tue, 13 Jul 2004 14:10:04 -0400, Dave Phillips [EMAIL PROTECTED] wrote: Hi folks, Okay, here's my situation.I have

RE: Releasing client to do another process?

2004-07-13 Thread Mark W. Breneman
://www.vividmedia.com/ 608.270.9770 _ From: Dave Phillips [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 13, 2004 1:44 PM To: CF-Talk Subject: RE: Releasing client to do another process? That's an idea, and I can do that, however, that's not truly releasing the client...their explorer 'world' will continue

RE: Releasing client to do another process?

2004-07-13 Thread S . Isaac Dealey
script language=_javascript_ location.replace(newurl.cfm); /scriptcfflush ... do other cf stuff here ... This will send the browser on to the next page the same way that cflocation does (different method, but the effect is the same, the page is replaced in the browser history, so if they hit the

RE: Releasing client to do another process?

2004-07-13 Thread Barney Boisvert
:27 PM To: CF-Talk Subject: Re: Releasing client to do another process? if you can generate the complete page content before the process you could try to use cfflush... that way the page load while the process finishes... On Tue, 13 Jul 2004 14:10:04 -0400, Dave Phillips [EMAIL PROTECTED

RE: Releasing client to do another process?

2004-07-13 Thread Dave Watts
You'd have to check to be sure, but running a scheduled task with CFSCHEDULE would hopefully process the request in another thread. Yes, that would run in a separate CF thread. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ phone: 202-797-5496 fax: 202-797-5444 [Todays Threads]

RE: Releasing client to do another process?

2004-07-13 Thread Jim Davis
You could call another CF page in an image tag - it'll run, but the rest of your page should download fine (although the browser won't consider it done). Something like this: img src="" height=1 width=1 Jim Davis From: Dave Phillips [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 13, 2004 2:10

RE: Releasing client to do another process?

2004-07-13 Thread Shawn Grover
PROTECTED] Sent: Tuesday, July 13, 2004 4:50 PM To: CF-Talk Subject: RE: Releasing client to do another process? You could call another CF page in an image tag - it'll run, but the rest of your page should download fine (although the browser won't consider it done). Something like this: img src

RE: Releasing client to do another process?

2004-07-13 Thread Dave Watts
Okay, here's my situation.I have a process that I want to run whenever a user registers for my system.The problem is, this process can take some time and I don't want to make the user wait for it to complete.Is there any way in CF that I can, in a sense, 'fire off a process' but release

RE: Releasing client to do another process?

2004-07-13 Thread Jim Davis
). Jim Davis From: Shawn Grover [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 13, 2004 7:01 PM To: CF-Talk Subject: RE: Releasing client to do another process? Open a new window, then bring your main window to the front, via _javascript_. If you want to allow the user to navigate away from your