var YafAjaxWebService=function() {
YafAjaxWebService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
YafAjaxWebService.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return YafAjaxWebService._staticInstance.get_path();},
GetExternalUrlWarning:function(url,succeededCallback, failedCallback, userContext) {
/// <param name="url" 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(), 'GetExternalUrlWarning',false,{url:url},succeededCallback,failedCallback,userContext); }}
YafAjaxWebService.registerClass('YafAjaxWebService',Sys.Net.WebServiceProxy);
YafAjaxWebService._staticInstance = new YafAjaxWebService();
YafAjaxWebService.set_path = function(value) {
YafAjaxWebService._staticInstance.set_path(value); }
YafAjaxWebService.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return YafAjaxWebService._staticInstance.get_path();}
YafAjaxWebService.set_timeout = function(value) {
YafAjaxWebService._staticInstance.set_timeout(value); }
YafAjaxWebService.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return YafAjaxWebService._staticInstance.get_timeout(); }
YafAjaxWebService.set_defaultUserContext = function(value) { 
YafAjaxWebService._staticInstance.set_defaultUserContext(value); }
YafAjaxWebService.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return YafAjaxWebService._staticInstance.get_defaultUserContext(); }
YafAjaxWebService.set_defaultSucceededCallback = function(value) { 
 YafAjaxWebService._staticInstance.set_defaultSucceededCallback(value); }
YafAjaxWebService.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return YafAjaxWebService._staticInstance.get_defaultSucceededCallback(); }
YafAjaxWebService.set_defaultFailedCallback = function(value) { 
YafAjaxWebService._staticInstance.set_defaultFailedCallback(value); }
YafAjaxWebService.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return YafAjaxWebService._staticInstance.get_defaultFailedCallback(); }
YafAjaxWebService.set_enableJsonp = function(value) { YafAjaxWebService._staticInstance.set_enableJsonp(value); }
YafAjaxWebService.get_enableJsonp = function() { 
/// <value type="Boolean">Specifies whether the service supports JSONP for cross domain calling.</value>
return YafAjaxWebService._staticInstance.get_enableJsonp(); }
YafAjaxWebService.set_jsonpCallbackParameter = function(value) { YafAjaxWebService._staticInstance.set_jsonpCallbackParameter(value); }
YafAjaxWebService.get_jsonpCallbackParameter = function() { 
/// <value type="String">Specifies the parameter name that contains the callback function name for a JSONP request.</value>
return YafAjaxWebService._staticInstance.get_jsonpCallbackParameter(); }
YafAjaxWebService.set_path("/YafAjaxWebService.asmx");
YafAjaxWebService.GetExternalUrlWarning= function(url,onSuccess,onFailed,userContext) {
/// <param name="url" 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>
YafAjaxWebService._staticInstance.GetExternalUrlWarning(url,onSuccess,onFailed,userContext); }

