Test1.asmx 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <%@ WebService Language="c#" Codebehind="InteropTestDocLitParameters.wsdl.cs" Class="InteropTestDocLitParameters.wsdl.WSDLInteropTestDocLitParameters" %>
  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 InteropTestDocLitParameters.wsdl{
  8. /// <remarks/>
  9. [System.Web.Services.WebServiceBindingAttribute(Name="WSDLInteropTestDocLitParametersSoap", Namespace="http://soapinterop.org")]
  10. public class WSDLInteropTestDocLitParameters : System.Web.Services.WebService {
  11. /// <remarks/>
  12. [System.Web.Services.WebMethodAttribute()]
  13. [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://soapinterop.org/", RequestNamespace="http://soapinterop.org/xsd", ResponseNamespace="http://soapinterop.org/xsd", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
  14. [return: System.Xml.Serialization.XmlElementAttribute("return", Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  15. public SOAPStruct echoStruct([System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] SOAPStruct param0, SOAPStruct X_WS_ReturnValue_X)
  16. {
  17. return null;
  18. }
  19. /// <remarks/>
  20. [System.Web.Services.WebMethodAttribute()]
  21. [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://soapinterop.org/", RequestNamespace="http://soapinterop.org/xsd", ResponseNamespace="http://soapinterop.org/xsd", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
  22. [return: System.Xml.Serialization.XmlArrayAttribute("return", Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  23. [return: System.Xml.Serialization.XmlArrayItemAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, IsNullable=false)]
  24. public string[] echoStringArray([System.Xml.Serialization.XmlArrayAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] [System.Xml.Serialization.XmlArrayItemAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, IsNullable=false)] string[] param0, string[] X_WS_ReturnValue_X)
  25. {
  26. return null;
  27. }
  28. /// <remarks/>
  29. [System.Web.Services.WebMethodAttribute()]
  30. [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://soapinterop.org/", RequestNamespace="http://soapinterop.org/xsd", ResponseNamespace="http://soapinterop.org/xsd", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
  31. [return: System.Xml.Serialization.XmlElementAttribute("return", Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  32. public string echoString([System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] string param0, string X_WS_ReturnValue_X)
  33. {
  34. return null;
  35. }
  36. }
  37. /// <remarks/>
  38. [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://soapinterop.org/xsd")]
  39. public class SOAPStruct {
  40. /// <remarks/>
  41. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  42. public System.Single varFloat;
  43. /// <remarks/>
  44. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  45. public int varInt;
  46. /// <remarks/>
  47. [System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  48. public string varString;
  49. }
  50. }