ILIAS
release_6 Revision v6.24-5-g0c8bfefb3b8
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
p
s
t
w
+
Functions
_
a
b
c
f
g
h
i
s
t
w
+
Variables
$
c
d
e
f
g
h
j
l
m
p
s
t
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Files
File List
+
Globals
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
server.php
Go to the documentation of this file.
1
<?php
2
/* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3
13
chdir(
"../.."
);
14
define(
"ILIAS_MODULE"
,
"webservice/soap"
);
15
define(
"IL_SOAPMODE_NUSOAP"
, 0);
16
define(
"IL_SOAPMODE_INTERNAL"
, 1);
17
18
// php7 only SOAPMODE_INTERNAL
19
define(
'IL_SOAPMODE'
,
IL_SOAPMODE_INTERNAL
);
20
include_once
"Services/Context/classes/class.ilContext.php"
;
21
ilContext::init
(
ilContext::CONTEXT_SOAP
);
22
23
require_once(
"./Services/Init/classes/class.ilIniFile.php"
);
24
$ilIliasIniFile
=
new
ilIniFile
(
"./ilias.ini.php"
);
25
$ilIliasIniFile
->read();
26
27
if
((
bool
)
$ilIliasIniFile
->readVariable(
'https'
,
'auto_https_detect_enabled'
)) {
28
$headerName =
$ilIliasIniFile
->readVariable(
'https'
,
'auto_https_detect_header_name'
);
29
$headerValue =
$ilIliasIniFile
->readVariable(
'https'
,
'auto_https_detect_header_value'
);
30
31
$headerName =
"HTTP_"
. str_replace(
"-"
,
"_"
, strtoupper($headerName));
32
if
(strcasecmp(
$_SERVER
[$headerName], $headerValue) == 0) {
33
$_SERVER
[
'HTTPS'
] =
'on'
;
34
}
35
}
36
37
if
(
IL_SOAPMODE
==
IL_SOAPMODE_INTERNAL
&& strcasecmp(
$_SERVER
[
"REQUEST_METHOD"
],
"post"
) == 0) {
38
// This is a SOAP request
39
include_once(
'webservice/soap/include/inc.soap_functions.php'
);
40
$uri =
ilSoapFunctions::buildHTTPPath
() .
'/webservice/soap/server.php'
;
41
if
(isset(
$_GET
[
'client_id'
])) {
42
$uri .=
'?client_id='
.
$_GET
[
'client_id'
];
43
$wsdl = $uri .
'&wsdl'
;
44
}
else
{
45
$wsdl = $uri .
'?wsdl'
;
46
}
47
$soapServer =
new
SoapServer($wsdl, array(
'uri'
=> $uri));
48
$soapServer->setObject(
new
ilSoapFunctions
());
49
$soapServer->handle();
50
}
else
{
51
// This is a request to display the available SOAP methods or WSDL...
52
include(
'webservice/soap/nusoapserver.php'
);
53
}
$_GET
$_GET["client_id"]
Definition:
cfg.phpunit.template.php:12
ilSoapFunctions
Definition:
inc.soap_functions.php:48
ilSoapFunctions\buildHTTPPath
static buildHTTPPath()
builds http path if no client is available
Definition:
inc.soap_functions.php:897
$ilIliasIniFile
$ilIliasIniFile
Definition:
server.php:24
$_SERVER
$_SERVER['HTTP_HOST']
Definition:
raiseError.php:10
IL_SOAPMODE_INTERNAL
const IL_SOAPMODE_INTERNAL
Definition:
server.php:16
ilContext\init
static init($a_type)
Init context by type.
Definition:
class.ilContext.php:45
ilContext\CONTEXT_SOAP
const CONTEXT_SOAP
Definition:
class.ilContext.php:23
ilIniFile
INIFile Parser.
Definition:
class.ilIniFile.php:37
IL_SOAPMODE
const IL_SOAPMODE
Definition:
server.php:19
webservice
soap
server.php
Generated on Thu Apr 3 2025 20:01:18 for ILIAS by
1.8.13 (using
Doxyfile
)