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

