diff --git a/htdocs/webservices/demo_client_other.php b/htdocs/webservices/demo_client_other.php new file mode 100755 index 00000000000..c4bbde5c30c --- /dev/null +++ b/htdocs/webservices/demo_client_other.php @@ -0,0 +1,82 @@ + + * + * 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 2 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, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + +/** + * \file htdocs/webservices/client.php + * \brief Page demo client appel WebServices Dolibarr + * \version $Id$ + */ + +// 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 = $dolibarr_main_url_root.'/webservices/server_other.php'; +$WS_METHOD = 'getVersions'; + +// Set the parameters to send to the WebService +$parameters = array(); + +// Set the WebService URL +dol_syslog("Create soapclient_nusoap for URL=".$WS_DOL_URL); +$soapclient = new soapclient_nusoap($WS_DOL_URL); +if ($soapclient) +{ + $soapclient->soap_defencoding='UTF-8'; +} + +// Call the WebService method and store its result in $result. +dol_syslog("Call method ".$WS_METHOD); +$result = $soapclient->call($WS_METHOD,$parameters); +if (! $result) +{ + print $soapclient->error_str; + exit; +} + +// Show page with result +header("Content-type: text/html; charset=utf8"); +print ''."\n"; +echo ''."\n"; +echo ''; +echo 'WebService Test: '.$WS_METHOD.''; +echo ''."\n"; + +echo ''."\n"; + +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";; +?>