On Aug 19, 2009, at 8:01, Christian Kofler <christian.kof...@dfki.de>
wrote:
Hi,
I had tried --classpath and now also -Djava.library.path but nothing
helped. Maybe I need to dig into this doclets.Taglet stuff a bit more.
Somewhere I read that JCC cannot handle annotations yet, is this maybe
related to my problem?
No, they're just ignored.
Andi..
Thanks for your feedback so far
Christian
Andi Vajda schrieb:
On Tue, 18 Aug 2009, Andi Vajda wrote:
On Tue, 18 Aug 2009, Christian Kofler wrote:
I am new to JCC - but I alread like it!
Well, I did not yet manage to wrap the Java library I want to,
but I appreciate the project in general...
I am stuck at the moment with the following problem:
The Java code seems to use com.sun.tools.doclets.Taglet and JCC
does not
like to find that class. I looked around and it resides in
tools.jar of
the sun java installation on my 64 bit linux
(/usr/lib/jvm/java-6-sun/lib). Yes, I added an --include for that
jar
but JCC still does not find it.
Is this a known issue? Does anybody have some suggestions?
Did you try --classpath ?
http://lucene.apache.org/pylucene/jcc/documentation/readme.html#classpath
Maybe the JVM is depending on some native code that can't be found
for this class. In that case you'd need to use -
Djava.library.path=<path> with vmargs. If that resolves the
problem, adding another command line flag to jcc for setting the
library path should be considered.
Andi..