-
Notifications
You must be signed in to change notification settings - Fork 1
/
namespaces.cpp
40 lines (30 loc) · 1.54 KB
/
namespaces.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*
Copyright (c) 2009 digitalSTROM.org, Zurich, Switzerland
Author: Patrick Staehlin, futureLAB AG <[email protected]>
This file is part of digitalSTROM Server.
digitalSTROM Server 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.
digitalSTROM Server 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 digitalSTROM Server. If not, see <http://www.gnu.org/licenses/>.
*/
// Do not remove the following define as it takes out the previous definition of namespaces
#define WITH_NONAMESPACES
#include "webservices/soapH.h"
#undef WITH_NONAMESPACES
extern "C" {
struct Namespace namespaces[] =
{
{"SOAP-ENV", "http://schemas.xmlsoap.org/soap/envelope/", "http://www.w3.org/*/soap-envelope", NULL},
{"SOAP-ENC", "http://schemas.xmlsoap.org/soap/encoding/", "http://www.w3.org/*/soap-encoding", NULL},
{"xsi", "http://www.w3.org/2001/XMLSchema-instance", "http://www.w3.org/*/XMLSchema-instance", NULL},
{"xsd", "http://www.w3.org/2001/XMLSchema", "http://www.w3.org/*/XMLSchema", NULL},
{"dss", "urn:dss:1.0", NULL, NULL},
{NULL, NULL, NULL, NULL}
};
}