Tagged Questions
0
votes
0answers
40 views
Limit number of thread in Play 2.1 framework
I am using Play 2.1 with Scala to run several tests continuously.
I am doing a Future.traverse(tests)(test => Future(runTest(test)).
I want to limit the number of tests running in parallel so I ...
0
votes
1answer
34 views
Most Recent Akka and Play Framework?
When using the latest version of Akka, Play just immediately hangs up on every HTTP connection attempt.
NoSuchMethodError: akka.actor.ActorSystem.dispatcher()Lakka/dispatch/MessageDispatcher;
What ...
0
votes
0answers
23 views
Push data from server to some users, not everyone
I want push data from server to some users that i want. I can push data to all users via Play Framework with akka.io:
public static Result index() {
Comet comet = new Comet("console.log") {
...
0
votes
0answers
21 views
Play WebSockets Java - Using Static Variable to store WebSocket.Out
I am not very familiar with Akka. So I am storing the WebSocket.Out and WebSocket.In retrieved using onReady() as static variables and reusing them when I am required to send message to that socket ...
1
vote
0answers
26 views
Cancelling Long Running Web-services in Play
I'm using Play2 (with Java) to write a webservice which runs a fairly computationally expensive operation. As per the documentation, I've broken up the process into a chain of promises resembling:
...
0
votes
1answer
21 views
Determine logger based on Akka Actor's path *NOT* the Actor's class (Logback, Akka 2.1.4)
I'm using Play 2.1.1 with Akka 2.1.4 and Logback baked in. event-handler is set to SLF4jLoggerEventHandler. I'd like my application-logger.xml to look like this:
Where that would be a definition ...
0
votes
2answers
79 views
play framework scheduler with Akka at server launch
Question 1: I have created a sample java application using play 2.1.1 with a scheduler to be kicked off when the application is started. I did a play compile and then play start, but i'm getting the ...
0
votes
2answers
66 views
Persistent scheduling
I'm currently in need of persistent scheduling for a web app based on play-framework and akka. I know there is actor scheduling in akka, but as far as I know, it provides no mechanism to persist jobs. ...
-4
votes
2answers
86 views
What are topics needed to develop web application in scala? [closed]
I am good in java and recently learning scala. I want to develop web application. what are the concepts of scala I need to learn?
2
votes
0answers
116 views
Play 2 thread pools : default pool VS Akka Pool with Java
According to the documentation, the easier way to use an actor is :
Promise promiseOfInt = Akka.future( new Callable()
{
public Integer call() {
return ... ;
} } );
...
0
votes
1answer
112 views
What is the correct way to configure actors in Play 2.x?
I noticed a slight difference between the documentation for 2.1 and 2.0:
2.0
akka.default-dispatcher.core-pool-size-max = 64
akka.debug.receive = on
2.1
...
4
votes
3answers
202 views
How to use Typesafe's Config in Scala with encrypted passwords
I would like to use Typesafe's Config in my project but I don't want any passwords in clear text in any file on the file system of any integration or production server. Also, I do not want to use ...
1
vote
1answer
129 views
Compilation error when testing non blocking Redis client (Fyrie) on Play Framework 2.1
when I try to compile the following code
import play.api._
import play.api.mvc._
import scala.collection.mutable.StringBuilder
import net.fyrie.redis.RedisClient
import ...
1
vote
1answer
171 views
Play 2.1.1 not loading custom Akka dispatcher
I'm using Play 2.1.1 and in application.conf I add the following custom dispatcher:
# Dispatcher for round-robin actors
play {
akka {
actor {
rr-dispatcher = {
...
1
vote
1answer
279 views
Play Framework with Akka and Websockets
I have a simple websocket connection setup through Play 2.1 that connects to a javascript frontend.
I have a random number generating loop on the server that generates a random number and sends out ...
1
vote
1answer
93 views
Play! dist throws Exception
I m trying to create a standalone version of my Play! application , when I do play run it works fine , but after doing play dist
I get following error when I run the start command
I m using play2.1 ...
1
vote
2answers
200 views
How to repeat request in Play! framework 2.1?
Is there any simple way to repeat request until getting success result in Play2.1 (scala)? And how to limit the number of attempts?
I want to do something like this:
WS.url("some.url").get().map{ ...
1
vote
3answers
150 views
How to schedule a global period Akka job across multiple processes?
I'm using Akka in Play Framework instead of a Job, to schedule code to run every X seconds. I have a sort of cluster (running on Heroku, currently on 1 dyno but there might be a few concurrent ...
2
votes
1answer
57 views
How to implement the Promise Object?
I am trying to port an existing application in to Play framework. The application uses a library to do SMPP transmission which is already implemented in such a way that the messages are sent on a ...
0
votes
1answer
78 views
Does Akka run multiple instances of the same event concurrently?
I'm using Akka in Play Framework instead of a Job, to schedule code to run every X seconds. My code is running on Heroku free tier, which I believe is sometimes suspended for a while and then resumed ...
0
votes
1answer
81 views
Play and Sencha integration for touch based mobile webapp
I need to develop mobile webapp which should be compatible with any mobile / touch based device (iphone, android etc..).
I really like the Play features, it matches almost everything we need, We've ...
0
votes
1answer
194 views
Play framework: broadcasting messages from actors by server-side events
I have written a simple socket client with Akka-IO that consumes strings from a socket server (it sends strings separated by \n):
class SocketClient(endpoint: InetSocketAddress) extends Actor {
...
1
vote
1answer
172 views
Error when I include custom jars in lib directory - play framework 2.0
I am getting this error on any POST request when I include my set of unmanaged jars in the lib directory. If I remove the lib directory, everything works fine. If it's there, I get this error.. Any ...
11
votes
2answers
320 views
Creating a time-based chunking Enumeratee
I want to create a Play 2 Enumeratee that takes in values and outputs them, chunked together, every x seconds/milliseconds. That way, in a multi-user websocket environment with lots of user input, one ...
2
votes
1answer
305 views
Akka actors remote doesn't work (in Play framework)
When trying to run the code below:
ActorRef parserActor1 =system.actorFor("akka://ParserActorsSystem@10.0.0.9:2552/user/ParserMainActor");
System.out.println("*$^%$^%$^"+parserActor1);
...
2
votes
1answer
93 views
Anorm is just locking on executeUpdate
I have a very simple Play 2.1 Scala project. As in, this is the only code in it so far. I have a task which I am running with an Akka.system.scheduler. I have some code to select from the database ...
1
vote
1answer
302 views
JUnit testing Akka actors in play framework 2.0.4 - JAVA ClassNotFoundException on scala.concurrent.duration.Duration
I am trying to implement a JUnit test to test an actor.
I have this ActorTest :
import org.junit.Test;
import play.libs.Akka;
import playtests.PlayFrameworkTest;
import akka.actor.Actor;
import ...
4
votes
2answers
96 views
Java - block in a constructor method call
// allows passing in arguments to the MyActor constructor
ActorRef myActor = system.actorOf(new Props(new UntypedActorFactory()
{ //
public UntypedActor ...
1
vote
0answers
165 views
Queue asynchronous task in Play! - correct way
I have a little Play! application(2.1, scala) which acts as a RESTful front-end for a Java library. This web app queues tasks for background processing using:
...
0
votes
1answer
535 views
Webservice call in Play2 Scala
I want to do something apparently simple: calling a webservice and saving the result in the database.
I'm inside an Akka Actor code and what I do is to call an object method:
object Service {
def ...
3
votes
1answer
504 views
Scala Akka Play, Future doesn't return
I'm using Scala 2.10, Akka 2.1 and Play 2.1. When I send an http request to my backend, I ask one actor to compute something. The idea is to return the result of the calculation if it returns before a ...
3
votes
1answer
381 views
Akka remote actors cannot communicate between Play! applications
I am testing usage of Akka remote actors between two Play! v2.1-RC4 applications.
Here is my code from App1
override def onStart( app: Application ) {
val system = ActorSystem("App1System", ...
1
vote
1answer
175 views
InvalidActorNameException - actor name {name} is not unique
So I'm getting started using Akka actors inside of my Play 2.0 app. I noticed quickly that repeated calls to sending messages to the same actor, specified via:
val myActor = ...
1
vote
0answers
349 views
how to configure akka in play framework 2.1 rc1 to production?
I am using play framework 2.1 RC1 with web sockets.
Each request to the web socket i open up to 4 akka job on Akka.system ,
and i have load tester that open 1000 connections and send request that ...
5
votes
1answer
132 views
Akka - resending the “breaking” message
In the official akka 2.0.4 docs it says:
An actor restart replaces only the actual actor object; the contents of the mailbox is unaffected by the restart,
so processing of messages will resume ...
1
vote
1answer
488 views
Play2 Scala - Global cannot be cast to play.GlobalSettings
I've tried to create a Global object in app/Global.scala to run an Akka scheduler, like some other SO post was saying.
My code is nearly a copy/paste of the Global object tutorial, but on startup I ...
5
votes
1answer
162 views
How to preserve request contextual data in Akka
As a long time Java EE dev, I've used the MDC (Mapped Diagnostic Context) approach to deal with passing around contextual data relating to a request, e.g. a unique request token for tracking a request ...
0
votes
1answer
210 views
Combining Play 2.0 web application with non-web functionality
I am starting a project which is supposed to provide both:
simple http API and
some other functionality (including some low-level networking).
This is why I would like to integrate the "other ...
6
votes
1answer
196 views
Play2.0: Restart on fatal error?
I use playframework 2.0.4 with scala.
I deploy the app using "play dist" and then start it with the "./start" script.
Recently, I had the case that my production instance didn't have enough memory ...
0
votes
1answer
136 views
Call thread based API from Actor Model framework like AKKA
I have a 3rd party API that utilizes Threads. I am coding using Play framework and want to make use of Akka to implement ASYC functionality and to achieve Realtime results. But I'm not sure if ...
0
votes
1answer
86 views
Play Framewrok object serialization with Akka
I have a play framework 2.0 connected to a remote akka systems in java language. I have a java array list object wrapped in a message class. the problem is that I want to send the message object to ...
2
votes
1answer
400 views
Play 2.0.2 with Akka remote system
I am working with Akka 2 and Play 2.0.2.
I want to connect the Play Framewrok to a remote Akka system.
I have done the remote configuration and
the remote referencing of actors but any time
I try ...
0
votes
1answer
604 views
Connecting Play 2 framework with Akka remote system
I am trying to connect a remote akka system to a play framework and it looks like I am having a problem with the configuration.
I have a Play framework controller class and an Akka actor as the local ...
0
votes
0answers
174 views
Deploying remote Akka Cluster in application server [closed]
I am using play framework and will like
to build a remote cluster with akka java
and will like the akka cluster to be linked
to the play framework by for example a network cable
my question is ...
0
votes
0answers
125 views
remote clustering with akka [closed]
am trying my hands on the java akka pi calculation.
after running the tutorials ,
I want to run it as a remote service
that is connected to the play framework
but the tutorial is bootstrap with ...
0
votes
0answers
90 views
akka remoting in router : target - nodes
Akka Routers with Remote Destinations
akka {
actor {
deployment {
/serviceA/aggregation {
router = "round-robin"
...
0
votes
2answers
371 views
Error when adding dependency to play scala.build file
i am working on an akka project with java and play framewrok.
I want to build a cluster system with akka remote clustering.
but after adding the dependencies to the build.scala file
I get the ...
0
votes
1answer
611 views
Difference between `play run` and `play akka start` commands in the Play Framework
I am a bit confused and would like to an explanation.
I am using Java Play 2 with Akka actors. I start the system by using play run.
However, I just saw a video that used the command:
play akka ...
0
votes
1answer
660 views
java akka remote clustering with play framework
I am building a system of clustered computers with several nodes. there is a master node that is suppose to schedule task to several nodes in the cluster. the nodes are separate PCs that are connected ...
0
votes
1answer
390 views
Akka remoting in Java : no result from remote
I am running sample example for akka remoting (2.0.2) in java (1.6) and not getting results from remote. It seems that my local node is not able to connect to remote note.
LocalNodeApplication code ...

