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

