Skip to main content

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

Hi Jesse,

I am using jdk1.6.0.21.

Thanks,

Ike



From:        Jesse McConnell <jesse.mcconnell@xxxxxxxxx>
To:        Ike Ikonne/Dallas/IBM@IBMUS
Cc:        JETTY user mailing list <jetty-users@xxxxxxxxxxx>
Date:        03/23/2011 07:52 AM
Subject:        Re: [jetty-users] Issue with Lodaing LdapLoginModule




what jdk are you building with?

jesse

--
jesse mcconnell
jesse.mcconnell@xxxxxxxxx



On Tue, Mar 22, 2011 at 14:07, Ike Ikonne <iikonne@xxxxxxxxxx> wrote:
> Hi all,
>
> I checkout jetty 7.3.1 source code so that I could build it, but I am
> getting the following error messages
> from the java compiler, it indicates that it could not find these files,
> does anyway know how/where I can
> get the jar containing these java classes.  I am using maven to build; I
> have also tried buidling
> with eclipse but didn't get any better.
>
> Thanks,
>
> Ike
>
>
> import javax.security.auth.message.AuthException;
> import javax.security.auth.message.AuthStatus;
> import javax.security.auth.message.callback.CallerPrincipalCallback;
> import javax.security.auth.message.callback.GroupPrincipalCallback;
> import javax.security.auth.message.config.ServerAuthConfig;
> import javax.security.auth.message.config.ServerAuthContext;
>
>
>
> From:        Jesse McConnell <jesse.mcconnell@xxxxxxxxx>
> To:        JETTY user mailing list <jetty-users@xxxxxxxxxxx>
> Cc:        Ike Ikonne/Dallas/IBM@IBMUS
> Date:        03/18/2011 08:24 AM
> Subject:        Re: [jetty-users] Issue with Lodaing LdapLoginModule
> ________________________________
>
>
> check your login module again, looks like server.server is in there
> which is not correct
>
> cheers,
> jesse
>
> --
> jesse mcconnell
> jesse.mcconnell@xxxxxxxxx
>
>
>
> On Fri, Mar 18, 2011 at 08:22, Ike Ikonne <iikonne@xxxxxxxxxx> wrote:
>> 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)
>> _______________________________________________
>> jetty-users mailing list
>> jetty-users@xxxxxxxxxxx
>>
https://dev.eclipse.org/mailman/listinfo/jetty-users
>>
>>
>
>


Back to the top