diff --git a/htdocs/societe/checkvat/checkVatPopup.php b/htdocs/societe/checkvat/checkVatPopup.php index 5f4c358347c..ba47d2d4b4a 100644 --- a/htdocs/societe/checkvat/checkVatPopup.php +++ b/htdocs/societe/checkvat/checkVatPopup.php @@ -59,8 +59,8 @@ else "vatNumber" => $vatNumber); // Set the WebService URL - dol_syslog("Create soapclient_nusoap for URL=".$WS_DOL_URL); - $soapclient = new soapclient_nusoap($WS_DOL_URL.'?wsdl',true); + dol_syslog("Create nusoap_client for URL=".$WS_DOL_URL); + $soapclient = new nusoap_client($WS_DOL_URL.'?wsdl',true); // Check for an error $err = $soapclient->getError(); diff --git a/htdocs/webservices/demo_wsclient_invoice.php b/htdocs/webservices/demo_wsclient_invoice.php index 7eb24691ce5..f740e3709f7 100755 --- a/htdocs/webservices/demo_wsclient_invoice.php +++ b/htdocs/webservices/demo_wsclient_invoice.php @@ -34,7 +34,7 @@ $WS_METHOD2 = 'getInvoicesForThirdParty'; // Set the WebService URL -dol_syslog("Create soapclient_nusoap for URL=".$WS_DOL_URL); +dol_syslog("Create nusoap_client for URL=".$WS_DOL_URL); $soapclient1 = new nusoap_client($WS_DOL_URL); if ($soapclient1) { diff --git a/htdocs/webservices/demo_wsclient_other.php b/htdocs/webservices/demo_wsclient_other.php index bd214695fd4..0c08265eb62 100755 --- a/htdocs/webservices/demo_wsclient_other.php +++ b/htdocs/webservices/demo_wsclient_other.php @@ -33,7 +33,7 @@ $WS_METHOD = 'getVersions'; // Set the WebService URL -dol_syslog("Create soapclient_nusoap for URL=".$WS_DOL_URL); +dol_syslog("Create nusoap_client for URL=".$WS_DOL_URL); $soapclient = new nusoap_client($WS_DOL_URL); if ($soapclient) { diff --git a/htdocs/webservices/demo_wsclient_thirdparty.php b/htdocs/webservices/demo_wsclient_thirdparty.php index 3846023e424..b3a9cf9c70c 100755 --- a/htdocs/webservices/demo_wsclient_thirdparty.php +++ b/htdocs/webservices/demo_wsclient_thirdparty.php @@ -33,7 +33,7 @@ $WS_METHOD = 'getThirdParty'; // Set the WebService URL -dol_syslog("Create soapclient_nusoap for URL=".$WS_DOL_URL); +dol_syslog("Create nusoap_client for URL=".$WS_DOL_URL); $soapclient = new nusoap_client($WS_DOL_URL); if ($soapclient) {