* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ /** * \file htdocs/webservices/demo_wsclient_other.php * \brief Demo page to make a client call to Dolibarr WebServices "server_other" */ // This is to make Dolibarr working with Plesk set_include_path($_SERVER['DOCUMENT_ROOT'].'/htdocs'); require_once '../master.inc.php'; require_once NUSOAP_PATH.'/nusoap.php'; // Include SOAP $WS_DOL_URL = DOL_MAIN_URL_ROOT.'/webservices/server_other.php'; //$WS_DOL_URL = 'http://localhost:8080/'; // If not a page, should end with / $WS_METHOD = 'getVersions'; $ns='http://www.dolibarr.org/ns/'; // Set the WebService URL dol_syslog("Create nusoap_client for URL=".$WS_DOL_URL); $soapclient = new nusoap_client($WS_DOL_URL); if ($soapclient) { $soapclient->soap_defencoding='UTF-8'; $soapclient->decodeUTF8(false); } // Call the WebService method and store its result in $result. $authentication=array( 'dolibarrkey'=>$conf->global->WEBSERVICES_KEY, 'sourceapplication'=>'DEMO', 'login'=>'admin', 'password'=>'changeme', 'entity'=>''); // Test URL if ($WS_METHOD) { $parameters = array('authentication'=>$authentication); dol_syslog("Call method ".$WS_METHOD); $result = $soapclient->call($WS_METHOD,$parameters,$ns,''); if (! $result) { //var_dump($soapclient); //print_r($soapclient); print $soapclient->error_str; print "
\n\n"; print $soapclient->request; print "
\n\n"; print $soapclient->response; exit; } } /* * View */ header("Content-type: text/html; charset=utf8"); print ''."\n"; echo ''."\n"; echo ''; echo 'WebService Test: '.$WS_METHOD.''; echo ''."\n"; echo ''."\n"; echo 'NUSOAP_PATH='.NUSOAP_PATH.'
'; echo "

Request:

"; echo '

Function

'; echo $WS_METHOD; echo '

SOAP Message

'; echo '
' . htmlspecialchars($soapclient->request, ENT_QUOTES) . '
'; echo '
'; echo "

Response:

"; echo '

Result

'; echo '
';
print_r($result);
echo '
'; echo '

SOAP Message

'; echo '
' . htmlspecialchars($soapclient->response, ENT_QUOTES) . '
'; echo ''."\n"; echo ''."\n"; ?>