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

