Type.registerNamespace('WebServices');
WebServices.SurveyInterface=function() {
WebServices.SurveyInterface.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
WebServices.SurveyInterface.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return WebServices.SurveyInterface._staticInstance.get_path();},
Survey_Submit:function(intUserID,intSurveyID,intAnswer,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'Survey_Submit',false,{intUserID:intUserID,intSurveyID:intSurveyID,intAnswer:intAnswer},succeededCallback,failedCallback,userContext); }}
WebServices.SurveyInterface.registerClass('WebServices.SurveyInterface',Sys.Net.WebServiceProxy);
WebServices.SurveyInterface._staticInstance = new WebServices.SurveyInterface();
WebServices.SurveyInterface.set_path = function(value) { WebServices.SurveyInterface._staticInstance.set_path(value); }
WebServices.SurveyInterface.get_path = function() { return WebServices.SurveyInterface._staticInstance.get_path(); }
WebServices.SurveyInterface.set_timeout = function(value) { WebServices.SurveyInterface._staticInstance.set_timeout(value); }
WebServices.SurveyInterface.get_timeout = function() { return WebServices.SurveyInterface._staticInstance.get_timeout(); }
WebServices.SurveyInterface.set_defaultUserContext = function(value) { WebServices.SurveyInterface._staticInstance.set_defaultUserContext(value); }
WebServices.SurveyInterface.get_defaultUserContext = function() { return WebServices.SurveyInterface._staticInstance.get_defaultUserContext(); }
WebServices.SurveyInterface.set_defaultSucceededCallback = function(value) { WebServices.SurveyInterface._staticInstance.set_defaultSucceededCallback(value); }
WebServices.SurveyInterface.get_defaultSucceededCallback = function() { return WebServices.SurveyInterface._staticInstance.get_defaultSucceededCallback(); }
WebServices.SurveyInterface.set_defaultFailedCallback = function(value) { WebServices.SurveyInterface._staticInstance.set_defaultFailedCallback(value); }
WebServices.SurveyInterface.get_defaultFailedCallback = function() { return WebServices.SurveyInterface._staticInstance.get_defaultFailedCallback(); }
WebServices.SurveyInterface.set_path("/WebServices/Survey.asmx");
WebServices.SurveyInterface.Survey_Submit= function(intUserID,intSurveyID,intAnswer,onSuccess,onFailed,userContext) {WebServices.SurveyInterface._staticInstance.Survey_Submit(intUserID,intSurveyID,intAnswer,onSuccess,onFailed,userContext); }
