var ComDhService=function() {
ComDhService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
ComDhService.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return ComDhService._staticInstance.get_path();},
IsExsistComDh:function(comdh,succeededCallback, failedCallback, userContext) {
/// <param name="comdh" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'IsExsistComDh',false,{comdh:comdh},succeededCallback,failedCallback,userContext); }}
ComDhService.registerClass('ComDhService',Sys.Net.WebServiceProxy);
ComDhService._staticInstance = new ComDhService();
ComDhService.set_path = function(value) {
ComDhService._staticInstance.set_path(value); }
ComDhService.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return ComDhService._staticInstance.get_path();}
ComDhService.set_timeout = function(value) {
ComDhService._staticInstance.set_timeout(value); }
ComDhService.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return ComDhService._staticInstance.get_timeout(); }
ComDhService.set_defaultUserContext = function(value) { 
ComDhService._staticInstance.set_defaultUserContext(value); }
ComDhService.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return ComDhService._staticInstance.get_defaultUserContext(); }
ComDhService.set_defaultSucceededCallback = function(value) { 
 ComDhService._staticInstance.set_defaultSucceededCallback(value); }
ComDhService.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return ComDhService._staticInstance.get_defaultSucceededCallback(); }
ComDhService.set_defaultFailedCallback = function(value) { 
ComDhService._staticInstance.set_defaultFailedCallback(value); }
ComDhService.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return ComDhService._staticInstance.get_defaultFailedCallback(); }
ComDhService.set_path("/login/ComDhService.asmx");
ComDhService.IsExsistComDh= function(comdh,onSuccess,onFailed,userContext) {
/// <param name="comdh" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
ComDhService._staticInstance.IsExsistComDh(comdh,onSuccess,onFailed,userContext); }

