TestBinding2.asmx 730 B

1234567891011121314151617181920212223242526272829
  1. <%@ WebService Language="c#" Codebehind="GetData.wsdl.cs" Class="GetData.wsdl.GetData" %>
  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 GetData.wsdl{
  8. [System.Web.Services.WebServiceBindingAttribute(Name="GetDataSoap2", Namespace="http://anotheruri/")]
  9. public class GetData : System.Web.Services.WebService {
  10. [System.Web.Services.WebMethodAttribute()]
  11. public bool RebuildTabList(bool X_WS_ReturnValue_X)
  12. {
  13. return false;
  14. }
  15. [System.Web.Services.WebMethodAttribute()]
  16. [SoapDocumentMethod (Binding="GetDataSoap2")]
  17. public bool OtherMethod(bool X_WS_ReturnValue_X)
  18. {
  19. return false;
  20. }
  21. }
  22. }