<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body text="#000000" bgcolor="#FFFFFF">
    Le 11/12/14 17:34, Emmanuel Blondel a écrit :<br>
    <blockquote cite="mid:5489572E.4070107@gmail.com" type="cite">
      <meta content="text/html; charset=ISO-8859-1"
        http-equiv="Content-Type">
      I'v tested the WFS client with SNAPSHOT. No more warning about
      timeout, but see stacktrace and errors at: <a
        moz-do-not-send="true" href="http://pastebin.com/crLnitsE">http://pastebin.com/crLnitsE</a><br>
      Any idea?<br>
    </blockquote>
    <br>
    The warnings are about <tt>java.util.prefs</tt> not having
    permission to write in the system-wide preference variables. This
    warnings occur even if Geotk only wants to check if a preference
    exist - it does not want to write anything, but apparently the JDK
    insists for creating empty nodes anyway. This problem exists since
    JDK 1.4 and seems to have never been solved. In Apache SIS, we will
    avoid the use of system preferences. In the main time, they can be
    safely ignored (we should probably remove them from Geotk too, as I
    don't think that many peoples use them).<br>
    <br>
    The exception is because there is no Derby driver in the classpath.
    Geotk does not put the Derby driver in transitive dependencies,
    because some projects prefer to use PostgreSQL, HSQL or Oracle
    instead. Adding the following in you pom.xml should solve the
    problem (again, for Apache SIS we will try to find a better
    solution):<br>
    <br>
    <pre>      <dependency>
        <groupId>org.apache.derby</groupId>
        <artifactId>derby</artifactId>
        <version>10.10.1.1</version>
      </dependency>
</pre>
    <br>
    Martin<br>
    <br>
  </body>
</html>