Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dolibarr
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software_Artifact_Infrastructure_Repository
dolibarr
Commits
919decc6
Commit
919decc6
authored
14 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
Work on web services
parent
5ed1a446
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
htdocs/webservices/demo_client_other.php
+82
-0
82 additions, 0 deletions
htdocs/webservices/demo_client_other.php
with
82 additions
and
0 deletions
htdocs/webservices/demo_client_other.php
0 → 100755
+
82
−
0
View file @
919decc6
<?php
/* Copyright (C) 2006-2009 Laurent Destailleur <eldy@users.sourceforge.net>
*
* 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
'<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">'
.
"
\n
"
;
echo
'<html>'
.
"
\n
"
;
echo
'<head>'
;
echo
'<title>WebService Test: '
.
$WS_METHOD
.
'</title>'
;
echo
'</head>'
.
"
\n
"
;
echo
'<body>'
.
"
\n
"
;
echo
"<h2>Request:</h2>"
;
echo
'<h4>Function</h4>'
;
echo
$WS_METHOD
;
echo
'<h4>SOAP Message</h4>'
;
echo
'<pre>'
.
htmlspecialchars
(
$soapclient
->
request
,
ENT_QUOTES
)
.
'</pre>'
;
echo
'<hr>'
;
echo
"<h2>Response:</h2>"
;
echo
'<h4>Result</h4>'
;
echo
'<pre>'
;
print_r
(
$result
);
echo
'</pre>'
;
echo
'<h4>SOAP Message</h4>'
;
echo
'<pre>'
.
htmlspecialchars
(
$soapclient
->
response
,
ENT_QUOTES
)
.
'</pre>'
;
echo
'</body>'
.
"
\n
"
;;
echo
'</html>'
.
"
\n
"
;;
?>
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment