Test2.asmx 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <%@ WebService Language="c#" Codebehind="BusinessList.wsdl.cs" Class="BusinessList.wsdl.BusinessList" %>
  2. using System.Xml.Serialization;
  3. using System;
  4. using System.Web.Services.Protocols;
  5. using System.ComponentModel;
  6. using System.Web.Services;
  7. namespace BusinessList.wsdl{
  8. /// <remarks/>
  9. [System.Web.Services.WebServiceBindingAttribute(Name="BusinessListSoap", Namespace="http://tempuri.org/")]
  10. [System.Xml.Serialization.XmlIncludeAttribute(typeof(UddiCore))]
  11. public class BusinessList : System.Web.Services.WebService {
  12. /// <remarks/>
  13. [System.Web.Services.WebMethodAttribute()]
  14. [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/GetBusinessList", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
  15. public BusinessInfo[] GetBusinessList( string Name, BusinessInfo[] X_WS_ReturnValue_X)
  16. {
  17. return null;
  18. }
  19. }
  20. /// <remarks/>
  21. [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://tempuri.org/")]
  22. public class BusinessInfo : UddiCore {
  23. /// <remarks/>
  24. public string name;
  25. /// <remarks/>
  26. [System.Xml.Serialization.XmlElementAttribute("description")]
  27. public Description[] description;
  28. /// <remarks/>
  29. [System.Xml.Serialization.XmlArrayItemAttribute("serviceInfo")]
  30. public ServiceInfo[] serviceInfos;
  31. /// <remarks/>
  32. [System.Xml.Serialization.XmlAttributeAttribute()]
  33. public string businessKey;
  34. }
  35. /// <remarks/>
  36. [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://tempuri.org/")]
  37. public class Description : UddiCore {
  38. /// <remarks/>
  39. [System.Xml.Serialization.XmlAttributeAttribute(Form=System.Xml.Schema.XmlSchemaForm.Qualified, Namespace="http://www.w3.org/XML/1998/namespace")]
  40. public string lang;
  41. /// <remarks/>
  42. [System.Xml.Serialization.XmlTextAttribute()]
  43. public string[] Text;
  44. }
  45. /// <remarks/>
  46. [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://tempuri.org/")]
  47. [System.Xml.Serialization.XmlIncludeAttribute(typeof(ServiceInfo))]
  48. [System.Xml.Serialization.XmlIncludeAttribute(typeof(Description))]
  49. [System.Xml.Serialization.XmlIncludeAttribute(typeof(BusinessInfo))]
  50. public class UddiCore {
  51. }
  52. /// <remarks/>
  53. [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://tempuri.org/")]
  54. public class ServiceInfo : UddiCore {
  55. /// <remarks/>
  56. public string name;
  57. /// <remarks/>
  58. [System.Xml.Serialization.XmlAttributeAttribute()]
  59. public string serviceKey;
  60. /// <remarks/>
  61. [System.Xml.Serialization.XmlAttributeAttribute()]
  62. public string businessKey;
  63. }
  64. }