Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using the play-authenticate module in my project. My project code and paths are basically the same as the play-authenticate-simple-oauth. But on all the routes I get the following error.

   play.core.ActionInvoker$$anonfun$receive$1$$anon$1: Execution exception [[NullPointerException: null]]
        at play.core.ActionInvoker$$anonfun$receive$1.apply(Invoker.scala:134) [play_2.9.1.jar:2.0.3]
        at play.core.ActionInvoker$$anonfun$receive$1.apply(Invoker.scala:115) [play_2.9.1.jar:2.0.3]
        at akka.actor.Actor$class.apply(Actor.scala:318) [akka-actor.jar:2.0.2]
        at play.core.ActionInvoker.apply(Invoker.scala:113) [play_2.9.1.jar:2.0.3]
        at akka.actor.ActorCell.invoke(ActorCell.scala:626) [akka-actor.jar:2.0.2]
        at akka.dispatch.Mailbox.processMailbox(Mailbox.scala:197) [akka-actor.jar:2.0.2]
    Caused by: java.lang.NullPointerException: null
        at com.feth.play.module.pa.PlayAuthenticate.logout(PlayAuthenticate.java:205) ~[play-authenticate_2.9.1-0.2.0-SNAPSHOT.jar:0.2.0-SNAPSHOT]
        at com.feth.play.module.pa.controllers.Authenticate.logout(Authenticate.java:20) ~[play-authenticate_2.9.1-0.2.0-SNAPSHOT.jar:0.2.0-SNAPSHOT]
        at Routes$$anonfun$routes$1$$anonfun$apply$7$$anonfun$apply$8.apply(routes_routing.scala:72) ~[classes/:na]
        at Routes$$anonfun$routes$1$$anonfun$apply$7$$anonfun$apply$8.apply(routes_routing.scala:72) ~[classes/:na]
        at play.core.Router$HandlerInvoker$$anon$4$$anon$1.invocation(Router.scala:1086) ~[play_2.9.1.jar:2.0.3]
        at play.core.j.JavaAction$$anon$1.call(JavaAction.scala:33) ~[play_2.9.1.jar:2.0.3]

Any idea that I may be doing wrong here.

share|improve this question
Seems that something wrong on your Controller class. Can you post more details(Code/Log) on this? – Tapas Jena Apr 8 at 7:28

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.