2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / class / System.Web.Services / Test / standalone / server / TestBinding4.asmx
1 <%@ WebService Language="c#" Codebehind="GetData.wsdl.cs" Class="GetData.wsdl.GetData" %>\r
2 \r
3 using System.Xml.Serialization;
4 using System;
5 using System.Xml;
6 using System.Web.Services.Protocols;
7 using System.ComponentModel;
8 using System.Web.Services;
9
10 namespace GetData.wsdl{
11
12 /// <remarks/>
13 [System.Web.Services.WebServiceBindingAttribute(Name="GetDataSoap", Namespace="http://IUnknown.Team/ePortal/GetData")]
14 public class GetData : System.Web.Services.WebService {
15
16     
17     /// <remarks/>
18     [System.Web.Services.WebMethodAttribute()]
19     [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://IUnknown.Team/ePortal/GetData/GetTabList", ResponseNamespace="http://IUnknown.Team/ePortal/GetData", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Bare)]
20     [return: System.Xml.Serialization.XmlTextAttribute()]
21     [return: System.Xml.Serialization.XmlAnyElementAttribute()]
22     public System.Xml.XmlNode[] GetTabList(System.Xml.XmlNode[] X_WS_ReturnValue_X)
23         {
24                 return X_WS_ReturnValue_X;
25         }
26     
27     /// <remarks/>
28     [System.Web.Services.WebMethodAttribute()]
29     [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://IUnknown.Team/ePortal/GetData/RebuildTabList", RequestNamespace="http://IUnknown.Team/ePortal/GetData", ResponseNamespace="http://IUnknown.Team/ePortal/GetData", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
30     public bool RebuildTabList(bool X_WS_ReturnValue_X)
31                 {
32                         return X_WS_ReturnValue_X;
33                 }
34     
35     /// <remarks/>
36     [System.Web.Services.WebMethodAttribute()]
37     [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://IUnknown.Team/ePortal/GetData/RebuildTabStruct", RequestNamespace="http://IUnknown.Team/ePortal/GetData", ResponseNamespace="http://IUnknown.Team/ePortal/GetData", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
38     public bool RebuildTabStruct(string tabname, bool X_WS_ReturnValue_X)
39                 {
40                         return X_WS_ReturnValue_X;
41                 }
42     
43     /// <remarks/>
44     [System.Web.Services.WebMethodAttribute()]
45     [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://IUnknown.Team/ePortal/GetData/GetTabStruct", ResponseNamespace="http://IUnknown.Team/ePortal/GetData", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Bare)]
46     [return: System.Xml.Serialization.XmlTextAttribute()]
47     [return: System.Xml.Serialization.XmlAnyElementAttribute()]
48     public System.Xml.XmlNode[] GetTabStruct([System.Xml.Serialization.XmlElementAttribute(Namespace="http://IUnknown.Team/ePortal/GetData")]  string  tabname, System.Xml.XmlNode[] X_WS_ReturnValue_X)
49                 {
50                         return X_WS_ReturnValue_X;
51                 }
52         }
53 }