RE: Fist try at an async gateway

2005-11-10 Thread Ian Skinner
Is this on CF Enterprise or on CF Developer? The async g/w on Developer only processes one request at a time hence it would appear to be serial execution. That would probably explain it. I have been testing this on my workstation which is running developer. I'll move it up to our enterprise s

RE: Fist try at an async gateway

2005-11-10 Thread Ken Ketsdever
It's on mx 7.01 Enterprise -Original Message- From: Sean Corfield [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 09, 2005 2:43 PM To: CF-Talk Subject: Re: Fist try at an async gateway Is this on CF Enterprise or on CF Developer? The async g/w on Developer only processe

Re: Fist try at an async gateway

2005-11-09 Thread Sean Corfield
Is this on CF Enterprise or on CF Developer? The async g/w on Developer only processes one request at a time hence it would appear to be serial execution. On 11/9/05, Ian Skinner <[EMAIL PROTECTED]> wrote: > I've created an async gateway that is supposed to do some processing that may > take a f

Re: Fist try at an async gateway

2005-11-09 Thread Michael Dinowitz
Have you tried it without waiting for a status result? Also, the question has to do with the code within the async process, not the code calling it. ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket ap

RE: Fist try at an async gateway

2005-11-09 Thread Ian Skinner
I'd look at the code to see if there's something in it causing it to operate in serial. I've got a number of parallel processes going and they have no contact with each other at all. If you have a lock, a cftransaction or anything else which can stop the parallel processing of your code, you'll

Re: Fist try at an async gateway

2005-11-09 Thread Michael Dinowitz
I'd look at the code to see if there's something in it causing it to operate in serial. I've got a number of parallel processes going and they have no contact with each other at all. If you have a lock, a cftransaction or anything else which can stop the parallel processing of your code, you'll

Fist try at an async gateway

2005-11-09 Thread Ian Skinner
I've created an async gateway that is supposed to do some processing that may take a few seconds and send out an e-mail with the results. My hope of using an async gateway was that I could fire off several requests that each would process there data and return a result. The problem I'm having