Skip to content

Commit

Permalink
Fix: Web service call
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Jan 22, 2011
1 parent 462fddd commit ed5f26a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions htdocs/societe/checkvat/checkVatPopup.php
Expand Up @@ -59,8 +59,8 @@
"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();
Expand Down
2 changes: 1 addition & 1 deletion htdocs/webservices/demo_wsclient_invoice.php
Expand Up @@ -34,7 +34,7 @@


// 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)
{
Expand Down
2 changes: 1 addition & 1 deletion htdocs/webservices/demo_wsclient_other.php
Expand Up @@ -33,7 +33,7 @@


// 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)
{
Expand Down
2 changes: 1 addition & 1 deletion htdocs/webservices/demo_wsclient_thirdparty.php
Expand Up @@ -33,7 +33,7 @@


// 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)
{
Expand Down

0 comments on commit ed5f26a

Please sign in to comment.