Thanks this was a very good hint, now i know that the library isn't found. (java.lang.UnsatisfiedLinkError: getJNIDate)
But now is stand befor an other problem: I tried to print out the java.library.path ( got by System.err.println(AxisProperties.getProperty("java.library.path")); )
but my libJNIDate.so is in this path.
Is there an other path used by axis?
which platform? Windows? Java uses the path set by ::LoadLibrary in the win32 API, which is PATH or Path on the environemnt. What is trouble is that followon loads to the first load do not always follow the library.path, so if you had one DLL in that path, the remainder need to be on PATH.
try deploying the shared libs to JAVA_HOME/bin
