Java Newbie Problem : plz help

I'm having problem with the java command :

[root@myServer datos]# export CLASSPATH=/usr/local/jdk/lib:/opt/tomcat/webapps/axis/WEB-INF/classes/org/enyuq/software/datos

[root@myServer datos]# /usr/local/jdk/bin/java InformacionServidorLicencias

Exception in thread "main" java.lang.NoClassDefFoundError: InformacionServidorLicencias (wrong name: org/enyuq/software/datos/InformacionServidorLicencias)

at java.lang.ClassLoader.defineClass1(Native Method)

at java.lang.ClassLoader.defineClass(ClassLoader.java:620)

at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124)

at java.net.URLClassLoader.defineClass(URLClassLoader.java:260)

at java.net.URLClassLoader.access$100(URLClassLoader.java:56)

at java.net.URLClassLoader$1.run(URLClassLoader.java:195)

at java.security.AccessController.doPrivileged(Native Method)

at java.net.URLClassLoader.findClass(URLClassLoader.java:188)

at java.lang.ClassLoader.loadClass(ClassLoader.java:306)

at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:268)

at java.lang.ClassLoader.loadClass(ClassLoader.java:251)

at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)

[root@myServer datos]# /usr/local/jdk/bin/java org.enyuq.software.datos.InformacionServidorLicencias

Exception in thread "main" java.lang.NoClassDefFoundError: org/enyuq/software/datos/InformacionServidorLicencias

[root@myServer datos]#

Can anybody help me with this error?

Thanks

[1547 byte] By [dornada] at [2007-10-3 2:20:09]
# 1
Have you compiled the InformacionServidorLicencias class first before trying to run it ?I wonder what language this is this time?
r035198xa at 2007-7-14 19:19:03 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...
# 2
I already compiled... InformacionServidorLicencias is a .class (compiled using Eclipse).
dornada at 2007-7-14 19:19:03 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...
# 3
some of the reasons why most people get this errorThe java file has not been compiledThe java class does not have a main method(Applet or servlet) and is being run with the wrong tool.typing error for the name of the class
r035198xa at 2007-7-14 19:19:03 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...