I have an application that does some backend processing. It will do an
cfhttp post (with form fields) to another app and wait for the response
before confirming the transaction was successful.
At times, these transactions can take a long time to finish (GT 5 minutes).
(don't go there with "just make it faster and there will be no issue)

Below is a simple example of what we get. We can also put a Unique
Identifier in the log. For example purposes, I'll use a single digit code.

This is what we see in the log file for a normal request that comes back in
seconds:
Start application processing UID:1
Start logic UID:1
Start cfhttp post UID:1
Finish cfhttp post UID:1
Finish logic UID:1
Finish application processing UID:1

This is what we see in the log file for a SINGLE long running request
(longer than 5 minutes):
Start application processing UID:2
Start logic UID:2
Start cfhttp post UID:2
Start application processing UID:3
Start logic UID:3
Start cfhttp post UID:3
Finish cfhttp post UID:2
Finish logic UID:2
Finish application processing UID:2
Finish cfhttp post UID:3
Finish logic UID:3
Finish application processing UID:3

This does NOT happen if it is a GET method and has the delay, but I don't
think I can pass 500000 Bytes of data as URL params.
This bug has been replicated in CF5, MX6 and MX7 - have not had a chance to
try 7.01 yet.

Got any ideas? I had to re-architect the entire appliation to prevent
duplicate submits on long running requests, but I want to know if others can
replicate this.

Thanks!

 <[EMAIL PROTECTED]>


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:219737
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to