Log In
Developer Network
Technologies
Join the Network
Member Services
Events & Community
Voice Gateway API (VGAPI) Developer Center
Overview
Documentation
Community
Testing
Message Boards Home
Recent Posts
Statistics
Answer
(
Unmark
)
Mark as an Answer
« Back to TCL-API
Forwarding the call via R2/ISDN channel
Threads [
Previous
|
Next
]
Jean Lofrano
Posts:
76
Join Date:
4/19/11
Recent Posts
Forwarding the call via R2/ISDN channel
Answer
9/5/12 7:15 AM
Mark as an Answer
Submit
Reply with Quote
Quick Reply
Hi team!!!
I have a solution working properly. But I have a problem of the sizing.
The script has the flow:
Incoming call > third part PBX >> ISDN/R2 integration >> Router with TCL script.
The user can to hear the welcome prompt, but when the user choose the option to forward the call for HelpDesk the integration will busy 2 channels.
It can be a problem for me, because the environemnt has in around 1500 people.
Is there any feature for the router leave the call after a transfer?
thanks.
proc CallHelpDesk { } {
global CallerID
puts "Fowarding to Help Desk"
set callinfo(originationNum) $CallerID
set callinfo(alertTime) 10
set destination 79889
puts "FAZENDO CHAMADA"
leg setup $destination callinfo leg_outgoing
#fsm setstate CALLEDHELPDESK
}
proc CheckCallSetup { } {
puts "IT7 ------------ chamada realizada"
set statuscall [infotag get evt_status]
switch $statuscall {
"ls_000" {
puts "CHAMADA ATIVA"
set incoming [infotag get leg_incoming]
puts "Parte 2"
set outgoing [infotag get leg_outgoing]
connection create $incoming $outgoing
}
defaul {
puts "CHAMADA FALHOU"
}
}
puts "CHECK CALL SETUP ACABOU"
}
Sign in to vote.
Flag
Please sign in to flag this as inappropriate.
Top
Raghavendra Gutty Veeranagappa
Posts:
221
Join Date:
4/28/10
Recent Posts
RE: Forwarding the call via R2/ISDN channel
Answer
9/5/12 7:24 AM as a reply to Jean Lofrano.
Mark as an Answer
Submit
Reply with Quote
Quick Reply
addressed in below thread.
http://developer.cisco.com/web/vgapi/forums/-/message_boards/view_message/6266943
Sign in to vote.
Flag
Please sign in to flag this as inappropriate.
Top