Type.registerNamespace('RxA.WS');
RxA.WS.Exam=function() {
RxA.WS.Exam.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
RxA.WS.Exam.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return RxA.WS.Exam._staticInstance.get_path();},
ExamAuthentication:function(userID,passCode,examID,servicePassword,init,succeededCallback, failedCallback, userContext) {
/// <param name="userID" type="String">System.String</param>
/// <param name="passCode" type="String">System.String</param>
/// <param name="examID" type="String">System.String</param>
/// <param name="servicePassword" type="String">System.String</param>
/// <param name="init" type="Number">System.Int32</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(), 'ExamAuthentication',false,{userID:userID,passCode:passCode,examID:examID,servicePassword:servicePassword,init:init},succeededCallback,failedCallback,userContext); },
SaveOutput:function(examID,userID,score,pass,xmlOutput,servicePassword,succeededCallback, failedCallback, userContext) {
/// <param name="examID" type="String">System.String</param>
/// <param name="userID" type="String">System.String</param>
/// <param name="score" type="String">System.String</param>
/// <param name="pass" type="String">System.String</param>
/// <param name="xmlOutput" type="String">System.String</param>
/// <param name="servicePassword" 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(), 'SaveOutput',false,{examID:examID,userID:userID,score:score,pass:pass,xmlOutput:xmlOutput,servicePassword:servicePassword},succeededCallback,failedCallback,userContext); }}
RxA.WS.Exam.registerClass('RxA.WS.Exam',Sys.Net.WebServiceProxy);
RxA.WS.Exam._staticInstance = new RxA.WS.Exam();
RxA.WS.Exam.set_path = function(value) {
RxA.WS.Exam._staticInstance.set_path(value); }
RxA.WS.Exam.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return RxA.WS.Exam._staticInstance.get_path();}
RxA.WS.Exam.set_timeout = function(value) {
RxA.WS.Exam._staticInstance.set_timeout(value); }
RxA.WS.Exam.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return RxA.WS.Exam._staticInstance.get_timeout(); }
RxA.WS.Exam.set_defaultUserContext = function(value) { 
RxA.WS.Exam._staticInstance.set_defaultUserContext(value); }
RxA.WS.Exam.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return RxA.WS.Exam._staticInstance.get_defaultUserContext(); }
RxA.WS.Exam.set_defaultSucceededCallback = function(value) { 
 RxA.WS.Exam._staticInstance.set_defaultSucceededCallback(value); }
RxA.WS.Exam.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return RxA.WS.Exam._staticInstance.get_defaultSucceededCallback(); }
RxA.WS.Exam.set_defaultFailedCallback = function(value) { 
RxA.WS.Exam._staticInstance.set_defaultFailedCallback(value); }
RxA.WS.Exam.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return RxA.WS.Exam._staticInstance.get_defaultFailedCallback(); }
RxA.WS.Exam.set_path("/webservice/Exam.asmx");
RxA.WS.Exam.ExamAuthentication= function(userID,passCode,examID,servicePassword,init,onSuccess,onFailed,userContext) {
/// <param name="userID" type="String">System.String</param>
/// <param name="passCode" type="String">System.String</param>
/// <param name="examID" type="String">System.String</param>
/// <param name="servicePassword" type="String">System.String</param>
/// <param name="init" type="Number">System.Int32</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>
RxA.WS.Exam._staticInstance.ExamAuthentication(userID,passCode,examID,servicePassword,init,onSuccess,onFailed,userContext); }
RxA.WS.Exam.SaveOutput= function(examID,userID,score,pass,xmlOutput,servicePassword,onSuccess,onFailed,userContext) {
/// <param name="examID" type="String">System.String</param>
/// <param name="userID" type="String">System.String</param>
/// <param name="score" type="String">System.String</param>
/// <param name="pass" type="String">System.String</param>
/// <param name="xmlOutput" type="String">System.String</param>
/// <param name="servicePassword" 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>
RxA.WS.Exam._staticInstance.SaveOutput(examID,userID,score,pass,xmlOutput,servicePassword,onSuccess,onFailed,userContext); }

