arcgis server

ArcGIS Server:
ArcGIS Server现支持Red Hat Enterprise Linux AS/ES 3.0,SUSE Linux Enterprise Server 9,和Solaris 8和9。 ArcGIS Server是一个用于构建集中管理和支持多用户的企业级GIS应用平台。更多有关ArcGIS Server的产品信息,可以访问 www.esri.com/arcgisserver

ArcGIS Server是一个发布企业级GIS应用程序的综合平台,支持的GIS软件可以集中管理并且支持多用户。ArcGIS Server提供了创建和配置GIS应用程序和服务的框架,这样可以满足各种客户端的各种需求。

ArcGIS Server的功能

对GIS提供基于浏览器的访问方式
在企业内部发布高级的GIS网络服务
应用.NET开发个性化应用程序,满足用户各种特殊的需求
应用行业标准软件集成GIS和其他IT技术
提供集中管理、多用户编辑的能力
在服务器上实现集中的空间分析

ArcGIS Server开发技术交流!
1. ArcGIS Engine和ArcGIS Server的交叉点,是否可以利用ArcGIS Engine直接开发成COM组件,然后由ArcGIS Server调用,或者先通过Web Services的方式调用,再通过ArcGIS Server调用Web Services

可以利用Engine开发COM组件的方式,然后由ArcGIS Server直接调用,或者通过类的方式来集成,(但是Engine提供的组件的实现和逻辑应该分开,即Engine开发组件不能带有界面,而只能通过Engine来实现封装特定功能的组件,因为IE和开发COM组件的界面无法融合),同时,Engine提供的组件必须提供符合Server要求的统一接口。

如果部署在一台服务器上,也可以通过Web Services的方式进行集成。



2. 开发Web应用程序,是否可以只采用ArcGIS Server,而不需要ArcGIS Engine。如果使用Engine的话,优势主要体现在哪些方面?

开发Web应用程序,可以只采用ArcGIS Server,可以不需要ArcGIS Engine。因为Server和Engine底层的API是相同的。而采用何种架构模式取决于用户需求和具体的应用。两者实现的方式有一定的差别。



3. ArcGIS Server和ArcIMS的关系。ArcGIS Server是否可以取代ArcIMS,如果不能的话,它们的侧重点各是什么?ArcGIS Server是否可以用于地图数据发布?

ArcGIS Server可以代替ArcIMS,但是必须有高效的服务器,同时实现很好的负载平衡。ArcIMS适合高性能的地图数据发布,它提供的功能比较简单(只具备Viewer的操作),但是速度明显优于ArcGIS Server。而ArcGIS Server可以实现所有Engine可以实现的功能,包括一些高级的GIS功能,比如空间分析等



4. ArcGIS Server部署方案

采用ArcGIS Server开发,部署时推荐使用Windows 2003 Server,有利于负载平衡。也可以采用2000 Pro/XP,但是最好采用Server平台



5. Server Objects



A server object is a coarse-grained ArcObjects component that runs in a process on the SOC machine. ArcGIS Server comes with two out-of-the-box server objects:

. esriCarto.MapServer

. esriLocation.GeocodeServer





6. 池式和状态

Pooled server objects are expected to be used in a stateless manner. As a developer, you are responsible for making sure that the state of the server object, or its associated objects, has not changed when you return the object to the pool (by releasing its context via ReleaseServerContext).Each time a user or application session makes a request to create a pooled server object, it’s indeterminate which running instance it will get out of the pool; therefore, all instances must have the same state or applications will experience inconsistent behavior.

Non-pooled server objects can be used in a stateful manner. Since nonpooled server objects and their contexts are destroyed when you release them, you need to hold onto them for as long as the state is important to you. When you call ReleaseServerContext, or you allow the server context to go out of scope, the server object and its context are destroyed, purging any state changes you made.



7. 状态管理

有状态(状态发生改变的时候)——非池式的服务器对象(或者池式的服务器对象,但在释放返回服务器上下文的时候能恢复的原来起始的状态,这种情况比较少)



无状态(状态不改变)——池式的服务器对象(也可以使用非池式的服务器对象,但不能发生状态的改变,这种情况比较少)



8. 状态改变

调用服务器对象状态的方法:从地图的服务器对象中增加/删除图层

改变服务器对象中图层的Renderer

调用环境状态的方法:

可以作用于池式/非池式的服务器对象,但是在池式的服务器对象中,应用程序在执行操作前不应该依赖处于特殊状态的环境;如果应用程序依赖于环境的状态时,在执行操作前要求设置所需要的环境状态



9. SCALABILITY的关键在于GIS Server的状态性,保持应用程序Scalability的标准

使用无状态的GIS Server

池式的服务器对象

减少应用程序控制服务器对象的时间。及时地释放服务器对象,不能仅仅依赖于.NET自带的垃圾回收系统

 

ArcGIS Server is designed to deploy sophisticated GIS functionality from centralized servers to support enterprise GIS implementations and applications. ArcGIS Server provides the framework for developers to create focused GIS Web applications and services that can be utilized by clients including browser-based applications, ArcGIS Desktop, and ArcGIS Engine applications. The entire ArcGIS System is built and extended using software components called ArcObjects. ArcGIS Server is an object server for ArcObjects.

Use this guide to get ArcGIS Server up and running. If you are new to ArcGIS Server, install the features that have been pre-selected. This installation choice will install ArcGIS Server Object Manager and ArcGIS Server Object Container on the same machine. This configuration is useful for those with limited resources or light server loads. Once you are familiar with ArcGIS Server, use this guide and the ArcGIS Server Administrator and Developer Guide to help define your site configuration and install ArcGIS Server on a distributed system.

ArcGIS Server consists of two primary entities, a GIS server and an Application Developer Framework (ADF). The GIS Server consists of a Server Object Manager (SOM) and Server Object Container (SOC). The ADF is available for .NET and Java developers, and provides the framework to build Web applications and Web services that make use of ArcObjects running in the GIS server. The ADFs are installed using separate setup programs located on CD's in the ArcGIS media kit. See the install guide on the ArcGIS Server .NET Application Developer Framework CD or the ArcGIS Server Java Application Developer Framework CD for specific instructions on installing these parts of the ArcGIS Server product.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值