Sample Code for asterisk Dailplan

June 1, 2016 Asterisk

;This context is used to handle all outbound calls. [test-outbound] exten => 56782,1,Answer() exten => 56782,n,Playback(hello-world) exten => 56782,n,Goto(outbound-allroutes,${EXTEN},1) ;This context is used to handle all inbound calls.…

Call Management – Asterisk

June 1, 2016 Asterisk

Call Management   SLNO Command Description Command Functions Notes 1 Answer Answer() 2 Hangup Hangup() 3 Dial Dial() 4 SoftHangup SoftHangup() 5 Busy Busy() 6 Congestion Congestion() 7…

Asterisk Dialplan Commands

June 1, 2016 Asterisk

Here is a list of all the commands that you can use in your Dialplan(extensions.conf). Obtaining a list of available applications in the CLI Asterisk 1.4 or earlier:…

SOAP IN SUGARCRM GOOD NOTES

May 9, 2016 PHP, Soap, Sugarcrm

SOAP SOAP is probably the most used Web Services protocol. It provides a way of exchanging structured information of application functionality. A SOAP interface can be defined by…

SOAP Connectivity to Sugarcrm PHP Code

May 6, 2016 PHP, Sugarcrm

<?php $client = new SoapClient(“http://192.168.1.27/soap.php?wsdl”, array(“trace” => 1, “exception” => 0)); // LOGIN $response = $client->__soapCall(“login”, array( “user_auth” => array( ‘user_name’ => ‘user’, ‘password’ => md5(‘bitnami’), ‘version’ =>…