[Vtigercrm-commits] [vtiger-commits] r10192 - in /vtiger_webforms/trunk: Contact/nusoap/lib/nusoap.php Contact/send_data.php Lead/nusoap/lib/nusoap.php Lead/send_data.php unsubscribe/nusoap.php unsubscribe/send_data.php

vtigercrm-commits at vtiger.fosslabs.com vtigercrm-commits at vtiger.fosslabs.com
Fri Feb 16 07:01:53 EST 2007


Author: saraj
Date: Fri Feb 16 05:01:37 2007
New Revision: 10192

Log:
* Renamed the soapclient object name as soapclient2

Modified:
    vtiger_webforms/trunk/Contact/nusoap/lib/nusoap.php
    vtiger_webforms/trunk/Contact/send_data.php
    vtiger_webforms/trunk/Lead/nusoap/lib/nusoap.php
    vtiger_webforms/trunk/Lead/send_data.php
    vtiger_webforms/trunk/unsubscribe/nusoap.php
    vtiger_webforms/trunk/unsubscribe/send_data.php

Modified: vtiger_webforms/trunk/Contact/nusoap/lib/nusoap.php
==============================================================================
Binary files - no diff available.

Modified: vtiger_webforms/trunk/Contact/send_data.php
==============================================================================
Binary files - no diff available.

Modified: vtiger_webforms/trunk/Lead/nusoap/lib/nusoap.php
==============================================================================
Binary files - no diff available.

Modified: vtiger_webforms/trunk/Lead/send_data.php
==============================================================================
Binary files - no diff available.

Modified: vtiger_webforms/trunk/unsubscribe/nusoap.php
==============================================================================
--- vtiger_webforms/trunk/unsubscribe/nusoap.php (original)
+++ vtiger_webforms/trunk/unsubscribe/nusoap.php Fri Feb 16 05:01:37 2007
@@ -4952,24 +4952,24 @@
 
 /**
 *
-* soapclient higher level class for easy usage.
+* soapclient2 higher level class for easy usage.
 *
 * usage:
 *
 * // instantiate client with server info
-* $soapclient = new soapclient( string path [ ,boolean wsdl] );
+* $soapclient2 = new soapclient2( string path [ ,boolean wsdl] );
 *
 * // call method, get results
-* echo $soapclient->call( string methodname [ ,array parameters] );
+* echo $soapclient2->call( string methodname [ ,array parameters] );
 *
 * // bye bye client
-* unset($soapclient);
+* unset($soapclient2);
 *
 * @author   Dietrich Ayala <dietrich at ganx4.com>
 * @version  $Id: nusoap.php,v 1.1 2005/04/29 05:09:16 sarajkumar Exp $
 * @access   public
 */
-class soapclient extends nusoap_base  {
+class soapclient2 extends nusoap_base  {
 
 	var $username = '';
 	var $password = '';
@@ -5021,7 +5021,7 @@
 	* @param	integer $response_timeout set the response timeout
 	* @access   public
 	*/
-	function soapclient($endpoint,$wsdl = false,$proxyhost = false,$proxyport = false,$proxyusername = false, $proxypassword = false, $timeout = 0, $response_timeout = 30){
+	function soapclient2($endpoint,$wsdl = false,$proxyhost = false,$proxyport = false,$proxyusername = false, $proxypassword = false, $timeout = 0, $response_timeout = 30){
 		$this->endpoint = $endpoint;
 		$this->proxyhost = $proxyhost;
 		$this->proxyport = $proxyport;
@@ -5506,7 +5506,7 @@
 			}
 		}
 		$r = rand();
-		$evalStr = 'class soap_proxy_'.$r.' extends soapclient {
+		$evalStr = 'class soap_proxy_'.$r.' extends soapclient2 {
 				'.$evalStr.'
 			}';
 		//print "proxy class:<pre>$evalStr</pre>";

Modified: vtiger_webforms/trunk/unsubscribe/send_data.php
==============================================================================
--- vtiger_webforms/trunk/unsubscribe/send_data.php (original)
+++ vtiger_webforms/trunk/unsubscribe/send_data.php Fri Feb 16 05:01:37 2007
@@ -12,7 +12,7 @@
 include("config.php");
 require_once('nusoap.php');
 
-$client = new soapclient($Server_Path."/vtigerservice.php?service=webforms", false,
+$client = new soapclient2($Server_Path."/vtigerservice.php?service=webforms", false,
                                                 $proxyhost, $proxyport, $proxyusername, $proxypassword);
 $err = $client->getError();
 





More information about the vtigercrm-commits mailing list