var handleXML=function() {
handleXML.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
handleXML.prototype={
Read:function(Type,succeededCallback, failedCallback, userContext) {
return this._invoke(handleXML.get_path(), 'Read',false,{Type:Type},succeededCallback,failedCallback,userContext); }}
handleXML.registerClass('handleXML',Sys.Net.WebServiceProxy);
handleXML._staticInstance = new handleXML();
handleXML.set_path = function(value) { handleXML._staticInstance._path = value; }
handleXML.get_path = function() { return handleXML._staticInstance._path; }
handleXML.set_timeout = function(value) { handleXML._staticInstance._timeout = value; }
handleXML.get_timeout = function() { return handleXML._staticInstance._timeout; }
handleXML.set_defaultUserContext = function(value) { handleXML._staticInstance._userContext = value; }
handleXML.get_defaultUserContext = function() { return handleXML._staticInstance._userContext; }
handleXML.set_defaultSucceededCallback = function(value) { handleXML._staticInstance._succeeded = value; }
handleXML.get_defaultSucceededCallback = function() { return handleXML._staticInstance._succeeded; }
handleXML.set_defaultFailedCallback = function(value) { handleXML._staticInstance._failed = value; }
handleXML.get_defaultFailedCallback = function() { return handleXML._staticInstance._failed; }
handleXML.set_path("/Support/handleXML.asmx");
handleXML.Read= function(Type,onSuccess,onFailed,userContext) {handleXML._staticInstance.Read(Type,onSuccess,onFailed,userContext); }
