IServerObjectManager--->CreateServerContext --->IServerContext
在Server Context 中,对于SO的操作有下面几种
CreateObject, SaveObject, and LoadObject
不用NEW,而.CreateObject创建对象,通过其接口,我们可以像在本地使用一样使用创建的对象
我们不能直接去对对象进行修改,而是使用其复制版本.
server contexts 就像一个容器,可以存储创建的对象,如下面的代码:
Dim pPointCollection as IPointCollection = pServerContext.CreateObject("esriGeometry.Polygon")
pServerContext.SetObject ("myPoly", pPointCollection)
Dim pPoly as IPolygon = pServerContext.GetObject("myPoly")
Dim pServerContext As IServerContext = pSOM.CreateServerContext("", "")
Dim pWSF As IWorkspaceFactory = pServerContext.CreateObject("esriDataSourcesGDB.AccessWorkspaceFactory")
Dim pEnumSDI As IEnumServerDirectoryInfo = pSOM.GetServerDirectoryInfos
Dim pSDI As IServerDirectoryInfo = pEnumSDI.Next
Dim pProps As IPropertySet = pServerContext.CreateObject("esriSystem.PropertySet")
' this database will be cleaned by the GIS server
pProps.SetProperty ("DATABASE", pSDI.Path & "\_ags_db1.mdb")
pWSF.Create (pSDI.Path, "_ags_db1", pProps, 0)
' this database will not be cleaned by the GIS server
pProps.SetProperty ("DATABASE", pSDI.Path & "\db2.mdb")
pWSF.Create (pSDI.Path, "db2", pProps, 0)
' this database will not be cleaned by the GIS server
pProps.SetProperty ("DATABASE", pSDI.Path & "\db2.mdb")
pWSF.Create (pSDI.Path, "db2", pProps, 0)
本文介绍如何利用ServerContext接口进行对象的创建、保存与加载,并演示了如何通过此接口创建临时GeoDatabase,包括其具体步骤及代码实现。

3371

被折叠的 条评论
为什么被折叠?



