0
votes
0answers
18 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
3answers
77 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
95 views

JBoss AS 7 Module classloader WEB-INF lib

I'm trying to configure my web application to jboss 7.1.1.Final. It turns out that using modules, then there is a moment that a class that is in a class module needs to access a folder that is inside ...
5
votes
2answers
263 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 ...
2
votes
1answer
97 views

ClassNotFoundException using ClassLoader in a FileWalker

I have a program where the User selects a Directory to begin a FileWalk from; the FileWalker visits each file in the directory structure loading .class files with a CLassLoader so I can use Reflection ...
1
vote
0answers
169 views

Java reflection invoking main method of jar sometimes throws ClassNotFoundException?

I'm invoking another jar file using reflection like this mainMethod.invoke(null, new Object[] { passargs }); (basic stuff). It works for most jar files, but for one I keep getting a ...
1
vote
0answers
49 views

Utility to know what classes are loaded by classloader in Tomcat

I have a web application that has some jars under plugins directory Eg: tomcat/webapps/sampleApp/WEB-INF/plugins My Tomcat server is throwing ClassNotFoundException for those classes. Please ...
0
votes
0answers
93 views

WebAppClassLoader.loadClass cannot find class at runtime

I have built a simple application which exposes the class methods over a REST interface , for this I'm using the javax.tools package. This application runs fine when I run it from eclipse(run on ...
0
votes
1answer
140 views

How to prevent jar-in-jar-loader loading specific class?

Imagine I have a following project structure of folders A B C and many external jars. Now I am trying to build two different executable-jars like this A+B, A+C. At first, I do Eclipse -> Export ...
1
vote
2answers
299 views

EAR lib's class throwing a ClassNotFoundException for a WAR member

I packaged an EAR (myear.ear) file and deployed it in JBoss EAP 6 (that is, JBoss 7 :)). It looks like this: lib/ my-common.jar (Custom library containing common classes used by both the WAR and ...
1
vote
0answers
567 views

java.lang.NoClassDefFoundError, but I sucessfully created instance of this class

I'm trying to write launcher for one "game" that using LWJGL and I needed to load its classes from other JARs. So I did the following: // ... // The files that i must load. String[] files = new ...
2
votes
1answer
122 views

Error when load JAR file classes at run time

I am trying to add JAR file to class path and load all classes from JAR file at run time. here is the code I wrote for this task (This class extends URLClassLoader) public void loadJar(final String ...
0
votes
1answer
205 views

loading class at runtime in java ClassNotFoundException

I am having problems calling classes at run time in java Im basically making a plugin framework it starts off by opening plugin/Plugins.cfg and parses the test into a map.. EX text in cfg file 1 = ...
0
votes
1answer
160 views

ClassNotFoundExceptoin is being thrown due to Classloader loading the wrong library

I am getting a ClassNotFoundException on the following class: org.apache.commons.pool.impl.CursorableLinkedList$Cursor. I have reviewed the web app, which is packaged into an EAR and noticed ...
0
votes
2answers
171 views

Why isn't my class being loaded through the external class loader?

I want to run the constructor of the Main.class in the package Test2, located in the folder C:\classes\ This is the code I'm using. It throws a class not found exception when it tries to turn it into ...
0
votes
1answer
295 views

Issue loading a class file from another package

I have an issue with loading classes via Class.forName(String className) when I amtrying to get a class from another package. It keeps throwing a ClassNotFoundException, even though I am fully ...
0
votes
1answer
385 views

Class Not Found exception: STS

Everything was working properly until i added a new java package to my project, when i run my application the stack trace shows java.lang.ClassNotFoundException, i had to reference another class ...
0
votes
1answer
601 views

Jboss jsp classloading in work directory

I have created a jsp "helloworld.jsp" and I would like to load the compiled class in jboss work directory. When I grep in my jboss server, I have : Binary file ...
1
vote
1answer
196 views

Equinox: classes correctly exported and imported by bundles, still getting ClassNotFoundException

I came upon the following obstacle whilst developing in OSGi. One set of bundles, responsible for persistence, uses the com.mysql.jdbc.Driver class, offered by another (Springsource EBR provisioned) ...
5
votes
2answers
921 views

Android app fails to load on some phones in PathClassLoader

I have an app, let us call it 'com.company.foo', with a main Activity 'FooBar'. In my AndroidManifest.xml, I have <application android:label="@string/app_name" ...
0
votes
2answers
1k views

How do you repair the ClassNotFoundException after you have changed the name of a class while building it

I changed the name of one of my java classes and now I am getting a classNotFoundException after cleaning and rebuilding in eclipse. I think this is a trivial and that I have forgotten the once known ...
2
votes
3answers
989 views

ClassNotFoundException Thrown when Dynamically Loading Class Files

We have a servlet project, which contains (among many other classes) an interface that we expose to users. Users can compile their own classes (in the form of .class files) that implement the ...