Hi -
The link below that you give is an error due to an entirely different
situation that does not apply in your case. There is no "plugin" in
your case to find.
The class path value looks wrong in several aspects. It should only
have Java Jar files and directories with Java .class files. It should
not have the colon (":") character as its first character.
If your files (including the .class files) are in this directory:
c:\Program Files\IBM\uima\docs\examples\bin\com\backstopmedia\uima\tutorial
and Java is trying to load the class
com.backstopmedia.uima.tutorial.ProductAnnotator
then your class path should be:
c:\Program Files\IBM\uima\docs\examples\bin
Please try setting this as the (only) value of your CLASSPATH.
Check it by typing into a command window:
echo %CLASSPATH% you should get the response:
c:\Program Files\IBM\uima\docs\examples\bin
and nothing else.
-Marshall
chandra sekhar wrote:
Respected Sir , I set CLASSPATH variable as you suggested ,
now CLASSPATH look like this :
CLASSPATH
:%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;C:\\Program
Files\\Java\\jdk1.5.0\\bin\;C:\\Program
Files\\IBM\\uima\\docs\\examples\\bin\\com\\backstopmedia\\uima\\tutorial;UIMA_HOME//lib//uima_core.jar
eventhough i am getting same error as previously specified.
Sir , Mr.Lally in
http://www-128.ibm.com/developerworks/forums/thread.jspa?threadID=138977&tstart=0
suggested : " in the manifest "MANIFEST.MF" file of the plug-in that
contains the class "de.group.uima.temp.PersonNameAnnotator", insert the
following line:
code <http://www-128.ibm.com/developerworks/forums/>Eclipse-RegisterBuddy:
com.ibm.uima.runtime[/code] "
for my situation it is : com.ibm.uima.ProductNumberAnnotator.
*I dont know how to find a plugin ,which contains
com.ibm.uima.ProductNumberAnnotator class.*
please help me.