var NewsLetter=function() {
NewsLetter.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
NewsLetter.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return NewsLetter._staticInstance.get_path();},
newsletter_iscriviti:function(nome,email,sezione,succeededCallback, failedCallback, userContext) {
/// <param name="nome" type="String">System.String</param>
/// <param name="email" type="String">System.String</param>
/// <param name="sezione" 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(), 'newsletter_iscriviti',false,{nome:nome,email:email,sezione:sezione},succeededCallback,failedCallback,userContext); }}
NewsLetter.registerClass('NewsLetter',Sys.Net.WebServiceProxy);
NewsLetter._staticInstance = new NewsLetter();
NewsLetter.set_path = function(value) {
NewsLetter._staticInstance.set_path(value); }
NewsLetter.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return NewsLetter._staticInstance.get_path();}
NewsLetter.set_timeout = function(value) {
NewsLetter._staticInstance.set_timeout(value); }
NewsLetter.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return NewsLetter._staticInstance.get_timeout(); }
NewsLetter.set_defaultUserContext = function(value) { 
NewsLetter._staticInstance.set_defaultUserContext(value); }
NewsLetter.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return NewsLetter._staticInstance.get_defaultUserContext(); }
NewsLetter.set_defaultSucceededCallback = function(value) { 
 NewsLetter._staticInstance.set_defaultSucceededCallback(value); }
NewsLetter.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return NewsLetter._staticInstance.get_defaultSucceededCallback(); }
NewsLetter.set_defaultFailedCallback = function(value) { 
NewsLetter._staticInstance.set_defaultFailedCallback(value); }
NewsLetter.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return NewsLetter._staticInstance.get_defaultFailedCallback(); }
NewsLetter.set_enableJsonp = function(value) { NewsLetter._staticInstance.set_enableJsonp(value); }
NewsLetter.get_enableJsonp = function() { 
/// <value type="Boolean">Specifies whether the service supports JSONP for cross domain calling.</value>
return NewsLetter._staticInstance.get_enableJsonp(); }
NewsLetter.set_jsonpCallbackParameter = function(value) { NewsLetter._staticInstance.set_jsonpCallbackParameter(value); }
NewsLetter.get_jsonpCallbackParameter = function() { 
/// <value type="String">Specifies the parameter name that contains the callback function name for a JSONP request.</value>
return NewsLetter._staticInstance.get_jsonpCallbackParameter(); }
NewsLetter.set_path("/NewsLetter.asmx");
NewsLetter.newsletter_iscriviti= function(nome,email,sezione,onSuccess,onFailed,userContext) {
/// <param name="nome" type="String">System.String</param>
/// <param name="email" type="String">System.String</param>
/// <param name="sezione" 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>
NewsLetter._staticInstance.newsletter_iscriviti(nome,email,sezione,onSuccess,onFailed,userContext); }

