I run linux and MIF datastore never has passed tests for me. So digging into the problem it I found this bug:
http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=5056395 which has to do with nio on jdk 1.4 and linux 2.6 kernsl. The following workaround seems to work: Replace src.transferTo( 0, src.size(), dst ); with dst.transferForm( src, 0, src.size() ): The two are semantically the same. Does anyone have a problem with this change? -Justin -- Justin Deoliveira The Open Planning Project [EMAIL PROTECTED] ------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ Geotools-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/geotools-devel
