ArcGIS Server动态创建MapServer
#region 创建地图服务private bool CreateServices(string MapPath, string ServerName)//ServerName为地图服务设置的服务名{ESRI.ArcGIS.ADF.Identity identity = new ESRI.ArcGIS.ADF.Identity(MapServerUserName, MapserverPass, "");//MapServerUserName和MapserverPass为连接ArcGIS Server的用户名和密码ESRI.ArcGIS.ADF.Connection.AGS.AGSServerConnection agsConnection = new ESRI.ArcGIS.ADF.Connection.AGS.AGSServerConnection(HostName, identity);//HostName为ArcGIS Server所在服务器的主机名agsConnection.Connect();IServerObjectAdmin pServerObjectAdmin;pServerObjectAdmin = agsConnection.ServerObjectAdmin;IServerObjectConfiguration2 configuration = (IServerObjectConfiguration2)pServerObjectAdmin.CreateConfiguration();configuration.Name = ServerName;//发布Service的名称,必填configuration.TypeName = "MapServer";//发布服务的类型,如:MapServer,GeocodeServerIPropertySet props = configuration.Properties;props.SetProperty("FilePath", MapPath);//设置MXD的路径props.SetProperty("OutputDir", "c:\\arcgisserver\\arcgisoutput");//图片的输出目录props.SetProperty("VirtualOutPutDir", "http://" + HostName + "/arcgisoutput");//图片输出的虚拟路径props.SetProperty("SupportedImageReturnTypes", "URL");//支持的图片类型props.SetProperty("MaxImageHeight", "2048");//图片的最大高度props.SetProperty("MaxRecordCount", "500");//返回记录的最大条数props.SetProperty("MaxBufferCount", "100");//缓冲区分析的最大数目props.SetProperty("MaxImageWidth", "2048");//图片的最大宽度props.SetProperty("IsCached", "false");//是否切片props.SetProperty("CacheOnDemand", "false");//是否主动切片props.SetProperty("IgnoreCache", "false");//是否忽略切片props.SetProperty("ClientCachingAllowed", "true");//是否允许客户端缓冲props.SetProperty("CacheDir", "c:\\arcgisserver\\arcgiscache\\NewService");//切片的输出路径props.SetProperty("SOMCacheDir", "c:\\arcgisserver\\arcgiscache");//som的切片输出路径//configuration.Description = "NewService";//Service的描述configuration.IsolationLevel = esriServerIsolationLevel.esriServerIsolationHigh;//或者esriServerIsolationLow,esriServerIsolationAnyconfiguration.IsPooled = true;//是否池化configuration.MaxInstances = 2;//最多的实例数configuration.MinInstances = 1;//最少的实例数设置刷新IPropertySet recycleProp = configuration.RecycleProperties;recycleProp.SetProperty("StartTime", "00:00");//刷新开始时间recycleProp.SetProperty("Interval", "3600");//刷新间隔设置是否开启REST服务IPropertySet infoProp = configuration.Info;infoProp.SetProperty("WebEnabled", "true");//是否提供REST服务infoProp.SetProperty("WebCapabilities", "Map,Query,Data");//提供何种服务//configuration.StartupType = esriStartupType.esriSTAutomatic;//或者esriSTManual//configuration.UsageTimeout = 120;//客户端占用一个服务的最长时间//configuration.WaitTimeout = 120;//客户端申请一个服务的最长等待时间#endregion//添加服务到ServerpServerObjectAdmin.AddConfiguration(configuration);//启动服务pServerObjectAdmin.StartConfiguration(ServerName, "MapServer");//设置服务类型为MapServer,并启动服务return true;}#endregion
ArcGIS Server动态创建ImageServer
private bool CreateServices(string ImagePath, string ServerName){ESRI.ArcGIS.ADF.Identity identity = new ESRI.ArcGIS.ADF.Identity(MapServerUserName, MapserverPass, "");ESRI.ArcGIS.ADF.Connection.AGS.AGSServerConnection agsConnection = new ESRI.ArcGIS.ADF.Connection.AGS.AGSServerConnection(HostName, identity);agsConnection.Connect();IServerObjectAdmin pServerObjectAdmin;pServerObjectAdmin = agsConnection.ServerObjectAdmin;IServerObjectConfiguration2 configuration = (IServerObjectConfiguration2)pServerObjectAdmin.CreateConfiguration();configuration.Name = ServerName;//发布Service的名称,必填configuration.TypeName = "ImageServer";//发布服务的类型,如:MapServer,GeocodeServerIPropertySet propertySet = configuration.Properties;propertySet.SetProperty("Path", ImagePath);//设置Image的路径propertySet.SetProperty("Start", "00:00");propertySet.SetProperty("Interval", "24");propertySet.SetProperty("SupportedImageReturnTypes", "URL");propertySet.SetProperty("OutputDir", "c:\\arcgisserver\\arcgisoutput");//图片的输出目录propertySet.SetProperty("VirtualOutPutDir", "http://" + HostName + "/arcgisoutput");//图片输出的虚拟路径//propertySet.SetProperty("MaxImageHeight", 4100);//4100// propertySet.SetProperty("MaxImageWidth", 15000);//15000//propertySet.SetProperty("AllowedCompressions", "None,JPEG,LZ77");//"None,JPEG,LZ77"//propertySet.SetProperty("DefaultResamplingMethod", 0);//0//propertySet.SetProperty("DefaultCompressionQuality", 75);//75//propertySet.SetProperty("MaxRecordCount", 500);//500//propertySet.SetProperty("MaxMosaicImageCount", 1);//20//propertySet.SetProperty("MaxDownloadImageCount", 20);//20//propertySet.SetProperty("AllowedFields","Name,MinPS,MaxPS,LowPS,HighPS,CenterX,CenterY");//"Name,MinPS,MaxPS,LowPS,HighPS,CenterX,CenterY"//propertySet.SetProperty("AllowedMosaicMethods","Center,NorthWest,LockRaster,ByAttribute,Nadir,Viewpoint,Seamline");//"Center,NorthWest,LockRaster,ByAttribute,Nadir,Viewpoint,Seamline"//propertySet.SetProperty("AllowedItemMetadata", "Full");//"Full"//ImageServiceInfo pImageSerivce = new ImageServiceInfo();configuration.StartupType = esriStartupType.esriSTAutomatic;configuration.MinInstances = 1;configuration.MaxInstances = 2;configuration.IsPooled = true;configuration.Info.SetProperty("WebEnabled", "true");configuration.Info.SetProperty("WebCapabilities", "Image,Catalog,Metadata,Download,Pixels");pServerObjectAdmin.AddConfiguration(configuration);//启动服务pServerObjectAdmin.StartConfiguration(ServerName, "ImageServer");//设置服务类型并启动服务return true;}
转载自:https://blog.csdn.net/lxping1012/article/details/7565342