I am trying to export a SQL based layer as a shapefile.
The query in the geoserver log works when run directly on the database.
But I get a 1kb invalid zip file returned and the error below instead of a valid layer.
Exporting other, non-sql layers works somewhat: the projection is dropped somewhere along the line. There error log for that is after the sql layer error log.
Any ideas on where to look to fix things?
Thanks
–Christopher DeMars
-------------- sql layer geoserver log ---------------
2017-06-14 22:11:22,315 INFO [org.geoserver.wfs] -
Request: getFeature
service = wfs
version = 2.0.0
baseUrl = http://wms.npschemmap.ucdavis.edu:80/geoserver/
outputFormat = SHAPE-ZIP
resolve = none
resolveDepth = *
resolveTimeout = 300
resultType = results
viewParams[0] = {AIJOIN=, pur.dpr_prod_chem as pc , AIPRODWHERE= and pc.prodno = pur.prodno, ENDDATE=20141231, STARTDATE=20140101, SUMVAR=pc.prodchem_pct}
abstractQueryExpressionGroup[0] = wfs:abstractQueryExpression=net.opengis.wfs20.impl.QueryTypeImpl@anonymised.com (handle: null) (abstractProjectionClause: null, abstractSelectionClause: null, abstractSortingClause: null, aliases: null, typeNames: [{http://wms.npschemmap.ucdavis.edu/npschemmap}pur2]) (featureVersion: null, srsName: null, filter: null, propertyNames: null, sortBy: null)
abstractQueryExpression[0]:
typeNames[0] = {http://wms.npschemmap.ucdavis.edu/npschemmap}pur2
2017-06-14 22:11:22,318 DEBUG [org.geotools.jdbc] - CREATE CONNECTION
2017-06-14 22:11:22,318 DEBUG [org.geotools.jdbc] - SELECT “gid”,“comtrs”,“lbs”,“color”,encode(ST_AsEWKB(“geom”),‘base64’) as “geom” FROM (with pur as (select pur.comtrs,
sum(pur.lbs_prd_used * pc.prodchem_pct / 100) as lbs
from pur.npsdrift_sum as pur
, pur.dpr_prod_chem as pc
where pur.comtrs is not null
and pur.applic_dt between date ‘20140101’ and date ‘20141231’
and pc.prodno = pur.prodno
group by pur.comtrs),
bp as (select * from pur.colorize(array(select lbs from pur), 3, ‘equal’::text, ‘Reds’::text))
select mtrs.gid as gid,
pur.comtrs as comtrs,
pur.lbs as lbs,
bp.color as color,
mtrs.geom as geom
from pur left outer join boundaries.mtrs on pur.comtrs = mtrs.co_mtrs,
bp
where pur.lbs >= bp.minbp and pur.lbs < bp.maxbp
) as “vtable” LIMIT 1000000
2017-06-14 22:11:27,355 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.shp by ShpFiles for deleting all files
2017-06-14 22:11:27,355 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.shp by ShpFiles for deleting all files
2017-06-14 22:11:27,356 TRACE [org.geotools.data.shapefile] - SHP Channel in ShapefileWriter has been opened. Number open: 1
2017-06-14 22:11:27,356 TRACE [org.geotools.data.shapefile] - SHX Channel in ShapefileWriter has been opened. Number open: 1
2017-06-14 22:11:27,356 TRACE [org.geotools.data.shapefile] - SHP Channel in ShapefileWriter has been closed. Number open: 0
2017-06-14 22:11:27,356 TRACE [org.geotools.data.shapefile] - SHX Channel in ShapefileWriter has been closed. Number open: 0
2017-06-14 22:11:27,356 DEBUG [org.geotools.data.shapefile] - Field Length for lbs set to 33 Preserving length, but should be set to Max of 18 for dbase III specification.
2017-06-14 22:11:27,357 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.shp by StorageFile: pur22762648219287659921.shp
2017-06-14 22:11:27,357 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.shp by StorageFile: pur22762648219287659921.shp
2017-06-14 22:11:27,357 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.shp by StorageFile: pur22762648219287659921.shp
2017-06-14 22:11:27,357 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.shx by StorageFile: pur25231581403916594369.shx
2017-06-14 22:11:27,357 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.shx by StorageFile: pur25231581403916594369.shx
2017-06-14 22:11:27,357 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.dbf by StorageFile: pur26365373604755938259.dbf
2017-06-14 22:11:27,357 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.dbf by StorageFile: pur26365373604755938259.dbf
2017-06-14 22:11:27,357 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.prj by StorageFile: pur28944081521208820907.prj
2017-06-14 22:11:27,357 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.prj by StorageFile: pur28944081521208820907.prj
2017-06-14 22:11:27,357 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.shp by StorageFile: pur22762648219287659921.shp
2017-06-14 22:11:27,358 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.shp by StorageFile: pur23801899358294564562.prj
2017-06-14 22:11:27,358 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.prj by StorageFile: pur23801899358294564562.prj
2017-06-14 22:11:27,360 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.prj by StorageFile: pur23801899358294564562.prj
2017-06-14 22:11:27,360 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.shp by StorageFile: pur23801899358294564562.prj
2017-06-14 22:11:27,360 TRACE [org.geotools.factory] - ENTRY (FeatureTypeFactory, FEATURE_TYPE_FACTORY)
2017-06-14 22:11:27,360 TRACE [org.geotools.factory] - RETURN (FeatureTypeFactory, FEATURE_TYPE_FACTORY): found implementation FeatureTypeFactoryImpl.
2017-06-14 22:11:27,360 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.shp by org.geotools.data.shapefile.shp.ShapefileReader
2017-06-14 22:11:27,360 TRACE [org.geotools.data.shapefile] - Shapefile Reader has been opened. Number open: 1
2017-06-14 22:11:27,360 TRACE [org.geotools.data.shapefile] - IndexFile has been opened. Number open: 1
2017-06-14 22:11:27,360 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.shx by org.geotools.data.shapefile.shp.IndexFile
2017-06-14 22:11:27,361 TRACE [org.geotools.data.shapefile] - Reading from file…
2017-06-14 22:11:27,361 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.dbf by org.geotools.data.shapefile.dbf.DbaseFileReader
2017-06-14 22:11:27,361 TRACE [org.geotools.data.shapefile] - Dbase File Reader has been opened. Number open: 1
2017-06-14 22:11:27,361 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.prj by org.geotools.data.shapefile.ShapefileSetManager
2017-06-14 22:11:27,361 TRACE [org.geotools.factory] - ENTRY (CRSFactory, CRS_FACTORY)
2017-06-14 22:11:27,361 TRACE [org.geotools.factory] - RETURN (CRSFactory, CRS_FACTORY): found implementation ReferencingObjectFactory.
2017-06-14 22:11:27,362 DEBUG [org.geotools.parameter] - Axis length mismatch.
2017-06-14 22:11:27,362 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.prj by org.geotools.data.shapefile.ShapefileSetManager
2017-06-14 22:11:27,363 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.dbf by org.geotools.data.shapefile.dbf.DbaseFileReader
2017-06-14 22:11:27,363 TRACE [org.geotools.data.shapefile] - Dbase File Reader has been closed. Number open: 0
2017-06-14 22:11:27,363 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.shp by org.geotools.data.shapefile.shp.ShapefileReader
2017-06-14 22:11:27,363 TRACE [org.geotools.data.shapefile] - Shapefile Reader has been closed. Number open: 0
2017-06-14 22:11:27,363 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.shx by org.geotools.data.shapefile.shp.IndexFile
2017-06-14 22:11:27,363 TRACE [org.geotools.data.shapefile] - IndexFile has been closed. Number open: 0
2017-06-14 22:11:27,363 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.shp by org.geotools.data.shapefile.shp.ShapefileReader
2017-06-14 22:11:27,363 TRACE [org.geotools.data.shapefile] - Shapefile Reader has been opened. Number open: 1
2017-06-14 22:11:27,363 TRACE [org.geotools.data.shapefile] - IndexFile has been opened. Number open: 1
2017-06-14 22:11:27,363 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.shx by org.geotools.data.shapefile.shp.IndexFile
2017-06-14 22:11:27,363 TRACE [org.geotools.data.shapefile] - Reading from file…
2017-06-14 22:11:27,363 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.dbf by org.geotools.data.shapefile.dbf.DbaseFileReader
2017-06-14 22:11:27,363 TRACE [org.geotools.data.shapefile] - Dbase File Reader has been opened. Number open: 1
2017-06-14 22:11:27,363 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.fix by ShapefileDataStore-pur2
2017-06-14 22:11:27,363 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.shp by ShapefileDataStore-pur2
2017-06-14 22:11:27,363 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.shp by ShapefileDataStore-pur2
2017-06-14 22:11:27,363 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.fix by ShapefileDataStore-pur2
2017-06-14 22:11:27,363 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.fix by ShapefileDataStore-pur2
2017-06-14 22:11:27,363 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.shp by ShapefileDataStore-pur2
2017-06-14 22:11:27,363 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.shp by ShapefileDataStore-pur2
2017-06-14 22:11:27,363 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.fix by ShapefileDataStore-pur2
2017-06-14 22:11:27,364 DEBUG [org.geotools.data.shapefile] - Generating fids for file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.shp
2017-06-14 22:11:27,364 TRACE [org.geotools.data.shapefile] - IndexFile has been opened. Number open: 1
2017-06-14 22:11:27,364 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.shx by org.geotools.data.shapefile.shp.IndexFile
2017-06-14 22:11:27,364 TRACE [org.geotools.data.shapefile] - Reading from file…
2017-06-14 22:11:27,364 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.fix by org.geotools.data.shapefile.fid.IndexedFidReader
2017-06-14 22:11:27,364 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.fix by org.geotools.data.shapefile.fid.IndexedFidReader
2017-06-14 22:11:27,364 TRACE [org.geotools.data.shapefile] - IndexedFidReader has been opened. Number open: 1
2017-06-14 22:11:27,364 TRACE [org.geotools.data.shapefile] - IndexedFidReader has been opened. Number open: 1
2017-06-14 22:11:27,364 TRACE [org.geotools.data.shapefile] - IndexedFidReader has been closed. Number open: 0
2017-06-14 22:11:27,364 TRACE [org.geotools.data.shapefile] - IndexedFidReader has been closed. Number open: 0
2017-06-14 22:11:27,364 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.shp by StorageFile: pur26588474459750501053.fix
2017-06-14 22:11:27,364 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.fix by StorageFile: pur26588474459750501053.fix
2017-06-14 22:11:27,364 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.fix by StorageFile: pur26588474459750501053.fix
2017-06-14 22:11:27,364 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.shp by StorageFile: pur26588474459750501053.fix
2017-06-14 22:11:27,364 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.shx by org.geotools.data.shapefile.shp.IndexFile
2017-06-14 22:11:27,364 TRACE [org.geotools.data.shapefile] - IndexFile has been closed. Number open: 0
2017-06-14 22:11:27,365 TRACE [org.geotools.data.shapefile] - SHP Channel in ShapefileWriter has been opened. Number open: 1
2017-06-14 22:11:27,365 TRACE [org.geotools.data.shapefile] - SHX Channel in ShapefileWriter has been opened. Number open: 1
2017-06-14 22:11:27,365 DEBUG [org.geotools.data.shapefile] - Field Length for lbs set to 33 Preserving length, but should be set to Max of 18 for dbase III specification.
2017-06-14 22:11:27,365 TRACE [org.geotools.data.shapefile] - Dbase File Writer has been opened. Number open: 1
2017-06-14 22:11:27,365 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.shx by org.geotools.data.shapefile.shp.IndexFile
2017-06-14 22:11:27,365 TRACE [org.geotools.data.shapefile] - IndexFile has been closed. Number open: 0
2017-06-14 22:11:27,365 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.fix by org.geotools.data.shapefile.fid.IndexedFidReader
2017-06-14 22:11:27,365 TRACE [org.geotools.data.shapefile] - IndexedFidReader has been opened. Number open: 1
2017-06-14 22:11:27,365 TRACE [org.geotools.data.shapefile] - IndexedFidReader has been opened. Number open: 1
2017-06-14 22:11:27,440 DEBUG [org.geotools.jdbc] - CLOSE CONNECTION
2017-06-14 22:11:27,440 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.shp by org.geotools.data.shapefile.shp.ShapefileReader
2017-06-14 22:11:27,440 TRACE [org.geotools.data.shapefile] - Shapefile Reader has been closed. Number open: 0
2017-06-14 22:11:27,440 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.dbf by org.geotools.data.shapefile.dbf.DbaseFileReader
2017-06-14 22:11:27,440 TRACE [org.geotools.data.shapefile] - Dbase File Reader has been closed. Number open: 0
2017-06-14 22:11:27,440 TRACE [org.geotools.data.shapefile] - SHP Channel in ShapefileWriter has been closed. Number open: 0
2017-06-14 22:11:27,440 TRACE [org.geotools.data.shapefile] - SHX Channel in ShapefileWriter has been closed. Number open: 0
2017-06-14 22:11:27,440 TRACE [org.geotools.data.shapefile] - Dbase File Writer has been closed. Number open: 0
2017-06-14 22:11:27,441 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.fix by org.geotools.data.shapefile.fid.IndexedFidReader
2017-06-14 22:11:27,441 TRACE [org.geotools.data.shapefile] - IndexedFidReader has been closed. Number open: 0
2017-06-14 22:11:27,441 TRACE [org.geotools.data.shapefile] - IndexedFidReader has been closed. Number open: 0
2017-06-14 22:11:27,441 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.shp by StorageFile: pur22115712721801781365.dbf
2017-06-14 22:11:27,441 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.dbf by StorageFile: pur22115712721801781365.dbf
2017-06-14 22:11:27,441 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.dbf by StorageFile: pur22115712721801781365.dbf
2017-06-14 22:11:27,441 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.shx by StorageFile: pur23011856842762837576.shx
2017-06-14 22:11:27,441 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.shx by StorageFile: pur23011856842762837576.shx
2017-06-14 22:11:27,441 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.fix by StorageFile: pur23641914547418280043.fix
2017-06-14 22:11:27,441 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.fix by StorageFile: pur23641914547418280043.fix
2017-06-14 22:11:27,441 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.shp by StorageFile: pur28070701295444963378.shp
2017-06-14 22:11:27,441 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.shp by StorageFile: pur28070701295444963378.shp
2017-06-14 22:11:27,441 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.shp by StorageFile: pur22115712721801781365.dbf
2017-06-14 22:11:27,441 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.fix by ShapefileDataStore-pur2
2017-06-14 22:11:27,441 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.shp by ShapefileDataStore-pur2
2017-06-14 22:11:27,441 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.shp by ShapefileDataStore-pur2
2017-06-14 22:11:27,441 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.fix by ShapefileDataStore-pur2
2017-06-14 22:11:27,441 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.qix by org.geotools.data.shapefile.IndexedShapefileFeatureWriter
2017-06-14 22:11:27,441 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.6403855242742837/pur2.qix by org.geotools.data.shapefile.IndexedShapefileFeatureWriter
2017-06-14 22:11:27,442 ERROR [org.geoserver.ows] -
java.lang.NullPointerException
at org.geotools.data.crs.ReprojectFeatureIterator.next(ReprojectFeatureIterator.java:131)
at org.geotools.data.crs.ReprojectFeatureIterator.next(ReprojectFeatureIterator.java:71)
at org.geotools.data.shapefile.RemappingFeatureCollection$RemappingIterator.next(RemappingFeatureCollection.java:218)
at org.geotools.data.shapefile.RemappingFeatureCollection$RemappingIterator.next(RemappingFeatureCollection.java:199)
at org.geotools.data.shapefile.ShapefileDumper.dump(ShapefileDumper.java:222)
at org.geoserver.wfs.response.ShapeZipOutputFormat.write(ShapeZipOutputFormat.java:225)
at org.geoserver.wfs.response.ShapeZipOutputFormat.write(ShapeZipOutputFormat.java:181)
at org.geoserver.wfs.WFSGetFeatureOutputFormat.write(WFSGetFeatureOutputFormat.java:196)
at org.geoserver.ows.Dispatcher.response(Dispatcher.java:991)
at org.geoserver.ows.Dispatcher.handleRequestInternal(Dispatcher.java:272)
at org.springframework.web.servlet.mvc.AbstractController.handleRequest(AbstractController.java:147)
at org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter.handle(SimpleControllerHandlerAdapter.java:50)
at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:959)
at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:893)
at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:968)
at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:859)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:620)
at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:844)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:303)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.geoserver.filters.ThreadLocalsCleanupFilter.doFilter(ThreadLocalsCleanupFilter.java:28)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.geoserver.filters.SpringDelegatingFilter$Chain.doFilter(SpringDelegatingFilter.java:75)
at org.geoserver.wms.animate.AnimatorFilter.doFilter(AnimatorFilter.java:71)
at org.geoserver.filters.SpringDelegatingFilter$Chain.doFilter(SpringDelegatingFilter.java:71)
at org.geoserver.filters.SpringDelegatingFilter.doFilter(SpringDelegatingFilter.java:46)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.geoserver.platform.AdvancedDispatchFilter.doFilter(AdvancedDispatchFilter.java:50)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:316)
at org.geoserver.security.filter.GeoServerCompositeFilter$NestedFilterChain.doFilter(GeoServerCompositeFilter.java:69)
at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:126)
at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:90)
at org.geoserver.security.filter.GeoServerCompositeFilter$NestedFilterChain.doFilter(GeoServerCompositeFilter.java:73)
at org.geoserver.security.filter.GeoServerCompositeFilter.doFilter(GeoServerCompositeFilter.java:92)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:330)
at org.geoserver.security.filter.GeoServerCompositeFilter$NestedFilterChain.doFilter(GeoServerCompositeFilter.java:69)
at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:114)
at org.geoserver.security.filter.GeoServerCompositeFilter$NestedFilterChain.doFilter(GeoServerCompositeFilter.java:73)
at org.geoserver.security.filter.GeoServerCompositeFilter.doFilter(GeoServerCompositeFilter.java:92)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:330)
at org.geoserver.security.filter.GeoServerAnonymousAuthenticationFilter.doFilter(GeoServerAnonymousAuthenticationFilter.java:54)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:330)
at org.geoserver.security.filter.GeoServerCompositeFilter$NestedFilterChain.doFilter(GeoServerCompositeFilter.java:69)
at org.springframework.security.web.authentication.www.BasicAuthenticationFilter.doFilterInternal(BasicAuthenticationFilter.java:158)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
at org.geoserver.security.filter.GeoServerCompositeFilter$NestedFilterChain.doFilter(GeoServerCompositeFilter.java:73)
at org.geoserver.security.filter.GeoServerCompositeFilter.doFilter(GeoServerCompositeFilter.java:92)
at org.geoserver.security.filter.GeoServerBasicAuthenticationFilter.doFilter(GeoServerBasicAuthenticationFilter.java:84)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:330)
at org.geoserver.security.filter.GeoServerCompositeFilter$NestedFilterChain.doFilter(GeoServerCompositeFilter.java:69)
at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:91)
at org.geoserver.security.filter.GeoServerSecurityContextPersistenceFilter$1.doFilter(GeoServerSecurityContextPersistenceFilter.java:53)
at org.geoserver.security.filter.GeoServerCompositeFilter$NestedFilterChain.doFilter(GeoServerCompositeFilter.java:73)
at org.geoserver.security.filter.GeoServerCompositeFilter.doFilter(GeoServerCompositeFilter.java:92)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:330)
at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:213)
at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:176)
at org.geoserver.security.GeoServerSecurityFilterChainProxy.doFilter(GeoServerSecurityFilterChainProxy.java:152)
at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.geoserver.filters.LoggingFilter.doFilter(LoggingFilter.java:87)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.geoserver.filters.GZIPFilter.doFilter(GZIPFilter.java:42)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.geoserver.filters.SessionDebugFilter.doFilter(SessionDebugFilter.java:48)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.geoserver.filters.FlushSafeFilter.doFilter(FlushSafeFilter.java:44)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.apache.catalina.filters.CorsFilter.handleNonCORS(CorsFilter.java:439)
at org.apache.catalina.filters.CorsFilter.doFilter(CorsFilter.java:178)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:121)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:220)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:122)
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:501)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:170)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:98)
at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:950)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:116)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:408)
at org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1041)
at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:607)
at org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:313)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:745)
---------------------------- normal layer geoserver error log -------------------------
2017-06-14 22:34:44,448 INFO [org.geoserver.wfs] -
Request: getFeature
service = wfs
version = 2.0.0
baseUrl = http://wms.npschemmap.ucdavis.edu:80/geoserver/
outputFormat = SHAPE-ZIP
resolve = none
resolveDepth = *
resolveTimeout = 300
resultType = results
abstractQueryExpressionGroup[0] = wfs:abstractQueryExpression=net.opengis.wfs20.impl.QueryTypeImpl@anonymised.com (handle: null) (abstractProjectionClause: null, abstractSelectionClause: null, abstractSortingClause: null, aliases: null, typeNames: [{http://wms.npschemmap.ucdavis.edu/npschemmap}counties]) (featureVersion: null, srsName: null, filter: null, propertyNames: null, sortBy: null)
abstractQueryExpression[0]:
typeNames[0] = {http://wms.npschemmap.ucdavis.edu/npschemmap}counties
2017-06-14 22:34:44,453 DEBUG [org.geotools.jdbc] - CREATE CONNECTION
2017-06-14 22:34:44,454 DEBUG [org.geotools.jdbc] - SELECT “gid”,“statefp”,“countyfp”,“countyns”,“affgeoid”,“geoid”,“name”,“lsad”,“aland”,“awater”,encode(ST_AsEWKB(“geom”),‘base64’) as “geom”,“dname” FROM “boundaries”.“counties” LIMIT 1000000
2017-06-14 22:34:44,487 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.shp by ShpFiles for deleting all files
2017-06-14 22:34:44,488 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.shp by ShpFiles for deleting all files
2017-06-14 22:34:44,488 TRACE [org.geotools.data.shapefile] - SHP Channel in ShapefileWriter has been opened. Number open: 1
2017-06-14 22:34:44,488 TRACE [org.geotools.data.shapefile] - SHX Channel in ShapefileWriter has been opened. Number open: 1
2017-06-14 22:34:44,488 TRACE [org.geotools.data.shapefile] - SHP Channel in ShapefileWriter has been closed. Number open: 0
2017-06-14 22:34:44,488 TRACE [org.geotools.data.shapefile] - SHX Channel in ShapefileWriter has been closed. Number open: 0
2017-06-14 22:34:44,488 DEBUG [org.geotools.data.shapefile] - Field Length for aland set to 33 Preserving length, but should be set to Max of 18 for dbase III specification.
2017-06-14 22:34:44,488 DEBUG [org.geotools.data.shapefile] - Field Length for awater set to 33 Preserving length, but should be set to Max of 18 for dbase III specification.
2017-06-14 22:34:44,489 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.shp by StorageFile: counties2165989316466374314.dbf
2017-06-14 22:34:44,489 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.dbf by StorageFile: counties2165989316466374314.dbf
2017-06-14 22:34:44,489 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.dbf by StorageFile: counties2165989316466374314.dbf
2017-06-14 22:34:44,489 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.prj by StorageFile: counties371509887460116721.prj
2017-06-14 22:34:44,489 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.prj by StorageFile: counties371509887460116721.prj
2017-06-14 22:34:44,489 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.shp by StorageFile: counties5366130786212560114.shp
2017-06-14 22:34:44,489 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.shp by StorageFile: counties5366130786212560114.shp
2017-06-14 22:34:44,489 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.shx by StorageFile: counties8721270096708565532.shx
2017-06-14 22:34:44,489 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.shx by StorageFile: counties8721270096708565532.shx
2017-06-14 22:34:44,490 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.shp by StorageFile: counties2165989316466374314.dbf
2017-06-14 22:34:44,490 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.shp by StorageFile: counties7179131783638879172.prj
2017-06-14 22:34:44,490 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.prj by StorageFile: counties7179131783638879172.prj
2017-06-14 22:34:44,491 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.prj by StorageFile: counties7179131783638879172.prj
2017-06-14 22:34:44,491 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.shp by StorageFile: counties7179131783638879172.prj
2017-06-14 22:34:44,491 TRACE [org.geotools.factory] - ENTRY (FeatureTypeFactory, FEATURE_TYPE_FACTORY)
2017-06-14 22:34:44,491 TRACE [org.geotools.factory] - RETURN (FeatureTypeFactory, FEATURE_TYPE_FACTORY): found implementation FeatureTypeFactoryImpl.
2017-06-14 22:34:44,491 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.shp by org.geotools.data.shapefile.shp.ShapefileReader
2017-06-14 22:34:44,491 TRACE [org.geotools.data.shapefile] - Shapefile Reader has been opened. Number open: 1
2017-06-14 22:34:44,491 TRACE [org.geotools.data.shapefile] - IndexFile has been opened. Number open: 1
2017-06-14 22:34:44,492 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.shx by org.geotools.data.shapefile.shp.IndexFile
2017-06-14 22:34:44,492 TRACE [org.geotools.data.shapefile] - Reading from file…
2017-06-14 22:34:44,492 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.dbf by org.geotools.data.shapefile.dbf.DbaseFileReader
2017-06-14 22:34:44,492 TRACE [org.geotools.data.shapefile] - Dbase File Reader has been opened. Number open: 1
2017-06-14 22:34:44,492 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.prj by org.geotools.data.shapefile.ShapefileSetManager
2017-06-14 22:34:44,492 TRACE [org.geotools.factory] - ENTRY (CRSFactory, CRS_FACTORY)
2017-06-14 22:34:44,492 TRACE [org.geotools.factory] - RETURN (CRSFactory, CRS_FACTORY): found implementation ReferencingObjectFactory.
2017-06-14 22:34:44,493 DEBUG [org.geotools.parameter] - Axis length mismatch.
2017-06-14 22:34:44,493 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.prj by org.geotools.data.shapefile.ShapefileSetManager
2017-06-14 22:34:44,494 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.dbf by org.geotools.data.shapefile.dbf.DbaseFileReader
2017-06-14 22:34:44,494 TRACE [org.geotools.data.shapefile] - Dbase File Reader has been closed. Number open: 0
2017-06-14 22:34:44,494 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.shp by org.geotools.data.shapefile.shp.ShapefileReader
2017-06-14 22:34:44,494 TRACE [org.geotools.data.shapefile] - Shapefile Reader has been closed. Number open: 0
2017-06-14 22:34:44,494 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.shx by org.geotools.data.shapefile.shp.IndexFile
2017-06-14 22:34:44,494 TRACE [org.geotools.data.shapefile] - IndexFile has been closed. Number open: 0
2017-06-14 22:34:44,494 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.shp by org.geotools.data.shapefile.shp.ShapefileReader
2017-06-14 22:34:44,494 TRACE [org.geotools.data.shapefile] - Shapefile Reader has been opened. Number open: 1
2017-06-14 22:34:44,494 TRACE [org.geotools.data.shapefile] - IndexFile has been opened. Number open: 1
2017-06-14 22:34:44,494 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.shx by org.geotools.data.shapefile.shp.IndexFile
2017-06-14 22:34:44,494 TRACE [org.geotools.data.shapefile] - Reading from file…
2017-06-14 22:34:44,495 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.dbf by org.geotools.data.shapefile.dbf.DbaseFileReader
2017-06-14 22:34:44,495 TRACE [org.geotools.data.shapefile] - Dbase File Reader has been opened. Number open: 1
2017-06-14 22:34:44,495 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.fix by ShapefileDataStore-counties
2017-06-14 22:34:44,495 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.shp by ShapefileDataStore-counties
2017-06-14 22:34:44,495 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.shp by ShapefileDataStore-counties
2017-06-14 22:34:44,495 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.fix by ShapefileDataStore-counties
2017-06-14 22:34:44,495 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.fix by ShapefileDataStore-counties
2017-06-14 22:34:44,495 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.shp by ShapefileDataStore-counties
2017-06-14 22:34:44,495 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.shp by ShapefileDataStore-counties
2017-06-14 22:34:44,495 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.fix by ShapefileDataStore-counties
2017-06-14 22:34:44,495 DEBUG [org.geotools.data.shapefile] - Generating fids for file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.shp
2017-06-14 22:34:44,495 TRACE [org.geotools.data.shapefile] - IndexFile has been opened. Number open: 1
2017-06-14 22:34:44,495 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.shx by org.geotools.data.shapefile.shp.IndexFile
2017-06-14 22:34:44,495 TRACE [org.geotools.data.shapefile] - Reading from file…
2017-06-14 22:34:44,495 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.fix by org.geotools.data.shapefile.fid.IndexedFidReader
2017-06-14 22:34:44,495 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.fix by org.geotools.data.shapefile.fid.IndexedFidReader
2017-06-14 22:34:44,496 TRACE [org.geotools.data.shapefile] - IndexedFidReader has been opened. Number open: 1
2017-06-14 22:34:44,496 TRACE [org.geotools.data.shapefile] - IndexedFidReader has been opened. Number open: 1
2017-06-14 22:34:44,496 TRACE [org.geotools.data.shapefile] - IndexedFidReader has been closed. Number open: 0
2017-06-14 22:34:44,496 TRACE [org.geotools.data.shapefile] - IndexedFidReader has been closed. Number open: 0
2017-06-14 22:34:44,496 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.shp by StorageFile: counties161980310112937756.fix
2017-06-14 22:34:44,496 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.fix by StorageFile: counties161980310112937756.fix
2017-06-14 22:34:44,496 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.fix by StorageFile: counties161980310112937756.fix
2017-06-14 22:34:44,496 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.shp by StorageFile: counties161980310112937756.fix
2017-06-14 22:34:44,496 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.shx by org.geotools.data.shapefile.shp.IndexFile
2017-06-14 22:34:44,496 TRACE [org.geotools.data.shapefile] - IndexFile has been closed. Number open: 0
2017-06-14 22:34:44,496 TRACE [org.geotools.data.shapefile] - SHP Channel in ShapefileWriter has been opened. Number open: 1
2017-06-14 22:34:44,496 TRACE [org.geotools.data.shapefile] - SHX Channel in ShapefileWriter has been opened. Number open: 1
2017-06-14 22:34:44,496 DEBUG [org.geotools.data.shapefile] - Field Length for aland set to 33 Preserving length, but should be set to Max of 18 for dbase III specification.
2017-06-14 22:34:44,496 DEBUG [org.geotools.data.shapefile] - Field Length for awater set to 33 Preserving length, but should be set to Max of 18 for dbase III specification.
2017-06-14 22:34:44,497 TRACE [org.geotools.data.shapefile] - Dbase File Writer has been opened. Number open: 1
2017-06-14 22:34:44,497 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.shx by org.geotools.data.shapefile.shp.IndexFile
2017-06-14 22:34:44,497 TRACE [org.geotools.data.shapefile] - IndexFile has been closed. Number open: 0
2017-06-14 22:34:44,497 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.fix by org.geotools.data.shapefile.fid.IndexedFidReader
2017-06-14 22:34:44,497 TRACE [org.geotools.data.shapefile] - IndexedFidReader has been opened. Number open: 1
2017-06-14 22:34:44,497 TRACE [org.geotools.data.shapefile] - IndexedFidReader has been opened. Number open: 1
2017-06-14 22:34:44,511 DEBUG [org.geotools.jdbc] - CLOSE CONNECTION
2017-06-14 22:34:44,511 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.shp by org.geotools.data.shapefile.shp.ShapefileReader
2017-06-14 22:34:44,511 TRACE [org.geotools.data.shapefile] - Shapefile Reader has been closed. Number open: 0
2017-06-14 22:34:44,512 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.dbf by org.geotools.data.shapefile.dbf.DbaseFileReader
2017-06-14 22:34:44,512 TRACE [org.geotools.data.shapefile] - Dbase File Reader has been closed. Number open: 0
2017-06-14 22:34:44,512 TRACE [org.geotools.data.shapefile] - SHP Channel in ShapefileWriter has been closed. Number open: 0
2017-06-14 22:34:44,512 TRACE [org.geotools.data.shapefile] - SHX Channel in ShapefileWriter has been closed. Number open: 0
2017-06-14 22:34:44,512 TRACE [org.geotools.data.shapefile] - Dbase File Writer has been closed. Number open: 0
2017-06-14 22:34:44,512 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.fix by org.geotools.data.shapefile.fid.IndexedFidReader
2017-06-14 22:34:44,512 TRACE [org.geotools.data.shapefile] - IndexedFidReader has been closed. Number open: 0
2017-06-14 22:34:44,512 TRACE [org.geotools.data.shapefile] - IndexedFidReader has been closed. Number open: 0
2017-06-14 22:34:44,512 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.shp by StorageFile: counties3647510954722762913.shx
2017-06-14 22:34:44,512 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.shx by StorageFile: counties3647510954722762913.shx
2017-06-14 22:34:44,512 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.shx by StorageFile: counties3647510954722762913.shx
2017-06-14 22:34:44,512 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.shp by StorageFile: counties5769656351636368771.shp
2017-06-14 22:34:44,512 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.shp by StorageFile: counties5769656351636368771.shp
2017-06-14 22:34:44,512 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.dbf by StorageFile: counties8169510448897556794.dbf
2017-06-14 22:34:44,513 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.dbf by StorageFile: counties8169510448897556794.dbf
2017-06-14 22:34:44,513 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.fix by StorageFile: counties8827953152737635488.fix
2017-06-14 22:34:44,513 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.fix by StorageFile: counties8827953152737635488.fix
2017-06-14 22:34:44,513 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.shp by StorageFile: counties3647510954722762913.shx
2017-06-14 22:34:44,513 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.fix by ShapefileDataStore-counties
2017-06-14 22:34:44,513 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.shp by ShapefileDataStore-counties
2017-06-14 22:34:44,513 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.shp by ShapefileDataStore-counties
2017-06-14 22:34:44,513 DEBUG [org.geotools.data.shapefile] - Read lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.fix by ShapefileDataStore-counties
2017-06-14 22:34:44,513 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.qix by org.geotools.data.shapefile.IndexedShapefileFeatureWriter
2017-06-14 22:34:44,513 DEBUG [org.geotools.data.shapefile] - Write lock: file:/tmp/tomcat7-tomcat7-tmp/shpziptemp0.952089881728977/counties.qix by org.geotools.data.shapefile.IndexedShapefileFeatureWriter
2017-06-14 22:35:45,993 INFO [org.geoserver.wms] -
Request: getServiceInfo
2017-06-14 22:35:45,993 INFO [org.geoserver.wms] -
Request: getCapabilities
UpdateSequence = null
Namespace = null
BaseUrl = http://wms.npschemmap.ucdavis.edu:80/geoserver/
Get = false
RawKvp = {REQUEST=GetCapabilities, VERSION=1.3.0, SERVICE=WMS}
RequestCharset = null
Version = 1.3.0
Request = GetCapabilities
2017-06-14 22:35:46,014 TRACE [org.geotools.factory] - ENTRY (CRSAuthorityFactory, CRS_AUTHORITY_FACTORY)
2017-06-14 22:35:46,014 TRACE [org.geotools.factory] - CHECK (CRSAuthorityFactory, CRS_AUTHORITY_FACTORY): user provided a Class.
2017-06-14 22:35:46,014 TRACE [org.geotools.factory] - CHECK (CRSAuthorityFactory, CRS_AUTHORITY_FACTORY): consider hint[last] AbstractEpsgMediator.
2017-06-14 22:35:46,014 TRACE [org.geotools.factory] - THROW (CRSAuthorityFactory, CRS_AUTHORITY_FACTORY): could not find implementation.
2017-06-14 22:35:46,025 TRACE [org.geotools.factory] - ENTRY (CRSAuthorityFactory, CRS_AUTHORITY_FACTORY)
2017-06-14 22:35:46,025 TRACE [org.geotools.factory] - CHECK (CRSAuthorityFactory, CRS_AUTHORITY_FACTORY): user provided a Class.
2017-06-14 22:35:46,025 TRACE [org.geotools.factory] - CHECK (CRSAuthorityFactory, CRS_AUTHORITY_FACTORY): consider hint[last] AbstractEpsgMediator.
2017-06-14 22:35:46,025 TRACE [org.geotools.factory] - THROW (CRSAuthorityFactory, CRS_AUTHORITY_FACTORY): could not find implementation.
2017-06-14 22:35:46,047 WARN [org.geoserver.catalog.impl] - Failed to derive native bbox from declared one
java.lang.NullPointerException: Unable to transform referenced envelope, crs has not yet been provided.
at org.geotools.geometry.jts.ReferencedEnvelope.transform(ReferencedEnvelope.java:669)
at org.geotools.geometry.jts.ReferencedEnvelope.transform(ReferencedEnvelope.java:635)
at org.geoserver.catalog.impl.ResourceInfoImpl.boundingBox(ResourceInfoImpl.java:224)
at sun.reflect.GeneratedMethodAccessor206.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.geoserver.catalog.impl.ModificationProxy.invoke(ModificationProxy.java:147)
at com.sun.proxy.$Proxy15.boundingBox(Unknown Source)
at org.geoserver.wms.capabilities.Capabilities_1_3_0_Transformer$Capabilities_1_3_0_Translator.handleLayer(Capabilities_1_3_0_Transformer.java:953)
at org.geoserver.wms.capabilities.Capabilities_1_3_0_Transformer$Capabilities_1_3_0_Translator.doHandleLayer(Capabilities_1_3_0_Transformer.java:881)
at org.geoserver.wms.capabilities.Capabilities_1_3_0_Transformer$Capabilities_1_3_0_Translator.handleLayerTree(Capabilities_1_3_0_Transformer.java:841)
at org.geoserver.wms.capabilities.Capabilities_1_3_0_Transformer$Capabilities_1_3_0_Translator.handleLayers(Capabilities_1_3_0_Transformer.java:721)
at org.geoserver.wms.capabilities.Capabilities_1_3_0_Transformer$Capabilities_1_3_0_Translator.handleCapability(Capabilities_1_3_0_Transformer.java:467)
at org.geoserver.wms.capabilities.Capabilities_1_3_0_Transformer$Capabilities_1_3_0_Translator.encode(Capabilities_1_3_0_Transformer.java:275)
at org.geotools.xml.transform.TransformerBase$XMLReaderSupport.parse(TransformerBase.java:1026)
at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.transformIdentity(TransformerImpl.java:668)
at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.transform(TransformerImpl.java:737)
at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.transform(TransformerImpl.java:351)
at org.geotools.xml.transform.TransformerBase$Task.run(TransformerBase.java:300)
at org.geotools.xml.transform.TransformerBase.transform(TransformerBase.java:133)
at org.geotools.xml.transform.TransformerBase.transform(TransformerBase.java:112)
at org.geoserver.wms.capabilities.Capabilities_1_3_0_Response.write(Capabilities_1_3_0_Response.java:49)
at org.geoserver.ows.Dispatcher.response(Dispatcher.java:991)
at org.geoserver.ows.Dispatcher.handleRequestInternal(Dispatcher.java:272)
at org.springframework.web.servlet.mvc.AbstractController.handleRequest(AbstractController.java:147)
at org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter.handle(SimpleControllerHandlerAdapter.java:50)
at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:959)
at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:893)
at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:968)
at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:859)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:620)
at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:844)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:303)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.geoserver.filters.ThreadLocalsCleanupFilter.doFilter(ThreadLocalsCleanupFilter.java:28)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.geoserver.filters.SpringDelegatingFilter$Chain.doFilter(SpringDelegatingFilter.java:75)
at org.geoserver.wms.animate.AnimatorFilter.doFilter(AnimatorFilter.java:71)
at org.geoserver.filters.SpringDelegatingFilter$Chain.doFilter(SpringDelegatingFilter.java:71)
at org.geoserver.filters.SpringDelegatingFilter.doFilter(SpringDelegatingFilter.java:46)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.geoserver.platform.AdvancedDispatchFilter.doFilter(AdvancedDispatchFilter.java:50)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:316)
at org.geoserver.security.filter.GeoServerCompositeFilter$NestedFilterChain.doFilter(GeoServerCompositeFilter.java:69)
at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:126)
at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:90)
at org.geoserver.security.filter.GeoServerCompositeFilter$NestedFilterChain.doFilter(GeoServerCompositeFilter.java:73)
at org.geoserver.security.filter.GeoServerCompositeFilter.doFilter(GeoServerCompositeFilter.java:92)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:330)
at org.geoserver.security.filter.GeoServerCompositeFilter$NestedFilterChain.doFilter(GeoServerCompositeFilter.java:69)
at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:114)
at org.geoserver.security.filter.GeoServerCompositeFilter$NestedFilterChain.doFilter(GeoServerCompositeFilter.java:73)
at org.geoserver.security.filter.GeoServerCompositeFilter.doFilter(GeoServerCompositeFilter.java:92)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:330)
at org.geoserver.security.filter.GeoServerAnonymousAuthenticationFilter.doFilter(GeoServerAnonymousAuthenticationFilter.java:54)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:330)
at org.geoserver.security.filter.GeoServerCompositeFilter$NestedFilterChain.doFilter(GeoServerCompositeFilter.java:69)
at org.springframework.security.web.authentication.www.BasicAuthenticationFilter.doFilterInternal(BasicAuthenticationFilter.java:158)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
at org.geoserver.security.filter.GeoServerCompositeFilter$NestedFilterChain.doFilter(GeoServerCompositeFilter.java:73)
at org.geoserver.security.filter.GeoServerCompositeFilter.doFilter(GeoServerCompositeFilter.java:92)
at org.geoserver.security.filter.GeoServerBasicAuthenticationFilter.doFilter(GeoServerBasicAuthenticationFilter.java:84)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:330)
at org.geoserver.security.filter.GeoServerCompositeFilter$NestedFilterChain.doFilter(GeoServerCompositeFilter.java:69)
at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:91)
at org.geoserver.security.filter.GeoServerSecurityContextPersistenceFilter$1.doFilter(GeoServerSecurityContextPersistenceFilter.java:53)
at org.geoserver.security.filter.GeoServerCompositeFilter$NestedFilterChain.doFilter(GeoServerCompositeFilter.java:73)
at org.geoserver.security.filter.GeoServerCompositeFilter.doFilter(GeoServerCompositeFilter.java:92)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:330)
at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:213)
at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:176)
at org.geoserver.security.GeoServerSecurityFilterChainProxy.doFilter(GeoServerSecurityFilterChainProxy.java:152)
at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.geoserver.filters.LoggingFilter.doFilter(LoggingFilter.java:87)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.geoserver.filters.GZIPFilter.doFilter(GZIPFilter.java:48)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.geoserver.filters.SessionDebugFilter.doFilter(SessionDebugFilter.java:48)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.geoserver.filters.FlushSafeFilter.doFilter(FlushSafeFilter.java:44)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.apache.catalina.filters.CorsFilter.handleNonCORS(CorsFilter.java:439)
at org.apache.catalina.filters.CorsFilter.doFilter(CorsFilter.java:178)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:121)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:220)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:122)
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:501)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:170)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:98)
at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:950)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:116)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:408)
at org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1041)
at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:607)
at org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:313)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:745)