(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / Microsoft.Web.Services / Microsoft.Web.Services / Soap.cs
blobb653ab4cbe5deedacf39398460232062579b3ccc
1 //
2 // Soap.cs: SOAP definitions for WSE
3 //
4 // Author:
5 // Sebastien Pouliot (spouliot@motus.com)
6 //
7 // (C) 2002, 2003 Motus Technologies Inc. (http://www.motus.com)
8 //
10 using System;
12 namespace Microsoft.Web.Services {
14 public class Soap {
16 public class AttributeNames {
18 public const string Actor = "actor";
19 public const string MustUnderstand = "mustUnderstand";
21 public AttributeNames() {}
24 public class ElementNames {
25 public const string Body = "Body";
26 public const string Envelope = "Envelope";
27 public const string Fault = "Fault";
28 public const string FaultActor = "faultactor";
29 public const string FaultCode = "faultcode";
30 public const string FaultDetail = "detail";
31 public const string FaultString = "faultstring";
32 public const string Header = "Header";
33 public const string Message = "Message";
34 public const string StackTrace = "StackTrace";
36 public ElementNames () {}
39 public const string ActorNext = "http://schemas.xmlsoap.org/soap/actor/next";
40 public static readonly Uri ActorNextURI = new Uri (ActorNext);
42 public const string DimeContentType = "application/dime";
43 public const string FaultNamespaceURI = "http://schemas.microsoft.com/wsdk/2002/10/";
44 public const string NamespaceURI = "http://schemas.xmlsoap.org/soap/envelope/";
45 public const string Prefix = "soap";
46 public const string SoapContentType = "text/xml";
48 public Soap() {}