A spatial engine provides access to a service that can perform spatial operations, one of the available spatial engines is for ArcSDE.
Info | ||
---|---|---|
| ||
Cohga does not recommend sites update beyond ArcSDE 10.2. ArcSDE 10.3 provides little additional functionality (in fact none that I can find) and ESRI has removed the ability for third party applications (like Weave) to connect to ArcSDE. If you do migrate to ArcSDE 10.3 and wish to continue to use data managed by ArcSDE with Weave you will need to ensure that ArcSDE stores the data using the underlying database native geometry type and have Weave connect to the database directly. |
Note |
---|
Supporting Direct Connect is not a trivial matter, it requires a full installation of the ArcSDE client on the Weave server and modifications to the Weave startup (to include the ArcSDE native libraries in Weave). The following links may help. |
...
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
<geotools:spatialengine id="arcsde">
<dbtype>arcsde</dbtype>
<server>sdedev</server>
<port>5151</port>
<user>gis</user>
<password>b0rdumm</password>
<pool>
<minConnections>2</minConnections>
<maxConnections>16</maxConnections>
<timeout>1000</timeout>
<testOnBorrow>true</testOnBorrow>
<testOnReturn>true</testOnReturn>
<testWhileIdle>false</testWhileIdle>
<minEvictableIdleTimeMillis>180000</minEvictableIdleTimeMillis>
</pool>
<database.version>PUBLIC</database.version>
<datastore.allowNonSpatialTables>true</datastore.allowNonSpatialTables>
</geotools:spatialengine>
|