var GetPoster=function() {
GetPoster.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
GetPoster.prototype={
HelloWorld:function(itemid,succeededCallback, failedCallback, userContext) {
return this._invoke(GetPoster.get_path(), 'HelloWorld',false,{itemid:itemid},succeededCallback,failedCallback,userContext); }}
GetPoster.registerClass('GetPoster',Sys.Net.WebServiceProxy);
GetPoster._staticInstance = new GetPoster();
GetPoster.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; GetPoster._staticInstance._path = value; }
GetPoster.get_path = function() { return GetPoster._staticInstance._path; }
GetPoster.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); }
GetPoster._staticInstance._timeout = value; }
GetPoster.get_timeout = function() { 
return GetPoster._staticInstance._timeout; }
GetPoster.set_defaultUserContext = function(value) { 
GetPoster._staticInstance._userContext = value; }
GetPoster.get_defaultUserContext = function() { 
return GetPoster._staticInstance._userContext; }
GetPoster.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; GetPoster._staticInstance._succeeded = value; }
GetPoster.get_defaultSucceededCallback = function() { 
return GetPoster._staticInstance._succeeded; }
GetPoster.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; GetPoster._staticInstance._failed = value; }
GetPoster.get_defaultFailedCallback = function() { 
return GetPoster._staticInstance._failed; }
GetPoster.set_path("/GetPoster.asmx");
GetPoster.HelloWorld= function(itemid,onSuccess,onFailed,userContext) {GetPoster._staticInstance.HelloWorld(itemid,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
if (typeof(Poster) === 'undefined') {
var Poster=gtc("Poster");
Poster.registerClass('Poster');
}

