(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / System.Web.Services / Test / standalone / server / DuplicateArrayTest.asmx
blob833d1459445d74bf8593f80c198c8f2a84ee4815
1 <%@ WebService Language="c#" Codebehind="spellcheckservice.wsdl.cs" Class="WebService3.DuplicateArrayTest" %>
3 using System.Xml.Serialization;
4 using System;
5 using System.Web.Services.Protocols;
6 using System.ComponentModel;
7 using System.Web.Services;
9 namespace WebService3{
11 /// <remarks/>
12 [System.Web.Services.WebServiceBindingAttribute(Name="SpellCheckServiceSoap", Namespace="http://www.worldwidedesktop.com/spellcheck")]
13 public class DuplicateArrayTest : System.Web.Services.WebService {
14     
15     /// <remarks/>
16     [System.Web.Services.WebMethodAttribute()]
17     [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://www.worldwidedesktop.com/spellcheck/SpellCheck", RequestNamespace="http://www.worldwidedesktop.com/spellcheck", ResponseNamespace="http://www.worldwidedesktop.com/spellcheck", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
18     [return: System.Xml.Serialization.XmlArrayItemAttribute("correction", Namespace="http://www.worldwidedesktop.com/spellcheck/SpellCheckResult.xsd", IsNullable=false)]
19     public correctionsCorrection[] SpellCheck(ref string  LicenseText, ref string  TextToCheck,  correctionsCorrection[] X_WS_ReturnValue_X)
20                 {
21                 //Fill Parameters
22                 // --- Param 0---
23                 LicenseText = LicenseText;
24                 // --- Param 1---
25                 TextToCheck = TextToCheck;
26                 
27                 //Return Value
28                 return X_WS_ReturnValue_X;
29                 }
30     
31     /// <remarks/>
32     [System.Web.Services.WebMethodAttribute()]
33     [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://www.worldwidedesktop.com/spellcheck/MSSpellCheck", RequestNamespace="http://www.worldwidedesktop.com/spellcheck", ResponseNamespace="http://www.worldwidedesktop.com/spellcheck", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
34     public System.Xml.XmlNode MSSpellCheck(ref string  LicenseText, ref string  TextToCheck,  System.Xml.XmlNode X_WS_ReturnValue_X)
35                 {
36                 //Fill Parameters
37                 // --- Param 0---
38                 LicenseText = LicenseText;
39                 // --- Param 1---
40                 TextToCheck = TextToCheck;
41                 
42                 //Return Value
43                 return X_WS_ReturnValue_X;
44                 }
45     
46     /// <remarks/>
47     [System.Web.Services.WebMethodAttribute()]
48     [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://www.worldwidedesktop.com/spellcheck/WSpellCheck", RequestNamespace="http://www.worldwidedesktop.com/spellcheck", ResponseNamespace="http://www.worldwidedesktop.com/spellcheck", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
49     public System.Xml.XmlNode WSpellCheck(ref string  LicenseText, ref string  TextToCheck,  System.Xml.XmlNode X_WS_ReturnValue_X)
50                 {
51                 //Fill Parameters
52                 // --- Param 0---
53                 LicenseText = LicenseText;
54                 // --- Param 1---
55                 TextToCheck = TextToCheck;
56                 
57                 //Return Value
58                 return X_WS_ReturnValue_X;
59                 }
62 /// <remarks/>
63 [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.worldwidedesktop.com/spellcheck/SpellCheckResult.xsd")]
64 public class correctionsCorrection {
65     
66     /// <remarks/>
67     public string word;
68     
69     /// <remarks/>
70     [System.Xml.Serialization.XmlArrayItemAttribute("suggestion", IsNullable=false)]
71     public string[] suggestions;