[JBoss-user] [Beginners Corner] - Re: What does no classloaders found mean ?

2005-09-28 Thread jaikiran
Have you packaged your web apps and EJBs in an ear? If yes, then place the users.properties directly under the ear View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3897691#3897691 Reply to the post :

[JBoss-user] [Beginners Corner] - Re: What does no classloaders found mean ?

2005-09-28 Thread jaikiran
As far as diabling the authentication is concerned, i guess you can remove the following statement from the jboss.xml of your EJB module: security-domainjava:/jaas/http-invoker/security-domain View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3897697#3897697

[JBoss-user] [Beginners Corner] - Re: What does no classloaders found mean ?

2005-09-27 Thread twojenski
Thanks Raja05 Thank you for putting me on the right path. By using currentThread() I was able to resolve my immediate problem. Maybe you can answer another question that I have with this deployment. As I described above I have the Duke's Bank with 1 EBJ project and 2 web app projects. I

[JBoss-user] [Beginners Corner] - Re: What does no classloaders found mean ?

2005-09-27 Thread raja05
Again, how are you loading the property file? You should use something like Thread.currentThread().getContextClassLoader().getResource(users.properties) That should get you the users.properties if its in the WEB-INF/classes. As far your other question, i havent done much JAAS programming , you

[JBoss-user] [Beginners Corner] - Re: What does no classloaders found mean ?

2005-09-27 Thread twojenski
I'm not loading the user.properties file directly, JBoss does that and not my code. I think what I'm asking is JBoss specific, right? Tek View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3897439#3897439 Reply to the post :

[JBoss-user] [Beginners Corner] - Re: What does no classloaders found mean ?

2005-09-25 Thread raja05
Regarding your point No. 1 above, you should *never* use Class.forName unless u want to load one of the standard java classes. Loading classes dynamically should be done using Thread.currentThread().getContextClassLoader().getClass(foo). Please refer to

[JBoss-user] [Beginners Corner] - Re: What does no classloaders found mean ?

2005-09-23 Thread twojenski
Hello gulapalarajasekhar Thank you for your response to the above question, however if you could be more specific that would be very much appreciated. I have a situation where I have a (1) and web application and (1) ejb module inside of the Enterprise App (.ear). The 2 problems that I

[JBoss-user] [Beginners Corner] - Re: What does no classloaders found mean ?

2005-09-07 Thread gulaplaarajasekhar
Hi Andrew, For the first case, Assume we have 2 webserver/appserver for e.g., jboss and tomcat, then it is not possible to access a file present in tomcat under a.b.c.Src where a.b.c.Src is a class from jboss by default. Because the jboss classloader doesn't know anything

[JBoss-user] [Beginners Corner] - Re: What does no classloaders found mean ?

2005-09-06 Thread gulaplaarajasekhar
The container is not able to load com.meerkat.jfr.par.Address class and so the ClassNotFound Exception It might be due to various reasons. Few which I know are 1. If we user more than 1 container, then there should be mapping in one container saying the path of the other container. 2. If

[JBoss-user] [Beginners Corner] - Re: What does no classloaders found mean ?

2005-09-06 Thread andrewi
gulaplaarajasekhar wrote : The container is not able to load com.meerkat.jfr.par.Address class and so the ClassNotFound Exception | It might be due to various reasons. Few which I know are | | 1. If we user more than 1 container, then there should be mapping in one container saying the