var WS_GestioneVideo=function() {
WS_GestioneVideo.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
WS_GestioneVideo.prototype={
PrimoPiano:function(Xml,succeededCallback, failedCallback, userContext) {
return this._invoke(WS_GestioneVideo.get_path(), 'PrimoPiano',false,{Xml:Xml},succeededCallback,failedCallback,userContext); },
InsertVideo:function(Xml,succeededCallback, failedCallback, userContext) {
return this._invoke(WS_GestioneVideo.get_path(), 'InsertVideo',false,{Xml:Xml},succeededCallback,failedCallback,userContext); },
Anteprima:function(ID,succeededCallback, failedCallback, userContext) {
return this._invoke(WS_GestioneVideo.get_path(), 'Anteprima',false,{ID:ID},succeededCallback,failedCallback,userContext); }}
WS_GestioneVideo.registerClass('WS_GestioneVideo',Sys.Net.WebServiceProxy);
WS_GestioneVideo._staticInstance = new WS_GestioneVideo();
WS_GestioneVideo.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; WS_GestioneVideo._staticInstance._path = value; }
WS_GestioneVideo.get_path = function() { return WS_GestioneVideo._staticInstance._path; }
WS_GestioneVideo.set_timeout = function(value) { var e = Function._validateParams(arguments, [{name: 'timeout', type: Number}]); if (e) throw e; if (value < 0) { throw Error.argumentOutOfRange('value', value, Sys.Res.invalidTimeout); }
WS_GestioneVideo._staticInstance._timeout = value; }
WS_GestioneVideo.get_timeout = function() { 
return WS_GestioneVideo._staticInstance._timeout; }
WS_GestioneVideo.set_defaultUserContext = function(value) { 
WS_GestioneVideo._staticInstance._userContext = value; }
WS_GestioneVideo.get_defaultUserContext = function() { 
return WS_GestioneVideo._staticInstance._userContext; }
WS_GestioneVideo.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; WS_GestioneVideo._staticInstance._succeeded = value; }
WS_GestioneVideo.get_defaultSucceededCallback = function() { 
return WS_GestioneVideo._staticInstance._succeeded; }
WS_GestioneVideo.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; WS_GestioneVideo._staticInstance._failed = value; }
WS_GestioneVideo.get_defaultFailedCallback = function() { 
return WS_GestioneVideo._staticInstance._failed; }
WS_GestioneVideo.set_path("/Uivco/Ws/WS_GestioneVideo.asmx");
WS_GestioneVideo.PrimoPiano= function(Xml,onSuccess,onFailed,userContext) {WS_GestioneVideo._staticInstance.PrimoPiano(Xml,onSuccess,onFailed,userContext); }
WS_GestioneVideo.InsertVideo= function(Xml,onSuccess,onFailed,userContext) {WS_GestioneVideo._staticInstance.InsertVideo(Xml,onSuccess,onFailed,userContext); }
WS_GestioneVideo.Anteprima= function(ID,onSuccess,onFailed,userContext) {WS_GestioneVideo._staticInstance.Anteprima(ID,onSuccess,onFailed,userContext); }
