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