var ws_zany=function() {
ws_zany.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
ws_zany.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return ws_zany._staticInstance.get_path();},
ThumbsUp:function(videoIdInput,name,ipAddress,succeededCallback, failedCallback, userContext) {
/// <param name="videoIdInput" type="String">System.String</param>
/// <param name="name" type="String">System.String</param>
/// <param name="ipAddress" 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(), 'ThumbsUp',false,{videoIdInput:videoIdInput,name:name,ipAddress:ipAddress},succeededCallback,failedCallback,userContext); }}
ws_zany.registerClass('ws_zany',Sys.Net.WebServiceProxy);
ws_zany._staticInstance = new ws_zany();
ws_zany.set_path = function(value) {
ws_zany._staticInstance.set_path(value); }
ws_zany.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return ws_zany._staticInstance.get_path();}
ws_zany.set_timeout = function(value) {
ws_zany._staticInstance.set_timeout(value); }
ws_zany.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return ws_zany._staticInstance.get_timeout(); }
ws_zany.set_defaultUserContext = function(value) { 
ws_zany._staticInstance.set_defaultUserContext(value); }
ws_zany.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return ws_zany._staticInstance.get_defaultUserContext(); }
ws_zany.set_defaultSucceededCallback = function(value) { 
 ws_zany._staticInstance.set_defaultSucceededCallback(value); }
ws_zany.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return ws_zany._staticInstance.get_defaultSucceededCallback(); }
ws_zany.set_defaultFailedCallback = function(value) { 
ws_zany._staticInstance.set_defaultFailedCallback(value); }
ws_zany.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return ws_zany._staticInstance.get_defaultFailedCallback(); }
ws_zany.set_path("/ws_zany/ws_zany.asmx");
ws_zany.ThumbsUp= function(videoIdInput,name,ipAddress,onSuccess,onFailed,userContext) {
/// <param name="videoIdInput" type="String">System.String</param>
/// <param name="name" type="String">System.String</param>
/// <param name="ipAddress" 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>
ws_zany._staticInstance.ThumbsUp(videoIdInput,name,ipAddress,onSuccess,onFailed,userContext); }
