View Javadoc

1   package org.codehaus.xfire;
2   
3   
4   /***
5    * SOAP constants from the specs.
6    * 
7    * @author <a href="mailto:dan@envoisolutions.com">Dan Diephouse</a>
8    * @since Feb 18, 2004
9    */
10  public class SOAPConstants
11  {
12      /*** SOAP 1.1 Declarations. */
13      
14      public final static String SOAP11_ENVELOPE_NS = "http://schemas.xmlsoap.org/soap/envelope";
15      
16      public final static String SOAP11_ENCODED = "http://schemas.xmlsoap.org/soap/encoding/";
17  
18     
19      /*** SOAP 1.2 Declarations. */
20      public final static String SOAP12_ENVELOPE_NS = "http://www.w3.org/2003/05/soap-envelope";
21      
22      public final static String SOAP12_ENCODED = "http://www.w3.org/2003/05/soap-encoding";
23  
24      
25      /*** Document styles. */
26      
27      public static final String STYLE_RPC = "rpc";
28  
29      public static final String STYLE_DOCUMENT = "document";
30  
31      public static final String STYLE_WRAPPED = "wrapped";
32  
33      public static final String STYLE_MESSAGE = "message";
34  
35      
36      public static final String USE_LITERAL = "literal";
37  
38      public static final String USE_ECNODED = "encoded";
39  
40      /*** XML Schema Namespace. */
41      public static final String XSD = "http://www.w3.org/2001/XMLSchema";
42  
43  }