Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[jetty-users] Issue with Lodaing LdapLoginModule

Hi all,

We are trying to authenticate our users through JAASLoginService; we have the jetty-plus-7.0.1.v20091125.jar that
contains org.eclipse.jetty.server.server.plus.jaas.spi.LdapLoginModule, but during runtime
I am getting this stacktrace, I would appreciate any pointers that might help me along
with this problem. Why is the system looking for org.eclipse.jetty.server.server.plus.jaas.spi.LdapLoginModule
since I have already specified to use org.eclipse.jetty.server.server.plus.jaas.spi.LdapLoginModule in
my jaas config file?


avax.security.auth.login.LoginException: unable to find LoginModule class: org.eclipse.jetty.server.server.plus.jaas.spi.LdapLoginModule
       at javax.security.auth.login.LoginContext.invoke(Unknown Source)
       at javax.security.auth.login.LoginContext.access$000(Unknown Source)
       at javax.security.auth.login.LoginContext$4.run(Unknown Source)
       at java.security.AccessController.doPrivileged(Native Method)
       at javax.security.auth.login.LoginContext.invokePriv(Unknown Source)
       at javax.security.auth.login.LoginContext.login(Unknown Source)
       at org.eclipse.jetty.plus.jaas.JAASLoginService.login(JAASLoginService.java:203)
       at org.eclipse.jetty.security.authentication.FormAuthenticator.validateRequest(FormAuthenticator.java:174)
       at org.eclipse.jetty.security.SecurityHandler.handle(SecurityHandler.java:417)
       at org.eclipse.jetty.server.session.SessionHandler.handle(SessionHandler.java:182)
       at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:933)
       at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:362)
       at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:867)
       at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:117)
       at org.eclipse.jetty.server.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:245)
       at org.eclipse.jetty.server.handler.HandlerCollection.handle(HandlerCollection.java:126)
       at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:113)
       at org.eclipse.jetty.server.handler.StatisticsHandler.handle(StatisticsHandler.java:159)
       at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:113)
       at org.eclipse.jetty.server.Server.handle(Server.java:334)
       at org.eclipse.jetty.server.HttpConnection.handleRequest(HttpConnection.java:559)
       at org.eclipse.jetty.server.HttpConnection$RequestHandler.content(HttpConnection.java:1007)
       at org.eclipse.jetty.http.HttpParser.parseNext(HttpParser.java:747)
       at org.eclipse.jetty.http.HttpParser.parseAvailable(HttpParser.java:209)
       at org.eclipse.jetty.server.HttpConnection.handle(HttpConnection.java:406)
       at org.eclipse.jetty.io.nio.SelectChannelEndPoint.run(SelectChannelEndPoint.java:462)
       at org.eclipse.jetty.util.thread.QueuedThreadPool$2.run(QueuedThreadPool.java:436)
       at java.lang.Thread.run(Unknown Source)

Back to the top