Category

Sugarcrm

13 articles in this category

SOAP IN SUGARCRM GOOD NOTES

May 9, 2016 14 min read

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…

Fatal error: Class ‘SoapClient’ not found

May 6, 2016 1 min read

Diagnose Look up the following inside your script file phpinfo(); If you can’t find Soap Client set to enabled like so: Fix Do the following: Locate php.ini in…

SOAP Connectivity to Sugarcrm PHP Code

May 6, 2016 2 min read

<?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’ =>…

How to Install SugarCRM Community Edition on an Ubuntu 14.x

May 6, 2016 3 min read

Download the latest version of SugarCRM Community Edition available at http://sourceforge.net/projects/sugarcrm/files/ to the ‘/opt’ directory on the server. Then, extract it and move the SugarCRM files and directories…

SugarCRM integration with custom Java applications

May 6, 2016 5 min read

SugarCRM integration and Apache Axis The most read articles here on beanizer.org are with no doubt those related to SugarCRM integration. Up to now our articles have focused…

SugarCRM and Asterisk integration in Java ( II )

May 6, 2016 5 min read

Opening a customer SugarCRM page in the browser on incoming calls Introduction Here comes the really interesting part, as this is what most readers have been asking for…