* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / class / System.Web.Services / Test / standalone / server / TestBinding2.asmx
1 <%@ WebService Language="c#" Codebehind="GetData.wsdl.cs" Class="GetData.wsdl.GetData" %>
2
3 using System.Xml.Serialization;
4 using System;
5 using System.Web.Services.Protocols;
6 using System.ComponentModel;
7 using System.Web.Services;
8
9 namespace GetData.wsdl{
10
11         [System.Web.Services.WebServiceBindingAttribute(Name="GetDataSoap2", Namespace="http://anotheruri/")]
12         public class GetData : System.Web.Services.WebService {
13
14                 
15                 [System.Web.Services.WebMethodAttribute()]
16                 public bool RebuildTabList(bool X_WS_ReturnValue_X)
17                 {
18                         return false;
19                 }
20
21                 [System.Web.Services.WebMethodAttribute()]
22                 [SoapDocumentMethod (Binding="GetDataSoap2")]
23                 public bool OtherMethod(bool X_WS_ReturnValue_X)
24                 {
25                         return false;
26                 }
27
28         }
29 }