TestBinding4.asmx 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <%@ WebService Language="c#" Codebehind="GetData.wsdl.cs" Class="GetData.wsdl.GetData" %>
  2. using System.Xml.Serialization;
  3. using System;
  4. using System.Xml;
  5. using System.Web.Services.Protocols;
  6. using System.ComponentModel;
  7. using System.Web.Services;
  8. namespace GetData.wsdl{
  9. /// <remarks/>
  10. [System.Web.Services.WebServiceBindingAttribute(Name="GetDataSoap", Namespace="http://IUnknown.Team/ePortal/GetData")]
  11. public class GetData : System.Web.Services.WebService {
  12. /// <remarks/>
  13. [System.Web.Services.WebMethodAttribute()]
  14. [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)]
  15. [return: System.Xml.Serialization.XmlTextAttribute()]
  16. [return: System.Xml.Serialization.XmlAnyElementAttribute()]
  17. public System.Xml.XmlNode[] GetTabList(System.Xml.XmlNode[] X_WS_ReturnValue_X)
  18. {
  19. return X_WS_ReturnValue_X;
  20. }
  21. /// <remarks/>
  22. [System.Web.Services.WebMethodAttribute()]
  23. [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)]
  24. public bool RebuildTabList(bool X_WS_ReturnValue_X)
  25. {
  26. return X_WS_ReturnValue_X;
  27. }
  28. /// <remarks/>
  29. [System.Web.Services.WebMethodAttribute()]
  30. [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)]
  31. public bool RebuildTabStruct(string tabname, bool X_WS_ReturnValue_X)
  32. {
  33. return X_WS_ReturnValue_X;
  34. }
  35. /// <remarks/>
  36. [System.Web.Services.WebMethodAttribute()]
  37. [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)]
  38. [return: System.Xml.Serialization.XmlTextAttribute()]
  39. [return: System.Xml.Serialization.XmlAnyElementAttribute()]
  40. public System.Xml.XmlNode[] GetTabStruct([System.Xml.Serialization.XmlElementAttribute(Namespace="http://IUnknown.Team/ePortal/GetData")] string tabname, System.Xml.XmlNode[] X_WS_ReturnValue_X)
  41. {
  42. return X_WS_ReturnValue_X;
  43. }
  44. }
  45. }