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

