From the log, it appears that for some reason, your DB Connect step is failing. If it is doing this each time the line starts, TeleFlow never gets to Wait For Call, and that line remains busy.
<br>
<br>It appears that when an error is generated in your application, your have a 60 second wait. Since you have hung up before that Wait, that line is available as far as the Telco is concerned, but is not waiting for a call. This would cause busy signals for that 60 second time period.
<br>
<br>Are you hitting the DB Connect step prior to every Wait for Call? This may be causing problems. Connect once, and stay connected, even between calls. Optionally, use a DB Disconnect before your DB Connect to ensure it is successful. (Well, unless there is an external factor creating a problem with the database connection, of course)
|