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

