...
Connecting to ArcSDE
Code Block |
---|
|
<spatial:spatialengine id="arcsde">
<dbtype>arcsde</dbtype>
<server>hostname</server>
<port>5151</port>
<user>username</user>
<password>password</password>
<pool>
<minConnections>2</minConnections>
<maxConnections>5</maxConnections>
<timeOut>10000</timeOut>
<testOnBorrow>true</testOnBorrow>
<testOnReturn>false</testOnReturn>
<testWhileIdle>false</testWhileIdle>
<timeBetweenEvictionRunsMillis>5000</timeBetweenEvictionRunsMillis>
<whenExhaustedAction>block</whenExhaustedAction>
</pool>
</spatial:spatialengine>
|
Connecting to Oracle Spatial
Code Block |
---|
|
<spatial:spatialengine id="oracle">
<dbtype>oracle</dbtype>
<host>hostname</host>
<port>1521</port>
<user>username</user>
<passwd>password</passwd>
<schema>SCHEMA</schema>
<instance>instance</instance>
</spatial:spatialengine>
|
Connecting to Microsoft SQL Server
Code Block |
---|
|
<spatial:spatialengine id="sqlserver">
<dbtype>sqlserver</dbtype>
<host>hostname</host>
<port>1433</port>
<user>username</user>
<passwd>password</passwd>
<database>password</database>
<schema>SCHEMA</schema>
<geometrymetadatatable>v_geometry_columns</geometrymetadatatable>
</spatial:spatialengine>
|
Connecting to Microsoft SQL Server using JNDI
Code Block |
---|
|
<spatial:spatialengine id="sqlserver">
<dbtype>sqlserverjndi</dbtype>
<jndi><![CDATA[java:comp/env/jdbc/spatialDS]]></jndi> <!-- Prior to 2.5.28 this must be <jndiReferenceName>...</jndiReferenceName> -->
</spatial:spatialengine>
|
Connecting to a Shapefile directory
Code Block |
---|
|
<spatial:spatialengine id="shapefile">
<dbtype>shapefiledir</dbtype>
<url><![CDATA[file:C:/data_dir/data]]></url>
<memorymapped>true</memorymapped>
</spatial:spatialengine>
|
Connecting to WFS
Code Block |
---|
|
<spatial:spatialengine id="wfs">
<dbtype>wfs</dbtype>
<url><![CDATA[http://hostname/wfs]]></url>
<protocol>get</protocol>
<username>username</username>
<password>password</password>
<timeout>5000</timeout>
<buffersize>100000</buffersize>
<gzip>true</gzip>
<lenient>true</lenient>
</spatial:spatialengine>
|
Connecting to ArcGIS
Code Block |
---|
|
<spatial:spatialengine id="arcgis">
<dbtype>arcgis</dbtype>
<url>https://services.arcgis.com/3vStCH7NDoBOZ5zn/arcgis/rest/services/Potable_Water_Pipe/FeatureServer</url>
<crs>EPSG:28356</crs>
</spatial:spatialengine>
|
Connecting to a GeoPackage
Code Block |
---|
|
<spatial:spatialEngine id="opendata">
<dbtype>geopkg</dbtype>
<database>./platform/workspace/db/opendata.gpkg</database>
</spatial:spatialEngine>
|
Connecting to a GeoJSON file
Code Block |
---|
|
<spatial:spatialEngine id="geojson_file">
<dbtype>geojson</dbtype>
<datasource>./platform/workspace/db/stadiums.geojson</datasource>
</spatial:spatialEngine>
|