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
| #include "stdsoap2.h"
| /* This defines the global XML namespaces[] table to #include and compile */
| SOAP_NMAC struct Namespace namespaces[] = {
| { "SOAP-ENV", "http://www.w3.org/2003/05/soap-envelope", "http://schemas.xmlsoap.org/soap/envelope/", NULL },
| { "SOAP-ENC", "http://www.w3.org/2003/05/soap-encoding", "http://schemas.xmlsoap.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 },
| { "wsa", "http://schemas.xmlsoap.org/ws/2004/08/addressing", "http://www.w3.org/2005/08/addressing", NULL },
| { "wsdd", "http://schemas.xmlsoap.org/ws/2005/04/discovery", NULL, NULL },
| { "chan", "http://schemas.microsoft.com/ws/2005/02/duplex", NULL, NULL },
| { "wsa5", "http://www.w3.org/2005/08/addressing", "http://schemas.xmlsoap.org/ws/2004/08/addressing", NULL },
| { "c14n", "http://www.w3.org/2001/10/xml-exc-c14n#", NULL, NULL },
| { "ds", "http://www.w3.org/2000/09/xmldsig#", NULL, NULL },
| { "saml1", "urn:oasis:names:tc:SAML:1.0:assertion", NULL, NULL },
| { "saml2", "urn:oasis:names:tc:SAML:2.0:assertion", NULL, NULL },
| { "wsu", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd", NULL, NULL },
| { "xenc", "http://www.w3.org/2001/04/xmlenc#", NULL, NULL },
| { "wsc", "http://docs.oasis-open.org/ws-sx/ws-secureconversation/200512", "http://schemas.xmlsoap.org/ws/2005/02/sc", NULL },
| { "wsse", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd", "http://docs.oasis-open.org/wss/oasis-wss-wssecurity-secext-1.1.xsd", NULL },
| { "xmime", "http://tempuri.org/xmime.xsd", NULL, NULL },
| { "xop", "http://www.w3.org/2004/08/xop/include", NULL, NULL },
| { "ns2", "http://www.onvif.org/ver10/pacs", NULL, NULL },
| { "tt", "http://www.onvif.org/ver10/schema", NULL, NULL },
| { "wsrfbf", "http://docs.oasis-open.org/wsrf/bf-2", NULL, NULL },
| { "wstop", "http://docs.oasis-open.org/wsn/t-1", NULL, NULL },
| { "wsrfr", "http://docs.oasis-open.org/wsrf/r-2", NULL, NULL },
| { "ns1", "http://www.onvif.org/ver10/accesscontrol/wsdl", NULL, NULL },
| { "tdn", "http://www.onvif.org/ver10/network/wsdl", NULL, NULL },
| { "tds", "http://www.onvif.org/ver10/device/wsdl", NULL, NULL },
| { "tev", "http://www.onvif.org/ver10/events/wsdl", NULL, NULL },
| { "wsnt", "http://docs.oasis-open.org/wsn/b-2", NULL, NULL },
| { "tmd", "http://www.onvif.org/ver10/deviceIO/wsdl", NULL, NULL },
| { "tptz", "http://www.onvif.org/ver20/ptz/wsdl", NULL, NULL },
| { "trt", "http://www.onvif.org/ver10/media/wsdl", NULL, NULL },
| { NULL, NULL, NULL, NULL}
| };
|
|