The moose likes EJB and other Java EE Technologies and the fly likes Log4j problems in JBoss 3.0 Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » EJB and other Java EE Technologies
Reply Bookmark "Log4j problems in JBoss 3.0" Watch "Log4j problems in JBoss 3.0" New topic
Author

Log4j problems in JBoss 3.0

David Rocks
Ranch Hand

Joined: Apr 24, 2001
Posts: 160
Hi,
I have just deployed my app on the new Jboss 3.0. the problem is that log4j is not working. I am getting this error and i have no idea why.
java.lang.NoSuchMethodError
at org.apache.log4j.WriterAppender.subAppend(WriterAppender.java:298)
at org.apache.log4j.WriterAppender.append(WriterAppender.java:157)
at org.apache.log4j.AppenderSkeleton.doAppend(AppenderSkeleton.java:221)
The code that causes this is
public class RemoteFactory {
private Context context ;
private boolean debug = true ;
private static final Category log = Category.getInstance(RemoteFactory.class);
/**
*
*
*
*/
public UserManager getUserManager() throws Exception {

log.info("RemoteFactory::getUserManager()" );


etc etc.
it is the log line that throws the error as it goes into the log4j classes. It is the default application of JBoss so i would assume that all of the jars would be contained.
Does anybody know how to get rid of this. Another problem is that System.out.println does no longer work for some reason ion version 3.0.
Any help would be greatly appreciated.
David
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Log4j problems in JBoss 3.0
 
Similar Threads
EJB deployment problem
J2EE and Logging
logging test messages
catching warnings
App won't run when client is on a different machine than server - $donation