Re: [Geotools-devel] Using the geotools library in an applet

2008-09-09 Thread mcr
user in a while. The other tip is to be sure to use the epsg-wkt plugin when working in an applet. Cheers, Jody mcr wrote: Using the geotools library in an applet causes some warnings to occur in the java console 08.09.2008 10:20:33 org.geotools.factory.Hints scanSystemProperties

[Geotools-devel] Using the geotools library in an applet

2008-09-08 Thread mcr
Using the geotools library in an applet causes some warnings to occur in the java console 08.09.2008 10:20:33 org.geotools.factory.Hints scanSystemProperties WARNING: AccessControlException: access denied (java.util.PropertyPermission org.geotools.referencing.epsg-datasource read) [...]

Re: [Geotools-devel] Geotools 3 Planning - Transaction Handling

2008-06-27 Thread mcr
I took a look at the geotools transaction and state objects. The first thing is a minor issue, state and transactions should use the Composite Design Pattern, it should be possible for transactions to be part of another transaction. The big problem, and I think we should put our focus on the

[Geotools-devel] Geotools 3 Planning - Transaction Handling

2008-06-26 Thread mcr
I am using geotools since version 2.3.0 and wanted to use all the jdbc stuff in an ejb container. (Especially the db2 extension from Dave Adler) It is simply not possible to have a global Transaction and to register a geotools spatial jdbc extension to the transaction manager. If you have to

Re: [Geotools-devel] Geotools 3 Planning - Transaction Handling

2008-06-26 Thread mcr
What J2EE apps do you mean. A Web App or en EJB Container. J2EE Transactions are not jdbc transactions. A J2EE Transaction coordinates many jdbc and jms resources (all resources which are able to do a 2 Phase Commit). If you use a Container Managed Transaction the only thing you can do is

Re: [Geotools-devel] Build failed in Hudson: geotools-trunk #747

2008-06-22 Thread mcr
fixed build error in imagemosaic-jdbc -- View this message in context: http://www.nabble.com/Build-failed-in-Hudson%3A-geotools-trunk--745-tp18052878p18058120.html Sent from the geotools-devel mailing list archive at Nabble.com.

Re: [Geotools-devel] Online tests and jdbc drivers

2008-06-11 Thread mcr
I got a positive mail form David. It is possible to put the db2 driver jars in the maven repository. I did a download since I have a IBM developer login. Who is able to include these 3 jars in the repo, I would send a zip file including the jars. --- David

Re: [Geotools-devel] Online tests and jdbc drivers

2008-06-11 Thread mcr
Attached is the license from the download. At the end the statement is to include thew following in the geotools README or LICENSE File - CONTAINS Runtime Modules of IBM Data Server Driver for JDBC and SQLJ Version 4.0 (c) Copyright IBM Corporation 2007 All Rights Reserved

[Geotools-devel] Setting the classpath for a utility

2008-06-10 Thread mcr
At the moment I am working on an utility using the geotools library. My biggest problem is a reasonable way to set the classpath. On my linux box I do for fn in `find geotoolsjarfiledirectory -name *.jar`; do export CLASSPATH=$CLASSPATH:$fn ;done Other products mostly use some scripts (

Re: [Geotools-devel] Online tests and jdbc drivers

2008-06-09 Thread mcr
Ok, I sent to following mail to Dave - Hi Dave, I am working on this module http://docs.codehaus.org/display/GEOTOOLS/Image+Mosaicing+Pyramidal+JDBC+Plugin Since supporting DB2 is a major issue the following jar files are needed db2jcc.jar

Re: [Geotools-devel] Online tests and jdbc drivers

2008-06-09 Thread mcr
Hey, calm down. Since I am the developer of this module I want to get some things clear. 1) This module is intended to give geotools the same capabilities for image handling as ARCSDE does. 2) This module will support any jdbc database capable of handling BLOBs, additionally supporting ths

Re: [Geotools-devel] Online tests and jdbc drivers

2008-06-09 Thread mcr
Thanks for your comments. Here are mine 1) Your comments on ResX, ResY, MinX, MinY, MaxX,MaxY. These attributes are in the META Table which has one record for each pyramid level. MinX, MinY, MaxX,MaxY are information for the whole extent of a pyramid level. ResX, ResY are the resolution for the

[Geotools-devel] Online tests and jdbc drivers

2008-06-06 Thread mcr
Another question regarding this module: http://docs.codehaus.org/display/GEOTOOLS/Image+Mosaicing+Pyramidal+JDBC+Plugin The Online Tests need the the jdbc jars for oracle,db2,postgis and mysql. 1) For Oracle I found http://docs.codehaus.org/display/GEOT/4+Oracle+Optional+Dependency The

[Geotools-devel] Online tests und fixtures

2008-06-05 Thread mcr
I am working at a new plugin: http://docs.codehaus.org/display/GEOTOOLS/Image+Mosaicing+Pyramidal+JDBC+Plugin Since I need online tests for postgis,mysql,db2 and oracle I need the corresponding fixtures. 1) Are there predefined fixtures ? 2) Since my configuration files are xml files and

[Geotools-devel] Testing the geotools build with an ibm sdk

2008-05-28 Thread mcr
Is it possible to test your builds also on an ibm sdk. (All Websphere developers would be happy). In the trunk there are some some import statements which are sun sdk specific. The imports are not needed, deleting these lines and the errors disappear. A very nasty bug is GEOT_1688 which is

Re: [Geotools-devel] Testing the geotools build with an ibm sdk

2008-05-28 Thread mcr
I opened a jira as you suggested. Excluding the ibm sdk means excluding the Websphere App Server platform which is the most installed commerical j2ee product. Some times ago I discussed with Dave Adler from IBM about deploying geoserver in Websphere and i did some tests. It works but some

[Geotools-devel] Summer of code

2008-03-21 Thread mcr
I hope I am not to late but I want to make a proposal for summer of code 2008 I would like to contribute an image pyramid/mosaic plugin for JDBC, storing georeferenced tiles in a relational database. The architectue of the plugin is multithreaded to beneifit from multiprocessor/multcore

Re: [Geotools-devel] Which jdbc database for junit tests

2007-09-09 Thread mcr
What about using HSQL ? -- View this message in context: http://www.nabble.com/Which-jdbc-database-for-junit-tests-tf4383717.html#a12517027 Sent from the geotools-devel mailing list archive at Nabble.com. - This SF.net

[Geotools-devel] Which jdbc database for junit tests

2007-09-05 Thread mcr
I have to write some junit tests against a new coverage plugin which uses a jdbc db for storage. I need a db with a spatial extension, so which one should i use (I know db2, oracle, mysql, postgis). -- View this message in context: