Tagged Questions
The classnotfound tag has no wiki summary.
3
votes
1answer
266 views
Custom MBean in Tomcat - cannot find javaURLContextFactory when creating InitialContext
I've written a custom MBean that deploys in Tomcat 6. One of its tasks is to query a database value. I'm doing this by loading up the database resource using JNDI - the resource is defined in Tomcat's ...
3
votes
3answers
4k views
ClassNotFoundException Android
So I ran into a problem today while working on my Android program. I have a class that turns that an XML string into a Java object (third party) and it works fine in as a regular java project but on ...
2
votes
3answers
66 views
Third party class not loading in 'using'. Where are additional classes installed?
I have a third party library installed, but the accompanying namespace isn't found.
The type or namespace name 'Maverick' could not be found (are you missing a using directive or an assembly ...
2
votes
2answers
3k views
eclipse plug-in dependencies and classnotfoundexception
I am new to Eclipse RCP plugin development and I have the following problem: I am trying to instantiate a MessageConsole object in my plugin. I create the appropriate dependency for ...
1
vote
2answers
370 views
ClassNotFound exception when loading applet in Chrome
I'm having a hard time getting a Java applet to run in Chrome. The class loader can't find the class, even though the it works fine in Firefox, Opera and Safari.
Here's my test applet class (I even ...
1
vote
2answers
2k views
HttpClient NoClassDefFoundError
I am trying to run a sample application from HttpClient 4.0.1. It is the file ClientMultiThreadedExecution.java from the examples section. I put in these files in the classpath: ...
1
vote
1answer
510 views
Custom ArrayList serialization
I was trying to serialize an ArrayList which contains custom objects.
I'm serializing it in a Servlet (server side), and deserialize at the client side. (using ObjectOutputStream and ...
1
vote
2answers
1k views
Dynamically class creating by using Java Reflection, java.lang.ClassNotFoundException
I want to use reflection in java, I want to do that third class will read the name of the class as String from console. Upon reading the name of the class, it will automatically and dynamically (!) ...
1
vote
2answers
987 views
Local Tomcat Environment Not Starting
I'm attempting to get a local Tomcat environment running and am consistently encountering the following error:
Can't load log handler "2localhost.org.apache.juli.FileHandler"
...
1
vote
3answers
1k views
Running Java program from Python
I've looked here, here, here, and here.
While informative they just didn't quite have enough for me to discover the root of my problem. My code isn't contained within a JAR file and the customer has ...
1
vote
3answers
974 views
JavaMail ClassNotFound
I've run in to a strange error with the javamail 1.4.2 api and jdk/jre 1.6.0u16. I've placed the unzipped javamail-1.4.2 folder (along with the MySQL Connector-J 5.1.7 also needed) in both the jdk and ...
1
vote
2answers
3k views
Adding WARs to Java's classpath
I have two wars, foo.war and bar.war. foo uses classes from bar.
I'm trying to start foo, and add to Java's classpath bar.war, but java throws a ClassNotFoundException.
If I rename bar.war to bar.jar ...
0
votes
3answers
120 views
Android: unable to start service intent: not found?
I know, I am not the first onbe with this problem, but I tried so many solutions, I have found and no one works... maybe you could find the error
The error (also came so without .class and with ...
0
votes
0answers
44 views
NoClassDefFoundError when using wsrunclient
I wrote a client application that consumes a SOAP web service. I developed the code using Eclips and it works fine there. Now, I'm trying to run the same application from the terminal by using ...
0
votes
2answers
381 views
Zend framework Fatal error: Class 'Application_Model_DbTable_Albums' not found in
I am trying to learn Zend framework from "Getting Started with Zend Framework" By Rob Allen. I have used the same example that has been given, but getting the error -
Fatal error: Class ...
0
votes
0answers
522 views
Error installing to PostClassLoader: org.jboss.deployers.spi.DeploymentException: Cannot process metadata
Thanks in advance for any help you can provide:
I'm developing an EJB 3 application on JBoss 5.0.1 GA. The application I'm deploying has worked for a couple of years with no problems. However ...
0
votes
2answers
861 views
Servlet giving error java.lang.NoClassDefFoundError
I am using the following code in a servlet of my app
java.awt.Image awtImg = java.awt.Toolkit.getDefaultToolkit().createImage(str1);
When I run the application and call the servlet I get the ...
0
votes
3answers
267 views
mysql java connection error
I am running my JAR file in linux (centos). All jar files work fine.
Now i am trying to connect to mysql server, but it gave me following
error.
Exception in thread "main" ...
0
votes
2answers
308 views
JSR-75 specific code on non JSR-75 devices?
What I'm trying to do
I'm coding a J2ME midlet, and I want to use JSR-75 to write files. I also want to be able to run my app on device that don't have support for JSR-75.
How I'm doing it
I found ...
0
votes
2answers
427 views
RMI ClassNotFoundException
I have an RMI program which runs fine on my computer, but when I run it on my schools computer I get a ClassNotFoundException for my class that is extending Remote. I've looked at some similar ...
0
votes
1answer
454 views
Quartz Scheduler - NoClassDefFoundError
I am using Quratz 1.6.3 API in a Maven project. This is the error message I get when I run it:
java.lang.NoClassDefFoundError: org/apache/commons/collections/SetUtils
at ...
0
votes
1answer
410 views
Linux org.GNOME.Accessibility.JavaBridge$AccessQueue throws java.lang.ClassNotFoundException after the class has been previously loaded
I am running java with an agent.
When my application does not use GUI (swing) it runs fine under both JREs mentioned below.
When it does use GUI (swing), when using JRE: HotSpot (TM) 64 Bits Server ...
0
votes
3answers
1k views
JAVA Newbie Alert: Trying to run Java class and getting ClassNotFoundException
Java newbie. I am trying to run a java main class from cmd line and getting back ClassNotFoundException:
java -cp class ...
0
votes
2answers
262 views
Class not found exception?
Ok, I am very confused. Yesterday it worked just fine. Today suddenly I start getting an error. The main frame opens just fine and the first few buttons work. Just the last three suddenly do not ...
0
votes
1answer
902 views
java.lang.ClassNotFoundException: DataSource in Glassfish
I'm getting a weird problem in GlassFish 2.1 - I'm a beginner with this container and I'm having trouble pinning this down.
I have a new install of GlassFish 2.1 with a JDBC connection pool defined ...