« Back to TCL-API

Is the -command parameter supported in httpios::geturl?

Combination View Flat View Tree View
Threads [ Previous | Next ]
toggle
I'm calling:
  ::httpios::geturl "$baseURI/test.xml"  -command act_RequestResultConParams
but the callback act_RequestResultConParams never gets executed.
Also, where can I find information on the httpios::geturl command? The only very basic information I have is the "TCL IVR 2.0 Programming Guide".

httpios::geturl just regular Tcl command not Cisco Tcl IVR API specific .
http://tmml.sourceforge.net/doc/tcl/http.htm
 
The following is an example. I wonder if it has soemthing to do with those ""
You may also trace those http message
.....
    set myQuery "http://$atebHostBackup:8080/atebRetrieval/newMessageCount?store=$atebStore"
    ::httpios::geturl $myQuery -command doMsgCountRsp -timeout 5
.....

proc doMsgCountRsp {token} {


}
 
Adolfo Arizpe:
I'm calling:
  ::httpios::geturl "$baseURI/test.xml"  -command act_RequestResultConParams
but the callback act_RequestResultConParams never gets executed.
Also, where can I find information on the httpios::geturl command? The only very basic information I have is the "TCL IVR 2.0 Programming Guide".