using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.Web;
using System.Web.Services;
using System.Xml.Serialization;
using System.Web.Services.Protocols;
namespace SystemManageOperator 
{
 
/// <res/>
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Web.Services.WebServiceBindingAttribute(Name="SystemManageOperatorSoapBinding", Namespace="http://webservice.interfaces.bmcc.com")]
public class SystemManageOperatorService : System.Web.Services.Protocols.SoapHttpClientProtocol 
{
        
/// <res/>
public SystemManageOperatorService() 
{
this.Url = "http://localhost:9080/webserviceServer/services/SystemManageOperator";
}
        
/// <res/>
 [WebMethod]
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("", RequestNamespace="http://webservice.interfaces.bmcc.com", ResponseNamespace="http://webservice.interfaces.bmcc.com", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
[return: System.Xml.Serialization.XmlElementAttribute("healthCheckReturn", IsNullable=true)]
public BizResp healthCheck([System.Xml.Serialization.XmlElementAttribute(IsNullable=true)] ReqHeader reqHeader) 
{
object[] results = this.Invoke("healthCheck", new object[] {
   reqHeader});
return ((BizResp)(results[0]));
}
        
/// <res/>
public System.IAsyncResult BeginhealthCheck(ReqHeader reqHeader, System.AsyncCallback callback, object asyncState) 
{
return this.BeginInvoke("healthCheck", new object[] {
reqHeader}, callback, asyncState);
}
        
/// <res/>
public BizResp EndhealthCheck(System.IAsyncResult asyncResult) 
{
object[] results = this.EndInvoke(asyncResult);
return ((BizResp)(results[0]));
}
}
    
/// <res/>
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://req.webservice.interfaces.bmcc.com")]
public class ReqHeader 
{
        
/// <res/>
[System.Xml.Serialization.XmlElementAttribute(IsNullable=true)]
public string appid;
        
/// <res/>
[System.Xml.Serialization.XmlElementAttribute(IsNullable=true)]
public string reqno;
        
/// <res/>
[System.Xml.Serialization.XmlElementAttribute(IsNullable=true)]
public string reqtime;
        
/// <res/>
[System.Xml.Serialization.XmlElementAttribute(IsNullable=true)]
public string ver;
}
    
/// <res/>
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://resp.webservice.interfaces.bmcc.com")]
public class RespHeader 
{
        
/// <res/>
[System.Xml.Serialization.XmlElementAttribute(IsNullable=true)]
public string appid;
        
/// <res/>
[System.Xml.Serialization.XmlElementAttribute(IsNullable=true)]
public string respcode;
        
/// <res/>
[System.Xml.Serialization.XmlElementAttribute(IsNullable=true)]
public string respmsg;
        
/// <res/>
[System.Xml.Serialization.XmlElementAttribute(IsNullable=true)]
public string respno;
        
/// <res/>
[System.Xml.Serialization.XmlElementAttribute(IsNullable=true)]
public string resptime;
        
/// <res/>
[System.Xml.Serialization.XmlElementAttribute(IsNullable=true)]
public string srcreqno;
}
    
/// <res/>
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://resp.webservice.interfaces.bmcc.com")]
public class BizResp 
{
        
/// <res/>
[System.Xml.Serialization.XmlElementAttribute(IsNullable=true)]
public RespHeader respheader;
}
}