var mapws=function() {
mapws.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
mapws.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return mapws._staticInstance.get_path();},
HelloWorld:function(succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'HelloWorld',false,{},succeededCallback,failedCallback,userContext); },
GetMapState:function(mapnr,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetMapState',false,{mapnr:mapnr},succeededCallback,failedCallback,userContext); },
GetFeatures:function(layer,zoomNr,noids,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetFeatures',false,{layer:layer,zoomNr:zoomNr,noids:noids},succeededCallback,failedCallback,userContext); },
ReCreateLayer:function(succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'ReCreateLayer',false,{},succeededCallback,failedCallback,userContext); },
LogOper:function(succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'LogOper',false,{},succeededCallback,failedCallback,userContext); }}
mapws.registerClass('mapws',Sys.Net.WebServiceProxy);
mapws._staticInstance = new mapws();
mapws.set_path = function(value) { mapws._staticInstance.set_path(value); }
mapws.get_path = function() { return mapws._staticInstance.get_path(); }
mapws.set_timeout = function(value) { mapws._staticInstance.set_timeout(value); }
mapws.get_timeout = function() { return mapws._staticInstance.get_timeout(); }
mapws.set_defaultUserContext = function(value) { mapws._staticInstance.set_defaultUserContext(value); }
mapws.get_defaultUserContext = function() { return mapws._staticInstance.get_defaultUserContext(); }
mapws.set_defaultSucceededCallback = function(value) { mapws._staticInstance.set_defaultSucceededCallback(value); }
mapws.get_defaultSucceededCallback = function() { return mapws._staticInstance.get_defaultSucceededCallback(); }
mapws.set_defaultFailedCallback = function(value) { mapws._staticInstance.set_defaultFailedCallback(value); }
mapws.get_defaultFailedCallback = function() { return mapws._staticInstance.get_defaultFailedCallback(); }
mapws.set_path("/mapws.asmx");
mapws.HelloWorld= function(onSuccess,onFailed,userContext) {mapws._staticInstance.HelloWorld(onSuccess,onFailed,userContext); }
mapws.GetMapState= function(mapnr,onSuccess,onFailed,userContext) {mapws._staticInstance.GetMapState(mapnr,onSuccess,onFailed,userContext); }
mapws.GetFeatures= function(layer,zoomNr,noids,onSuccess,onFailed,userContext) {mapws._staticInstance.GetFeatures(layer,zoomNr,noids,onSuccess,onFailed,userContext); }
mapws.ReCreateLayer= function(onSuccess,onFailed,userContext) {mapws._staticInstance.ReCreateLayer(onSuccess,onFailed,userContext); }
mapws.LogOper= function(onSuccess,onFailed,userContext) {mapws._staticInstance.LogOper(onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
Type.registerNamespace('SlicerLib');
if (typeof(SlicerLib.CMapState) === 'undefined') {
SlicerLib.CMapState=gtc("SlicerLib.CMapState");
SlicerLib.CMapState.registerClass('SlicerLib.CMapState');
}
if (typeof(CFeature) === 'undefined') {
var CFeature=gtc("CFeature");
CFeature.registerClass('CFeature');
}
