`

用Data source-specific APIs 编程

阅读更多

ArcGIS Server APIs
SOAP
1)XML-structured 语言。
2)
server objectsserver object extensions可用。
3)
设计用作stateless 交互。
4)Catalog
请求由IServerCatalogAdmin 接口处理。
5)Service
请求由IRequestHandler 接口处理。
ArcObjects
1)
远程与GIS Server上的ArcObjects 交互。
2)
使用客户端的Primary Interop Assemblies (PIA) object libraries
3)
通过SOM访问获得ArcGIS Server services
4)
设计用作stateless stateful 交互。

ArcGIS Server MapResource 类型

AMapResourceInternet – 连接到Web service endpoint

BMapResourceLocal – 连接到Server Object Manager

1)访问ServerContext

2)使用ArcObjects

 

ArcGIS Server Internet: SOAP编程

1)MapResourceInternet

MapServerProxy, 访问value objects

2)通讯是stateless

3)使用pooled objects

Dim mapRes as ESRI.ArcGIS.ADF.Web.DataSources.ArcGISServer.MapResourceInternet

mapRes = gisFunc.Resource

Dim mapsProxy as ArcGISServer.MapServerProxy = mapRes.MapServerProxy

Dim mapInfo as ArcGISServer.MapServerInfo =

mapsProxy.GetServerInfo(mapsProxy.GetDefaultMapName())

Dim mapDesc as ArcGISServer.MapDescription = mapInfo.DefaultMapDescription

Dim mLayerInfo as ArcGIServer.MapLayerInfo()

mLayerInfo = mapRes.MapServerInfo.MapLayerInfos

Dim layerDescs as ArcGISServer.LayerDescription()

layerDescs = mapDesc.LayerDescriptions

 

ArcGIS Server Local: ArcObjects 编程

1)远程访问ArcObjects

2)MapServerLocal

MapServer > IMapServer (COM) >IMapServerObjects (COM)

3)通过.NET部件访问高级的functionality

 

Dim mapFunc as IMapFunctionality = Map1.GetFunctionality(0)

Dim ags_mr as ESRI.ArcGIS.ADF.Web.DataSources.ArcGISServer.MapResourceLocal

ags_mr =

CType(mapFunc.Resource,ESRI.ArcGIS.ADF.Web.DataSources.ArcGISServer.MapResourceLocal)

' Access the ArcObjects COM ServerObject directly

Dim mapServer as ESRI.ArcGIS.Carto. IMapServer = CType(ags_mr.MapServer,IMapServer)

Dim mapServerObjs as ESRI.ArcGIS.Carto.IMapServerObjects

mapServerObjs = CType(mapServer,IMapServerObjects)

Dim map as ESRI.ArcGIS.Carto.IMap = mapServerObjs.Map

' Now perform more ArcObjects operations

Dim featClass as IFeatureClass = CType(map.Layers(0)).FeatureClass,

 

 

深入ArcGIS Server Local API

1)MapResourceLocal

通过DCOM访问server上的ArcObjects

ServerContext

2)所有的过程在远程完成

 

 

 

ArcObjects 远程编程

1)能在服务器上创建新的对象

2)MapServerLocal

ServerContextInfo

ServerContext

3)不需要release servercontext

Dim ags_mr as ESRI.ArcGIS.ADF.Web.DataSources.ArcGISServer.MapResourceLocal

ags_mr =

CType(qfunc.Resource,ESRI.ArcGIS.ADF.Web.DataSources.ArcGISServer.MapResourceLocal)

' Create a new ArcObjects COM objects

Dim context as ESRI.ArcGIS.Server.IServerContext = ags_mr.ServerContextInfo.ServerContext

Dim pnt as ESRI.ArcGIS.Geometry.IPoint = context.CreateObject("esriGeometry.Point")

pnt.X = 60

pnt.Y = 100

Dim topo as ESRI.ArcGIS.Geometry.ITopologicalOperator = CType(pnt, Itopological)

 

常用开发模式

--首先建立连接

Identity identity = new Identity("username", "pwd", "domain");
AGSServerConnection connection = new AGSServerConnection("fmc-pca187", identity);
connection.Connect();

--获得服务器对象

IServerObjectManager m_pSOM = connection. ServerObjectManager ;
IServerContext m_pServerContext = m_pSOM. CreateServerContext (" testMap" , "MapServer" ) ;
IMapServer pMapServer = m_pServerContext . ServerObject  as IMapServer ;

--使用服务器对象

IMapServerObject s pMapServerObject s = ( IMapServerObject s) pMapServer ;
IMap pMap = pMapServerObject s. get_Map (pMapServer .DefaultMapName) ;
IFeatureLayer p FLayer = ( IFeatureLayer) pMap. get_Layer(0) ;
IFeatureClass p FeatureClass = p FLayer . FeatureClass ;
int i = p FeatureClass. FeatureCount (null) ; 

--释放服务器对象

m_pServerContext . ReleaseContext () ;

  

 

 

分享到:
评论

相关推荐

    ArcServer四种开发方式

    3. **Web ADF/Common Data Source API->Data Source Specific APIs** **页面ADF框架普通数据源API调用数据源具体API** 在这一级别,开发者可以直接调用特定数据源的API,进一步增强应用程序的功能和性能。例如,...

    Core Software Security: Security at the Source

    Secure Coding Frameworks (APIs) Manual Code Review Independent Code Review and Testing (by Experts or Third Parties) Static Analysis Risk Assessment Methodology Integration of SDL with SDLC ...

    应用Dephi 开发佳能照相机API

    When using the EDSDK libraries, you must call this API once before using EDSDK APIs. Parameters: In: None Out: None Returns: Returns EDS_ERR_OK if successful. In other cases, see EDSDKError....

    ArcGIS Server 开发

    ArcGIS Engine包含丰富的控件和API,但需要授权,而data source specific APIs则无需授权即可在桌面环境中直接编程使用。 4. **移动应用开发**:针对特定移动设备,如PocketPC,开发者可以利用Mobile ADF,这是为...

    JavaScript APIs HTML5

    event.dataTransfer.setData("arbitrary", "data"); }); // On the target element: const targetElement = document.querySelector('.target'); targetElement.addEventListener('dragover', function(event) { ...

    geronimo-book.pdf

    - **Server Resources:** Resources like data sources, JMS destinations, and mail sessions can be managed within Geronimo. - **Server Management & Deployment:** Geronimo provides tools for managing and ...

    ArcGISServer开发Flyingis.pdf

    - **data source specific developer APIs**:可在桌面应用中直接编程使用,无需授权。 5. **移动应用开发** Mobile ADF是为移动设备如PocketPC设计的开发框架,通过途径4利用ArcGIS Server Web services和SOAP ...

    iOS Fuondation Framework Reference

    It provides a rich set of high-level APIs for handling data, performing operations, and managing system resources. The framework includes classes, protocols, and other components that developers can ...

    selenium webdriver 3 practical guide 第二版

    Selenium WebDriver is an open source automation tool implemented through a browser-specific driver, which sends commands to a browser and retrieves results. The latest version of Selenium 3 brings ...

    impala-2.8

    - **ODBC Configuration**: Requires configuring the ODBC driver and establishing a DSN (Data Source Name). - **JDBC Configuration**: - **Configuring the JDBC Port**: Specifies the port used for JDBC ...

    elasticsearch-py-readthedocs-io-en-7.7.1.pdf

    print("%(timestamp)s %(author)s: %(text)s" % hit["_source"]) ``` #### Features (Page 9) The `elasticsearch-py` library offers several advanced features that enhance its functionality: ##### ...

    PhoneGap 3.x Mobile Application Development Hotshot.2014.pdf

    - **Native device API access:** Access native device features like camera, accelerometer, and geolocation through JavaScript APIs. - **Performance optimization:** Improved performance through ...

    ComponentOne 2012 V2 ActiveReports 7(完整安装)

    Its unique architecture allows the lean reporting engine to quickly read records from the data source and immediately render them to the output device. The simplicity of the design allows the data to...

    ComponentOne 2012 V2 ActiveReports 7 1/3

    Its unique architecture allows the lean reporting engine to quickly read records from the data source and immediately render them to the output device. The simplicity of the design allows the data to...

    ComponentOne 2012 V2 ActiveReports 7 3/3

    Its unique architecture allows the lean reporting engine to quickly read records from the data source and immediately render them to the output device. The simplicity of the design allows the data to...

    Google C++ Style Guide(Google C++编程规范)高清PDF

    Google-Specific Magic Smart Pointers cpplint Other C++ Features Reference Arguments Function Overloading Default Arguments Variable-Length Arrays and alloca() Friends Exceptions Run-Time Type ...

Global site tag (gtag.js) - Google Analytics