01: package org.objectweb.celtix.bus.bindings.soap;
02:
03: import javax.xml.namespace.QName;
04:
05: public final class SOAPConstants {
06: public static final String SOAP_URI = "http://schemas.xmlsoap.org/wsdl/soap/";
07: public static final String SOAP_ENV_URI = "http://schemas.xmlsoap.org/soap/envelope/";
08: public static final QName EMPTY_QNAME = new QName("", "");
09: public static final QName SOAP_ENV_ENCSTYLE = new QName(
10: "http://schemas.xmlsoap.org/soap/envelope/",
11: "encodingStyle");
12: public static final QName SOAP_ENV = new QName(
13: "http://schemas.xmlsoap.org/soap/envelope/", "Envelope");
14: public static final QName SOAP_HEADER = new QName(
15: "http://schemas.xmlsoap.org/soap/envelope/", "Header");
16: public static final QName SOAP_BODY = new QName(
17: "http://schemas.xmlsoap.org/soap/envelope/", "Body");
18: public static final QName SOAP_FAULT = new QName(
19: "http://schemas.xmlsoap.org/soap/envelope/", "Fault");
20: //SOAP1.1 FaultCodes
21: public static final QName FAULTCODE_VERSIONMISMATCH = new QName(
22: SOAP_ENV_URI, "VersionMismatch");
23: public static final QName FAULTCODE_MUSTUNDERSTAND = new QName(
24: SOAP_ENV_URI, "MustUnderstand");
25: public static final QName FAULTCODE_CLIENT = new QName(
26: SOAP_ENV_URI, "Client");
27: public static final QName FAULTCODE_SERVER = new QName(
28: SOAP_ENV_URI, "Server");
29:
30: public static final QName HEADER_MUSTUNDERSTAND = new QName(
31: SOAP_ENV_URI, "mustUnderstand");
32:
33: }
|