You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
694 B
12 lines
694 B
|
|
#include "stdsoap2.h"
|
|
/* This defines the global XML namespaces[] table to #include and compile */
|
|
SOAP_NMAC 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 },
|
|
{ "WS1", "http://entry.serviceengine.cross.digiwin.com", NULL, NULL },
|
|
{ NULL, NULL, NULL, NULL}
|
|
};
|