Turns out that the DataValidator class was not filtered properly when compiling some
other jar file which was previously put into the class path for the app server.
Anyway, problem resolved.
- Lon
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3850211#3850
Turns out that the DataValidator class was not filtered properly when compiling some
other jar file which was previously put into the class path for the app server.
Anyway, problem resolved.
- Lon
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3850212#3850
Ok here's a weird one. I've been working on a web project where I compile and archive
into a WAR file via JBuilder's tools for such things.
I have a class called DataValidator which contains a slew of static methods, including
one method called isEmpty which is overridden a bunch of times -- do
Ok here's a weird one. I've been working on a web project where I compile and archive
into a WAR file via JBuilder's tools for such things.
I have a class called DataValidator which contains a slew of static methods, including
one method called isEmpty which is overridden a bunch of times -- do
Keep in mind that JBoss is an app server not a web server, so it is not optimized for
serving static content. To server static content you will still need an application
context. Make yourself a directory called "something.ear" (yes, you can make
directories with an ".ear" extension).
Then ma