Type.registerNamespace('WebSiteMvc');
WebSiteMvc.webService=function() {
WebSiteMvc.webService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
WebSiteMvc.webService.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return WebSiteMvc.webService._staticInstance.get_path();},
Test:function(guid,succeededCallback, failedCallback, userContext) {
/// <param name="guid" 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(), 'Test',false,{guid:guid},succeededCallback,failedCallback,userContext); },
AuthorizedIp:function(userName,password,guid,ip,succeededCallback, failedCallback, userContext) {
/// <param name="userName" type="String">System.String</param>
/// <param name="password" type="String">System.String</param>
/// <param name="guid" type="String">System.String</param>
/// <param name="ip" 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(), 'AuthorizedIp',false,{userName:userName,password:password,guid:guid,ip:ip},succeededCallback,failedCallback,userContext); },
GetVideoE:function(userName,password,guid,url,succeededCallback, failedCallback, userContext) {
/// <param name="userName" type="String">System.String</param>
/// <param name="password" type="String">System.String</param>
/// <param name="guid" type="String">System.String</param>
/// <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(), 'GetVideoE',false,{userName:userName,password:password,guid:guid,url:url},succeededCallback,failedCallback,userContext); },
Prepare:function(userName,password,succeededCallback, failedCallback, userContext) {
/// <param name="userName" type="String">System.String</param>
/// <param name="password" 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(), 'Prepare',false,{userName:userName,password:password},succeededCallback,failedCallback,userContext); },
GetOutput:function(userName,password,guid,succeededCallback, failedCallback, userContext) {
/// <param name="userName" type="String">System.String</param>
/// <param name="password" type="String">System.String</param>
/// <param name="guid" 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(), 'GetOutput',false,{userName:userName,password:password,guid:guid},succeededCallback,failedCallback,userContext); },
SetClientConvertData:function(guid,input,succeededCallback, failedCallback, userContext) {
/// <param name="guid" type="String">System.String</param>
/// <param name="input" 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(), 'SetClientConvertData',false,{guid:guid,input:input},succeededCallback,failedCallback,userContext); },
GetClientConvertData:function(guid,succeededCallback, failedCallback, userContext) {
/// <param name="guid" 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(), 'GetClientConvertData',false,{guid:guid},succeededCallback,failedCallback,userContext); },
AquireNewProcess:function(processStatus,succeededCallback, failedCallback, userContext) {
/// <param name="processStatus" 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(), 'AquireNewProcess',false,{processStatus:processStatus},succeededCallback,failedCallback,userContext); },
GetCountConvertData:function(processStatus,succeededCallback, failedCallback, userContext) {
/// <param name="processStatus" 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(), 'GetCountConvertData',false,{processStatus:processStatus},succeededCallback,failedCallback,userContext); }}
WebSiteMvc.webService.registerClass('WebSiteMvc.webService',Sys.Net.WebServiceProxy);
WebSiteMvc.webService._staticInstance = new WebSiteMvc.webService();
WebSiteMvc.webService.set_path = function(value) {
WebSiteMvc.webService._staticInstance.set_path(value); }
WebSiteMvc.webService.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return WebSiteMvc.webService._staticInstance.get_path();}
WebSiteMvc.webService.set_timeout = function(value) {
WebSiteMvc.webService._staticInstance.set_timeout(value); }
WebSiteMvc.webService.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return WebSiteMvc.webService._staticInstance.get_timeout(); }
WebSiteMvc.webService.set_defaultUserContext = function(value) { 
WebSiteMvc.webService._staticInstance.set_defaultUserContext(value); }
WebSiteMvc.webService.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return WebSiteMvc.webService._staticInstance.get_defaultUserContext(); }
WebSiteMvc.webService.set_defaultSucceededCallback = function(value) { 
 WebSiteMvc.webService._staticInstance.set_defaultSucceededCallback(value); }
WebSiteMvc.webService.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return WebSiteMvc.webService._staticInstance.get_defaultSucceededCallback(); }
WebSiteMvc.webService.set_defaultFailedCallback = function(value) { 
WebSiteMvc.webService._staticInstance.set_defaultFailedCallback(value); }
WebSiteMvc.webService.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return WebSiteMvc.webService._staticInstance.get_defaultFailedCallback(); }
WebSiteMvc.webService.set_path("/webService.asmx");
WebSiteMvc.webService.Test= function(guid,onSuccess,onFailed,userContext) {
/// <param name="guid" 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>
WebSiteMvc.webService._staticInstance.Test(guid,onSuccess,onFailed,userContext); }
WebSiteMvc.webService.AuthorizedIp= function(userName,password,guid,ip,onSuccess,onFailed,userContext) {
/// <param name="userName" type="String">System.String</param>
/// <param name="password" type="String">System.String</param>
/// <param name="guid" type="String">System.String</param>
/// <param name="ip" 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>
WebSiteMvc.webService._staticInstance.AuthorizedIp(userName,password,guid,ip,onSuccess,onFailed,userContext); }
WebSiteMvc.webService.GetVideoE= function(userName,password,guid,url,onSuccess,onFailed,userContext) {
/// <param name="userName" type="String">System.String</param>
/// <param name="password" type="String">System.String</param>
/// <param name="guid" type="String">System.String</param>
/// <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>
WebSiteMvc.webService._staticInstance.GetVideoE(userName,password,guid,url,onSuccess,onFailed,userContext); }
WebSiteMvc.webService.Prepare= function(userName,password,onSuccess,onFailed,userContext) {
/// <param name="userName" type="String">System.String</param>
/// <param name="password" 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>
WebSiteMvc.webService._staticInstance.Prepare(userName,password,onSuccess,onFailed,userContext); }
WebSiteMvc.webService.GetOutput= function(userName,password,guid,onSuccess,onFailed,userContext) {
/// <param name="userName" type="String">System.String</param>
/// <param name="password" type="String">System.String</param>
/// <param name="guid" 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>
WebSiteMvc.webService._staticInstance.GetOutput(userName,password,guid,onSuccess,onFailed,userContext); }
WebSiteMvc.webService.SetClientConvertData= function(guid,input,onSuccess,onFailed,userContext) {
/// <param name="guid" type="String">System.String</param>
/// <param name="input" 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>
WebSiteMvc.webService._staticInstance.SetClientConvertData(guid,input,onSuccess,onFailed,userContext); }
WebSiteMvc.webService.GetClientConvertData= function(guid,onSuccess,onFailed,userContext) {
/// <param name="guid" 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>
WebSiteMvc.webService._staticInstance.GetClientConvertData(guid,onSuccess,onFailed,userContext); }
WebSiteMvc.webService.AquireNewProcess= function(processStatus,onSuccess,onFailed,userContext) {
/// <param name="processStatus" 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>
WebSiteMvc.webService._staticInstance.AquireNewProcess(processStatus,onSuccess,onFailed,userContext); }
WebSiteMvc.webService.GetCountConvertData= function(processStatus,onSuccess,onFailed,userContext) {
/// <param name="processStatus" 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>
WebSiteMvc.webService._staticInstance.GetCountConvertData(processStatus,onSuccess,onFailed,userContext); }

