| 1 |
/* |
| 2 |
Copyright (c) 2009 digitalSTROM.org, Zurich, Switzerland |
| 3 |
|
| 4 |
Author: Patrick Staehlin, futureLAB AG <pstaehlin@futurelab.ch> |
| 5 |
|
| 6 |
This file is part of digitalSTROM Server. |
| 7 |
|
| 8 |
digitalSTROM Server is free software: you can redistribute it and/or modify |
| 9 |
it under the terms of the GNU General Public License as published by |
| 10 |
the Free Software Foundation, either version 3 of the License, or |
| 11 |
(at your option) any later version. |
| 12 |
|
| 13 |
digitalSTROM Server is distributed in the hope that it will be useful, |
| 14 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 |
GNU General Public License for more details. |
| 17 |
|
| 18 |
You should have received a copy of the GNU General Public License |
| 19 |
along with digitalSTROM Server. If not, see <http://www.gnu.org/licenses/>. |
| 20 |
|
| 21 |
*/ |
| 22 |
|
| 23 |
|
| 24 |
// Do not remove the following define as it takes out the previous definition of namespaces |
| 25 |
#define WITH_NONAMESPACES |
| 26 |
#include "webservices/soapH.h" |
| 27 |
#undef WITH_NONAMESPACES |
| 28 |
|
| 29 |
|
| 30 |
extern "C" { |
| 31 |
struct Namespace namespaces[] = |
| 32 |
{ |
| 33 |
{"SOAP-ENV", "http://schemas.xmlsoap.org/soap/envelope/", "http://www.w3.org/*/soap-envelope", NULL}, |
| 34 |
{"SOAP-ENC", "http://schemas.xmlsoap.org/soap/encoding/", "http://www.w3.org/*/soap-encoding", NULL}, |
| 35 |
{"xsi", "http://www.w3.org/2001/XMLSchema-instance", "http://www.w3.org/*/XMLSchema-instance", NULL}, |
| 36 |
{"xsd", "http://www.w3.org/2001/XMLSchema", "http://www.w3.org/*/XMLSchema", NULL}, |
| 37 |
{"dss", "urn:dss:1.0", NULL, NULL}, |
| 38 |
{NULL, NULL, NULL, NULL} |
| 39 |
}; |
| 40 |
|
| 41 |
} |