Checking if URI is alive before <subdialog>
Posted: Mon Jun 27, 2011 7:32 am
Dear support team,
I need your advice. I implemented dynamic IVR in VXML. At first page it checks the mobile number status using <subdialog> element. It called URI and regarding to return value redirect customers to appropriate flows. Today we faced issue with URI which based on another server. The server was restarted, so during several minutes customer cannot enter IVR. So now I need to assign property which will be checking if URI assigned in <subdialog> is alive first. If the URI unreachable then I need redirect customers to another flow or .vxml. Could you please help me with this?
Thanks beforehand.
Please find my code below:
<?xml version="1.0" ?>
<vxml version="2.1" xmlns="http://www.w3.org/2001/vxml" xml:lang="en-US" >
<var name="V_MSISDN" expr="session.telephone.ani"/>
<filled>
<goto next="#sub"/>
</filled>
<form id="sub">
<subdialog name ="sub" src="http://192.168.215.1:8082/ws.aspx?P_LOG ... =GET_GROUP" namelist="V_MSISDN">
<filled>
<if cond="sub.ret == 0">
<goto next="start.vxml"/>
<elseif cond="sub.ret == 1" />
<goto next="start.vxml"/>
<elseif cond="sub.ret == 2" />
<goto next="start.vxml"/>
<elseif cond="sub.ret == 66" />
<prompt>
<audio src = "black.wav"/>
</prompt>
<exit/>
</if>
</filled>
</subdialog>
</form>
</vxml>
I need to check this URI first: http://192.168.215.1:8082/ws.aspx?P_LOG ... =GET_GROUP
Thank you.
I need your advice. I implemented dynamic IVR in VXML. At first page it checks the mobile number status using <subdialog> element. It called URI and regarding to return value redirect customers to appropriate flows. Today we faced issue with URI which based on another server. The server was restarted, so during several minutes customer cannot enter IVR. So now I need to assign property which will be checking if URI assigned in <subdialog> is alive first. If the URI unreachable then I need redirect customers to another flow or .vxml. Could you please help me with this?
Thanks beforehand.
Please find my code below:
<?xml version="1.0" ?>
<vxml version="2.1" xmlns="http://www.w3.org/2001/vxml" xml:lang="en-US" >
<var name="V_MSISDN" expr="session.telephone.ani"/>
<filled>
<goto next="#sub"/>
</filled>
<form id="sub">
<subdialog name ="sub" src="http://192.168.215.1:8082/ws.aspx?P_LOG ... =GET_GROUP" namelist="V_MSISDN">
<filled>
<if cond="sub.ret == 0">
<goto next="start.vxml"/>
<elseif cond="sub.ret == 1" />
<goto next="start.vxml"/>
<elseif cond="sub.ret == 2" />
<goto next="start.vxml"/>
<elseif cond="sub.ret == 66" />
<prompt>
<audio src = "black.wav"/>
</prompt>
<exit/>
</if>
</filled>
</subdialog>
</form>
</vxml>
I need to check this URI first: http://192.168.215.1:8082/ws.aspx?P_LOG ... =GET_GROUP
Thank you.