#this file specifies ArcSDE connection properties #for ArcSDE DataSource test cases # #Modify it to adapt to your ArcSDE environment #Be sure tables listed below exists in your ArcSDE server #instalation. Default test data is included in #testData/import/test_layers.zip file. # #Use ArcCatalog or the following SDE command lines to #import these shapefiles into your ArcSDE database: #(cd to testData/import directory or wherever you had # uncompressed the shapefiles) # # -- to import the point test data, in a single line (do not include the "\"'s): # shp2sde -o create -f TEST_POINT.shp -l TEST_POINT,SHAPE -a all \ # -S "ArcSDE DataSource test point data" -i -s \ # -D -u -p # # -- to import the line test data, in a single line (do not include the "\"'s): # shp2sde -o create -f TEST_LINE.shp -l TEST_LINE,SHAPE -a all \ # -S "ArcSDE DataSource test line data" -i -s \ # -D -u -p # # -- to import the polygon test data, in a single line (do not include the "\"'s): # shp2sde -o create -f TEST_POLY.shp -l TEST_POLY,SHAPE -a all \ # -S "ArcSDE DataSource test line data" -i -s \ # -D -u -p # # In all cases: # : by default 'esri_sde', is the esri sde's service name as # declared in services file (/system32/Drivers/etc/Services in WinXX) # : ArcSDE server name # : SDE database name # : SDE database user name # : SDE database user password # dbtype=arcsde server=nakina.gis.iastate.edu port=5151 instance=sde user=geoservwrite password=pwd pool.minConnections=1 pool.maxConnections=2 pool.timeOut=1000 #specifies wich SDE table name that can be used #to test the creation of feature types. #CAUTION: be sure you do not specify a table name which already #exists and that you don't have to loose! temp_table=SDE.GEOSERVWRITE.DELETE_ME #specifies wich SDE table contains test data #of with a Point geometry type point_table=SDE.GEOSERVWRITE.TEST_POINT #specifies wich SDE table contains test data of with a #LineString or MultiLineString geometry type line_table=SDE.GEOSERVWRITE.TEST_LINE #specifies wich SDE table contains test data of with a #Polygon or MultiPolygon geometry type polygon_table=SDE.GEOSERVWRITE.TEST_POLY getfeatures.points.expectedCount=27 getfeatures.lines.expectedCount=56 getfeatures.polygons.expectedCount=24 filters.sql.points.filter=filter.sql.points.xml filters.sql.points.expectedCount=2 filters.sql.lines.filter=filter.sql.lines.xml filters.sql.lines.expectedCount=2 filters.sql.polygons.filter=filter.sql.polygons.xml filters.sql.polygons.expectedCount=6 filters.bbox.points.filter=filter.bbox.points.xml filters.bbox.points.expectedCount=2 filters.bbox.lines.filter=filter.bbox.lines.xml filters.bbox.lines.expectedCount=2 filters.bbox.polygons.filter=filter.bbox.polygons.xml filters.bbox.polygons.expectedCount=2 filters.intersects.points.filter= filters.intersects.points.expectedCount= filters.intersects.lines.filter= filters.intersects.lines.expectedCount= filters.intersects.polygons.filter= filters.intersects.polygons.expectedCount= #shp2sde -o create -f TEST_POLY.shp -l TEST_POLY,SHAPE -a all -S "" -i esri_sde -s localhost -D sde -u sde -p carto