1
vote
1answer
41 views

ClassNotFoundException but class is on classpath and in same jar

Question what is causing the ClassNotFoundException? Details I'm getting a ClassNotFoundException when trying to load a class that I believe to be on the classpath - the class is ...
2
votes
1answer
33 views

Just update ADT and Unable to resolve superclass errer appear

The error show after I update my ADT, the project is created before the update. In Login Activity, public class LoginActivity extends Activity { @Override protected void onCreate(Bundle ...
0
votes
1answer
26 views

ClassNotFoundException: com.sun.faces.config.ConfigureListener - Deployment of jars to Tomcat configured under Eclipse

I have a problem very similar to these: java.lang.ClassNotFoundException: com.sun.faces.config.ConfigureListener when using MyFaces with WASCE/Geronimo ClassNotFoundException: ...
-2
votes
3answers
55 views

Cannot figure out ClassNotFoundException error

Here is my code: Getters, Setters, and imports are excluded Part Class: public class Part{ private String name; private String id; private int quantity; private BigDecimal ...
0
votes
0answers
21 views

Have JBoss 6 provide an implementation for the result of a remote EJB method call

I am working with JBoss 6 and a JEE5 project under eclipse. Currently, there are several local business interfaces and only one remote business interface. The project is split in modules so that the ...
0
votes
1answer
36 views

[WebLogic][ClassNotFoundException] Deployment on cluster

I'm facing a problem I try to solve for two days. I try to deploy a project on a cluster weblogic from JDeveloper 11g. My cluster consists of three weblogic servers running on my local machine JDev ...
0
votes
1answer
103 views

ClassNotFoundException even though the class is properly defined (I think)

There is a similar question posted here but the answer seems to have never been found. I have tried a clean and am still getting a ClassNotFoundException. So what is happening, like in the linked ...
6
votes
3answers
87 views

Reason for ClassNotFoundException to be a checked exception

What is the reason behind ClassNotFoundException being a checked exception? I've been guessing and googling trying to understand why consider class not found as checked exception, because all my mind ...
0
votes
2answers
93 views

ClassNotFoundException: org.springframework.jdbc.datasource.DriverManagerDataSource

Seems like yet another missing library problem, but I just can't figure it out. I'm new to the Spring framework and I was trying to do some basic database operations. I'm using STS 3.2.0, Apache ...
-2
votes
0answers
58 views

ClassNotFoundException applet [closed]

I want to run my applet on web application, but i got following error that will fetch on one small window.I can't get any error on console. Java Plug-in 10.5.1.255 Using JRE version 1.7.0_05-b05 Java ...
-2
votes
0answers
22 views

Class not found exception for oracle driver [duplicate]

The below code compiles correctly but throws ClassNotFoundException for the oracle.jdbc.driver.OracleDriver import java.sql.*; class One { public static void main(String s[]) throws Exception ...
0
votes
1answer
33 views

ClassNotFoundException problems with manifest in created JAR

I'm trying to create a JAR file from my sources, but when I run it I get class not found exception - it can't find the main class, even though I defined it in the MANIFEST.MF file. Can you spot any ...
0
votes
3answers
79 views

Java Class.forName() from distant directory

I am currently loading Java classes using Class.forName() to load it. clazz = Class.forName("interfaces.MyClass"); But now I want to load classes from different directory, I have tried to set ...
0
votes
0answers
36 views

Exception on InternetExplorerDriver

I am calling a simple Java Class Test through a JSP Page. This class Test will instantiate a IE with Selenium IE driver and search with Google. package com.tcs; import java.io.File; import ...
0
votes
4answers
95 views

Why does this program get a ClassNotFound Exception? [closed]

I need this simple virtual bank program to deserialize a main account each time it is started. I've done this, but the GUI class that runs this method continues to give me a ...
0
votes
1answer
66 views

Class not found Exception from Weblogic 9.2

In my JSF project workspace, I have a Java project A and a Weblogic EJB project B that uses the Java project. On generating the EAR I can see that the jar for Project A and B are there in the EAR as ...
0
votes
0answers
48 views

Applet not able to load a class from JAR file

In my application, I am using apache PDFBox to print the PDF directly to the printer. Here I want to print the PDF on client machine So I am using applet which will invoke the java class and push the ...
0
votes
0answers
87 views

ClassNotFoundException running jnlp JavaFX

I did a fxml chart to embed into a web page. I used the javafx package tools to create my jar file and my jnlp file. When I try to run my jar file, or double clicking the file or to command line, the ...
0
votes
1answer
67 views

Deploy Applet on Apache server

I've written a Java applet game that I want to deploy on my Apache server. Code + resources are in a self signed .jar with accompanying HTML doc both in the root dir. Run on my local machine ...
0
votes
1answer
70 views

Memcached dependency jar not working with maven project and throwing java.lang.ClassNotFound: net.spy.memcached.MemcachedClient Exception

My Project is in linux environment. I want to add memcached jar dependency jar in my project. So I have added following lines in pom.xml as described here. <repositories> ...
1
vote
1answer
62 views

jar file not working when running it

I don't think that I did something wrong when I created the jar file, but here it is: jar cvfm JarTest.jar manifest.txt Main.class Main$ThisPanel.class Main$ThisPanel$1.class Main$ThisPanel$2.class ...
0
votes
0answers
76 views

Java Nested Inner Class results in ClassNotFoundException? [closed]

I am developing a Java Web Application inside a servlet with Netbeans 7.2, JDK 7 and Tomcat 7.0.39. As it is an assignment, I cannot use any framework so that I self-created a framework. I am creating ...
2
votes
0answers
112 views

Uncaught Exception java.lang.ExceptionInInitializerError in JMETER 2.9 with third party websocket plugin

I have created one new jar namely ApacheJMeter_WebSocket.jar. Then I placed it in /apache-jmeter-2.9/lib/ext/ folder. When i start the jmeter from bin i observe this error and not able to proceed ...
1
vote
2answers
82 views

WebSphere ClassNotFoundException with deployed dynamic web project

Problem I am currently experiencing a ClassNotFoundException with a deployed EAR (with OpenFaces web project) on WebSphere 7.0 application server. The EAR deploys with no problems, but when I go to ...
0
votes
3answers
73 views

ClassNotFoundException's causes [closed]

What are the reasons for this exception, if the build path is correct and all of the classes are accessible (same package!)? What should I do to try and find the culprit line? Thanks!
0
votes
1answer
86 views

JSONObject ClassNotFoundException

I am working in IntelliJ and using maven. I have a class that uses JSONObject, and I have imported it import org.json.JSONObject; and in a method I use it like so: JSONObject documentObj = ...
1
vote
3answers
488 views

HTTP Status 500 - Error instantiating servlet class pkg.coreServlet

I am creating simple servlet and deploying it in tomcat server but I am getting error HTTP Status 500 - Error instantiating servlet class pkg.coreServlet File Structure is tomat server : ...
1
vote
2answers
74 views

Json:java.lang.ClassNotFoundException

I'm trying to use JSON in Java Web. Transform List to JSONArray by invoking JSONArray.fromObject(), I'm sure my arguments are right, but thrown the exception as following: ...
1
vote
1answer
64 views

ClassNotFound exception in java command

I have simple Hello word program. Program will compile and run when not declare namespace in code but when I declared the class within namespace and compile the program it will complie successfully ...
0
votes
1answer
270 views

java.lang.ClassNotFoundException: org.postgresql.Driver but CLASSPATH set [closed]

I don't know why I get "java.lang.ClassNotFoundException: org.postgresql.Driver" since my CLASSPATH is set properly: user1@machine:~$ echo $CLASSPATH :/usr/share/java/postgresql.jar I installed the ...
0
votes
3answers
85 views

“NoDefClassNotFound” and “T cannot not be resolved to a type”, at runtime

i'm struggling a bit here. I have a java project in eclipse which contains a class (A) that uses 2 other classes (C1 & C2) each one of them is in a separated jar file (JAR1 & JAR2). And in the ...
0
votes
1answer
103 views

Javafx Tutorial 4 Will Not Compile

Here is the tutorial link I have been following the tutorials for javafx using e(fx)clipse and I cannot get this one to launch. My code is exactly the same as their's is and it works if I use ...
0
votes
2answers
93 views

ClassNotFoundException returned on every applet I try to run [closed]

I am trying to use a Java applet (any Java Applet), but I always get a messages saying "Error. Click for details". When I do so, the pop-up says: Application Error ClassNotFoundException ...
0
votes
1answer
60 views

applet not loading in tomcat

I'm trying to load an applet through a webapp in tomcat. I have my my class files and the applet works if I open the HMTL file with applet in a browser. But if I try to open the same HMTL file through ...
0
votes
1answer
105 views

Class Not Found Exception after cleaning project in Eclipse

I am currently working on a Java project in Eclipse that includes 44 java files and 1 SQL file. After working on it for several hours today, I noticed that nothing I was doing affected the program ...
1
vote
1answer
159 views

How to combine a simple Servlet with JDBC? Code results in ClassNotFoundException

I have written a simple JDBC and it works well (I run it in command prompt using java and javac). I also have written a simple HelloworldServlet and it works well (using Apache Tomcat 7.0). I access ...
-1
votes
2answers
405 views

oracle.jdbc.driver.OracleDriver ClassNotFoundException

This is my code for which I am getting error. My classes12.jar has been imported as an external jar. import java.io.IOException; import java.io.PrintWriter; import java.sql.Connection; import ...
0
votes
3answers
44 views

Obtaining all the methods in a class — error prone

I am new to reflection and to practice, I downloaded a random Java project from a website. I decided to find out which class has the main method so I wrote the following code: package reflection; ...
0
votes
1answer
100 views

Java Exception in thread main - ClassNotFoundException

I'm working with another system library in Eclipse. One time, the library got somehow removed and eclipse showed a red "!" next to the projects folder icon. I re-imported the library, but there is ...
5
votes
2answers
274 views

Applet hidden classnotfound exception

I'm developing an applet that behaves strangely: this is not the usual "I can't start my applet in the browser" problem, but something more subtle. The applet consists into a jtabbedpane with 8 ...
0
votes
1answer
66 views

Unable to run RMI client on different machine

I am trying to run RMI client on a remote machine in my LAN. I have implemented Server and Registry on a different machine in LAN. It works fine on same machine. But when I try to run Client program ...
0
votes
1answer
214 views

Embedding Java Applet in web page

I've built a java applet and am trying to embed it into an HTML file on my server. When I access the page, the applet tries to load but then crashes with a ClassNotFoundException on ...
0
votes
5answers
89 views

Error in Deploying the java(swing, oracle) project on client machin… java.lang.ClassNotFoundException:oracle.jdbc.driver.oracleDriver

I have use oracle 10g database and jdk 1.5 . I'm using eclipse. I have exported the project in .jar file (file is ok). When I run jar file on client machine then I get ...
2
votes
1answer
189 views

classNotFoundException GWTBridge

im working on a gwt webapp and while working on it im getting this exception while trying to get a XML file from a URL in a remove servlete. i dont know much about the underworkings of gwt, maybe ...
0
votes
1answer
188 views

Class Not found exception in servlet connecting mysql

I was trying to connect mysql database in my servlet. Then I'm getting an exception.But when I am testing the database connection from a usual Java class the connection is ok and I getting the data ...
0
votes
1answer
91 views

ClassNotFoundException when trying to run lite version that references library

I had my main project working and finished. I started researching how to make a lite/pro version and now everything is messing up. I made the main project an Android Library which is named ...
0
votes
2answers
84 views

Does dynamic class loading through Class.forName work with simple Class names

I tried dynamic loading of classes in a simple program and intrestingly when ever i try dynamic loading of classes with simple name it fails with classnotfoundexception. this happends only if the ...
0
votes
1answer
123 views

ClassNotFoundException with Junit when using Class.forName(..).getInstance while new() works fine

I am getting ClassNotFoundException when running tests with junit: I have a bunch of testcases that tests Class Main. The Main class has a method that takes in a string representing a datatype and ...
5
votes
1answer
342 views

ClassNotFoundException: org.dom4j.DocumentException

I am trying to debug (F11 on Eclipse) a java GUI application I inherited but while the application runs fine (minus a tiny fix I need to apply) outside of the Eclipse IDE, it produces the following ...
0
votes
1answer
76 views

NoClassDefFoundError from JavaCC generated code

As part of my study, I am using the JavaCC Eclipse plug-in to create a lexical analysis and parser a parser for a programming language. The parser is generated succesfully and when I run the generated ...

1 2 3 4 5 7