2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / class / System.Web.Services / Test / standalone / server / TestBinding3.asmx
1 <%@ WebService Language="c#" Codebehind="main.wsdl.cs" Class="main.wsdl.Main" %>\r
2 \r
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 main.wsdl{
10
11 /// <remarks/>
12 [System.Web.Services.WebServiceBindingAttribute(Name="MainSoap", Namespace="http://msdn.microsoft.com/vbasic/")]
13 public class Main : System.Web.Services.WebService {
14
15     
16     /// <remarks/>
17     [System.Web.Services.WebMethodAttribute()]
18     [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://msdn.microsoft.com/vbasic/About", RequestNamespace="http://msdn.microsoft.com/vbasic/", ResponseNamespace="http://msdn.microsoft.com/vbasic/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
19     public string About(string X_WS_ReturnValue_X)
20                 {
21                         return null;
22                 }
23     
24     /// <remarks/>
25     [System.Web.Services.WebMethodAttribute()]
26     [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://msdn.microsoft.com/vbasic/GetCustomerOrderHistory", RequestNamespace="http://msdn.microsoft.com/vbasic/", ResponseNamespace="http://msdn.microsoft.com/vbasic/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
27     public CustomerAndOrderHistoryInfo GetCustomerOrderHistory( string  strCustID, CustomerAndOrderHistoryInfo X_WS_ReturnValue_X)
28                 {
29                         return null;
30                 }
31     
32     /// <remarks/>
33     [System.Web.Services.WebMethodAttribute()]
34     [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://msdn.microsoft.com/vbasic/GetTenMostExpensiveProducts", RequestNamespace="http://msdn.microsoft.com/vbasic/", ResponseNamespace="http://msdn.microsoft.com/vbasic/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
35     public System.Data.DataSet GetTenMostExpensiveProducts(System.Data.DataSet X_WS_ReturnValue_X)
36                 {
37                         return null;
38                 }
39 }
40
41 /// <remarks/>
42 [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://msdn.microsoft.com/vbasic/")]
43 public class CustomerAndOrderHistoryInfo {
44     
45     /// <remarks/>
46     public System.Xml.XmlElement Orders;
47     
48     /// <remarks/>
49     [System.Xml.Serialization.XmlAttributeAttribute()]
50     public string Company;
51 }
52 }