/// /// /// foo /// [System.Web.Services.WebServiceBinding(Name="ComplexObjectPort", Namespace="http://VALIDHTTP")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public class ComplexObj : System.Web.Services.Protocols.SoapHttpClientProtocol { public ComplexObj() { this.Url = "http://VALIDHTTP/co.pcgi"; } [System.Web.Services.Protocols.SoapRpcMethodAttribute("http://VALIDHTTP#getComplexObj", RequestNamespace="http://VALIDHTTP", ResponseNamespace="http://VALIDHTTP")] [return: System.Xml.Serialization.SoapElement("return")] public compObj getComplexObj() { object[] results = this.Invoke("getComplexObj", new object[]); return ((compObj)(results[0])); } public System.IAsyncResult BegingetComplexObj(System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("getComplexObj", new object[], callback, asyncState); } public compObj EndgetComplexObj(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((compObj)(results[0])); } } /// [System.Xml.Serialization.SoapType(Namespace="http://VALID HTTP")] public class compObj { /// public int Count; /// public string test; }