There could be multiple problems here, but this is a big one: You set the SRID to 4326 (WGS 84 Lat/Lon), but the coordinates you provided for your feature and your DIMINFO array are not using Lat/Lon.
For 4326 to be the correct SRS all X ordinates would be within -180 to +180 and Y within -90 to +90. I don't know which SRS can support the coordinate ranges you provided so it's impossible to say from these numbers what the SRID value should be (I guess 3857 / 900913 could be a good bet, but these require Oracle 11.2.0.2 or later (or a hack) so check your Oracle version if you need do need this SRS). If you are not the original data provider you should contact them for the correct SRS otherwise your data will not display correctly. Once this is figured out your Java exception should be resolved. The beginning of your question is a little confusing, but I just wanted to check - is the Oracle column info you provided the same as what you are using when you try to display polygons? In "MDSYS.SDO_GEOMETRY(2002,NULL..." 2002 represents a 2-dimensional line feature (2001 is a point and 2003 a polygon). If this is how you defined your polygons I would expect to see rendering issues. If you correctly used 2003 for your polygons then I'm not sure where that issue is coming from. -- View this message in context: http://osgeo-org.1560.n6.nabble.com/geoserver-oracle-locator-tp4689187p4693282.html Sent from the GeoServer - User mailing list archive at Nabble.com. ------------------------------------------------------------------------------ For Developers, A Lot Can Happen In A Second. Boundary is the first to Know...and Tell You. Monitor Your Applications in Ultra-Fine Resolution. Try it FREE! http://p.sf.net/sfu/Boundary-d2dvs2 _______________________________________________ Geoserver-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/geoserver-users
