[JBoss Messaging] - Re: Configuring Destinations
by ovidiu.feodorov@jboss.com
The root exception "ClassNotFoundException: No ClassLoaders found for: org.jboss.jms.destination.JBossQueue" can be generated by many other things, including a "legitimate" missing class. I agree it's not the case here, but adding a message directing the user to specifically look for a extraneous "jndi.properties" can be misleading. That's why I would rather list this under FAQs, as a possible cause.
What's a little bit more worrisome is the fact that the root exception shows nowhere in the logs.
I can see it is linked to a new JMSException
| {
| JMSException x = new JMSException("Error creating the dlq connection: " + e.getMessage());
| x.setLinkedException(e);
| throw x;
| }
|
but the logs do not contain a hit of what's actually going on.
My suggestion would be to add an extra log.error() at the point of interception.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3974338#3974338
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3974338
19 years, 7 months
[Security & JAAS/JBoss] - Re: Can't get access right from Java Client
by jmcollin92
Thank's for your answer. Your help is precious.
But I ask me some other questions.
anonymous wrote : If you need to perform client-side authentication of users you would need to configure another login module in addition to the ClientLoginModule .
I was first using LoginInitialContextFactory. Does this module perform client-side authentication ?
If not, can you send me a piece of code that does perform client-side authentication ?
anonymous wrote :
| So if you are using isCallerInRole in your EJB, you will require a *authenticated* user, in which case you will require a additional login module which will do the authentication(as mentioned in the quote above)
|
You mean that all code found on the internet does not authenticate ? I can'et believe thsi because all are talking about login and password.
Are you sure I need another module client side ?
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3974330#3974330
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3974330
19 years, 7 months