Ok guys, i run into another problem, as i described above. I don't know
whether i should fill a bug report, or bring this topic to development list,
but i see the following things.

 i would like to send a position update using WFS/transaction api 1.0.

 I can trace down the error to JDBCDataStore.class

ReferencedEnvelope getBounds(SimpleFeatureType featureType, Query query,
Connection cx) ...

It tries to get the bounds from an optimized table:

dialect.getOptimizedBounds(databaseSchema, featureType, cx);

but since it does not exists, the code executes a simple sql query.

String sql = selectBoundsSQL(featureType, query);
LOGGER.log(Level.FINE, "Retriving bounding box: {0}", sql);
            
st = cx.createStatement();
rs = st.executeQuery(sql);

now, this executeQuery dies with the following exception:

org.postgresql.util.PSQLException: ERROR: current transaction is aborted,
commands ignored until end of transaction block

and so it exits from this method. 

Any idea why it happens, did i found a bug, or made something wrong? 

This error can be reproduced also with the latests Geoserver from Trunk.
-- 
View this message in context: 
http://old.nabble.com/WFS-Transaction-problem-tp30804990p30806825.html
Sent from the GeoServer - User mailing list archive at Nabble.com.


------------------------------------------------------------------------------
Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)!
Finally, a world-class log management solution at an even better price-free!
Download using promo code Free_Logger_4_Dev2Dev. Offer expires 
February 28th, so secure your free ArcSight Logger TODAY! 
http://p.sf.net/sfu/arcsight-sfd2d
_______________________________________________
Geoserver-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/geoserver-users

Reply via email to