| VoiceXML 2.1 Development Guide | Home | Frameset Home |
|
<transfer name="Mycall" dest="tel:+12223334444;ani=5556667777"
bridge="true" connecttimeout="20s" maxtime="60s">
<transfer dest="tel:+1112223333;ani=8001112222"/>
session.connection.local.uri
session.callerid
SESSION.CONNECTION.REMOTE.URI =sip:6782751234@xx.xx.x.x:xxxx
session.calledid
| ANNOTATIONS: EXISTING POSTS |
adrianasher
|
|
| At the bottom you have
SESSION.CONNECTION.LOCAL.URI think you mean SESSION.CONNECTION.REMOTE.URI :-) |
|
MattHenry
|
|
|
You are correct sir; I'll have this fixed up in a jiffy. ~Matt |
|
emeijer
|
|
| How do you process a blocked caller id ?
<if cond="session.callerid == 'blocked'"> |
|
MattHenry
|
|
|
Hello Edwin, Remember that callerid variable isn't going to be populated with 'blocked'; it is either going to have a value, or it isn't. As such, I would think you would simply want to check for an empty string in the event that you have a blocked callerID: <if cond="session.callerid == ''"> If you want to get fancy, you can also base your conditional logic on the length of the string, ie: <if cond="session.callerid.length <= 0"> Regards, ~Matthew Henry |
| login |
|