var FlashVideoService=function() {
FlashVideoService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
FlashVideoService.prototype={
GetVideoPlayer:function(videoID,playerTitle,succeededCallback, failedCallback, userContext) {
return this._invoke(FlashVideoService.get_path(), 'GetVideoPlayer',false,{videoID:videoID,playerTitle:playerTitle},succeededCallback,failedCallback,userContext); }}
FlashVideoService.registerClass('FlashVideoService',Sys.Net.WebServiceProxy);
FlashVideoService._staticInstance = new FlashVideoService();
FlashVideoService.set_path = function(value) { FlashVideoService._staticInstance._path = value; }
FlashVideoService.get_path = function() { return FlashVideoService._staticInstance._path; }
FlashVideoService.set_timeout = function(value) { FlashVideoService._staticInstance._timeout = value; }
FlashVideoService.get_timeout = function() { return FlashVideoService._staticInstance._timeout; }
FlashVideoService.set_defaultUserContext = function(value) { FlashVideoService._staticInstance._userContext = value; }
FlashVideoService.get_defaultUserContext = function() { return FlashVideoService._staticInstance._userContext; }
FlashVideoService.set_defaultSucceededCallback = function(value) { FlashVideoService._staticInstance._succeeded = value; }
FlashVideoService.get_defaultSucceededCallback = function() { return FlashVideoService._staticInstance._succeeded; }
FlashVideoService.set_defaultFailedCallback = function(value) { FlashVideoService._staticInstance._failed = value; }
FlashVideoService.get_defaultFailedCallback = function() { return FlashVideoService._staticInstance._failed; }
FlashVideoService.set_path("/webservices/FlashVideoService.asmx");
FlashVideoService.GetVideoPlayer= function(videoID,playerTitle,onSuccess,onFailed,userContext) {FlashVideoService._staticInstance.GetVideoPlayer(videoID,playerTitle,onSuccess,onFailed,userContext); }
