//------------------------------------------------------------------------------ // // This code was generated by a tool. // Runtime Version: 1.1.4322.573 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ // // このソース コードは wsdl によって自動生成されました。Version=1.1.4322.573 です。 // using System.Diagnostics; using System.Xml.Serialization; using System; using System.Web.Services.Protocols; using System.ComponentModel; using System.Web.Services; /// [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] [System.Web.Services.WebServiceBindingAttribute(Name="HelloSoapBinding", Namespace="http://localhost:8080/axis/Hello.jws")] public class HelloService : System.Web.Services.Protocols.SoapHttpClientProtocol { /// public HelloService() { this.Url = "http://localhost:8080/axis/Hello.jws"; } /// [System.Web.Services.Protocols.SoapRpcMethodAttribute("", RequestNamespace="http://DefaultNamespace", ResponseNamespace="http://localhost:8080/axis/Hello.jws")] [return: System.Xml.Serialization.SoapElementAttribute("sayHelloReturn")] public string sayHello() { object[] results = this.Invoke("sayHello", new object[0]); return ((string)(results[0])); } /// public System.IAsyncResult BeginsayHello(System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("sayHello", new object[0], callback, asyncState); } /// public string EndsayHello(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((string)(results[0])); } }