Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8458189
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T13:00:48+00:00 2026-06-10T13:00:48+00:00

I am using Play 2.0 and Akka to deploy a web application. I have

  • 0

I am using Play 2.0 and Akka to deploy a web application. I have separated actors based on responsibility, as such actors often need to communicate with each other during a single web request.

For example, given an actor that manages registered devices, it must query another actor that handles the associated user accounts:

class DeviceActor extends Actor {

  val accountActorRef = ...

  def receive = {
    case GetAccountByDeviceId(id:String) =>
      val accountId = getAccountIdAssociatedWithDevice(id)
      accountActorRef ? GetAccountById(accountId) map {
        case account: Account => sender ! account
      }
  }

}

When calling DeviceActor from my controller, I always get

akka.pattern.AskTimeoutException
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T13:00:50+00:00Added an answer on June 10, 2026 at 1:00 pm

    When calling map on a Future or Promise you are actually registering a callback. The reference sender is caught in the callbacks closure, but sender is only appropriately set while the DeviceActor is handling the message.

    You have to capture the senders reference before the receive method exists:

    class DeviceActor extends Actor {
    
      val accountActorRef = ...
    
      def receive = {
        case GetAccountByDeviceId(id:String) =>
          val X = sender
          val accountId = getAccountIdAssociatedWithDevice(id)
          accountActorRef ? GetAccountById(accountId) map {
            case account: Account => X ! account
          }
      }
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am writing a web-application using Play 1.2.3 . One of the feature is
I am using Play Framework 2.0.1. I have created a Java application using the
I am using play 1.2.4. My application is running in several languages. I need
Writing a Java application using the Play framework and need some HTTP-Live streaming. I
I have developed a small application based on Play Framework (I am still learning).
I want to use akka's scheduler in my play 2.0(using java) framework application to
I have been using play 1.2.5rc4 for development of one app and I have
We are using play 1.2.x DB evolutions feature. I want to have the scripts
I am using Play Framework 2.0 with Scala. So I have an action that
While creating an online shop application using play-1.2.4 ,I ran into some problems with

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.