ILIAS
Release_4_0_x_branch Revision 61816
◀ ilDoc Overview
Main Page
Related Pages
Modules
Namespaces
Data Structures
Files
Examples
File List
Globals
All
Data Structures
Namespaces
Files
Functions
Variables
Groups
Pages
sslclient.php
Go to the documentation of this file.
1
<?php
2
/*
3
* $Id: sslclient.php,v 1.1 2004/01/09 03:23:42 snichol Exp $
4
*
5
* SSL client sample.
6
*
7
* Service: SOAP endpoint
8
* Payload: rpc/encoded
9
* Transport: https
10
* Authentication: none
11
*/
12
require_once(
'../lib/nusoap.php'
);
13
$proxyhost
= isset(
$_POST
[
'proxyhost'
]) ?
$_POST
[
'proxyhost'
] :
''
;
14
$proxyport
= isset(
$_POST
[
'proxyport'
]) ?
$_POST
[
'proxyport'
] :
''
;
15
$proxyusername
= isset(
$_POST
[
'proxyusername'
]) ?
$_POST
[
'proxyusername'
] :
''
;
16
$proxypassword
= isset(
$_POST
[
'proxypassword'
]) ?
$_POST
[
'proxypassword'
] :
''
;
17
$client
=
new
soapclient(
'https://arcweb.esri.com/services/v2/AddressFinder'
,
false
,
18
$proxyhost
,
$proxyport
,
$proxyusername
,
$proxypassword
);
19
$err
=
$client
->getError();
20
if
(
$err
) {
21
echo
'<h2>Constructor error</h2><pre>'
.
$err
.
'</pre>'
;
22
}
23
$result
=
$client
->call(
'getVersion'
, array(),
'http://arcweb.esri.com/v2'
,
'getVersion'
);
24
if
(
$client
->fault) {
25
echo
'<h2>Fault</h2><pre>'
; print_r(
$result
); echo
'</pre>'
;
26
}
else
{
27
$err
=
$client
->getError();
28
if
(
$err
) {
29
echo
'<h2>Error</h2><pre>'
.
$err
.
'</pre>'
;
30
}
else
{
31
echo
'<h2>Result</h2><pre>'
; print_r(
$result
); echo
'</pre>'
;
32
}
33
}
34
echo
'<h2>Request</h2><pre>'
. htmlspecialchars(
$client
->request, ENT_QUOTES) .
'</pre>'
;
35
echo
'<h2>Response</h2><pre>'
. htmlspecialchars(
$client
->response, ENT_QUOTES) .
'</pre>'
;
36
echo
'<h2>Debug</h2><pre>'
. htmlspecialchars(
$client
->debug_str, ENT_QUOTES) .
'</pre>'
;
37
?>
webservice
soap
lib2
samples
sslclient.php
Generated on Wed Apr 27 2016 19:01:55 for ILIAS by
1.8.1.2 (using
Doxyfile
)