Page 1 of 1

sporadic disconnect

Posted: Mon Nov 03, 2008 7:12 pm
by jcooper
I have received reports that users are getting sporadically disconnected midstream when calling into the system. I am not able to reproduce this, but I do see call logs reflecting this (no error is being generated). I am going to add some log tags to the application but am curious if you have had others report this issue, and if so, how it can be handled. Please note, i am using the Nuance OSR engine.
Thanks,
JC

Posted: Mon Nov 03, 2008 7:36 pm
by jcooper
Also, is there a way to differentiate between a hang-up and system initiated disconnect? Can I catch connection.disconnect.hangup? Is there a way I can add this to my log.. such as:

Code: Select all

<log label="Debug">Disconnecting from PNSMenu.xml#PNSMenu catch:<value expr="connection.status"/></log>

use "connection.disconnect.hangup" in IVR applicat

Posted: Tue Nov 04, 2008 11:06 am
by support
Hi,

Yes, you would use "connection.disconnect.hangup" (this is when the caller hangs up first) to differentiate a caller hanging up and the IVR system hanging up.

And as for adding the line to your IVR log, it should look more like this, since there isn't a "connection.status" in the VXML specification.

Code: Select all

<log label="Debug">Disconnecting from PNSMenu.xml#PNSMenu catch:<value expr="_event"/></log>
"_event" covers these lists of events, which include "connection.disconnect.hangup".

As for users being sporadically disconnected midstream, if you can provide us with a way to successfully reproduce this, we can look into this IVR issue further.

Regards,
Plum Support

connection.disconnect

Posted: Tue Nov 04, 2008 3:08 pm
by jcooper
Does the code

Code: Select all

<catch event="connection.disconnect">...</catch>
capture connection.disconnect.hangup as well as the generic connection.disconnect?

use of connection.disconnect on IVR platform

Posted: Tue Nov 04, 2008 3:20 pm
by support
Hi,

Yes, connection.disconnect will <catch> both connection.disconnect.hangup and the generic disconnect on the IVR system.

Regards,
Plum Support