Innovate the future

Find the passion of life...
  首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

文章分类 -  ArcGIS Server开发

摘要:1 web应用调用的是远程的AO组件,这些AO对象都运行在服务器ArcSoc.exe进程中,由服务器上下文(server context)统一来创建(IServerContext::CreateObject),由服务器上下文来统一的管理和操作,比如AO对象之间的交互,释放等。2 ArcGIS Server是一个可分布式部署的软件,GIS Server和Web应用可以部署在不同的机子上,而web应用... 阅读全文

posted @ 2005-07-08 10:39 BPM 阅读(2068) 评论(4) 推荐(1)

摘要:下面内容的操作系统为Windows 2000或者XP,如果是服务器版本,大致内容相同,但须作个别调整 1、安装ArcGIS Server至Post Installation 2、填写Server account和Container account 3、利用ESRI公司发布的license文件进行破解,其余都是默认设置。 安装完毕后,需要做相应的设置才能使用ArcGIS Server 4、把Serv... 阅读全文

posted @ 2005-05-11 15:56 BPM 阅读(5344) 评论(8) 推荐(0)

摘要:[VB.NET写法] Private Sub LabelFeature(ByVal pFeaturelayer As IFeatureLayer, ByVal pServerContext As IServerContext) Dim pGeoFeatureLayer As IGeoFeatureLayer pGeoFeatureLayer = pFeaturelayer pGe... 阅读全文

posted @ 2005-05-11 09:28 BPM 阅读(4271) 评论(23) 推荐(0)

摘要:当需要控制图层的可见性时,可以使用 IMapDescription mapdescription = webMap.MapDescription; webMap.ManageLifetime(mapdescription); ILayerDescriptions layerdec = mapdescription.LayerDescriptions; for(int i... 阅读全文

posted @ 2005-05-11 09:08 BPM 阅读(2329) 评论(4) 推荐(1)

摘要:当用DotNET编写COM组件在服务器端扩展Server时,需要遵循的规则有 1) 利用Server Context创建对象(Objects)的时候,需要显式的创建COM实现的一个接口 2) Your COM class should be marshaled using the Automation marshaller. You specify this ... 阅读全文

posted @ 2005-05-11 09:02 BPM 阅读(1038) 评论(0) 推荐(0)