I'm building a voice application that requires a long period of ringing while my application attempts to setup an outbound call. During this time, the call must remain unanswered.
I'm using a SIP based Genesys GVP 8.1 IVR connected to a media gateway.
The problem I have is because the call is unanswered, it times out after 30 seconds. I need to send some kind of keep-alive message to the media gateway to say that the call is still ongoing.
I've tried using this:
<send target="inConnectionID" targettype="'x-connection'" data="'connection.progressing'"/>
which will generate a 180 Ringing... but I've already sent a 180 Ringing message, and I think the SIP Server doesn't pass this on down the network because it's already processed a 180 message.
Ideally, I want to try sending a 182 Queued message, but I can't find anything in the CCXML or extended GVP CCXML documentation to say how to do this.
My Wireshark SIP trace looks like this:
You can see the second 180 Ringing at 24 seconds isn't being passed up to the media gateway.
How can I get GVP/CCXML to send a 182 Queued SIP message?