[akka-user] Re: Implementation of fire and forget kind of webservice

2014-09-12 Thread jitendra shelar
Thanks Konrad. I am trying with ! (tell). *Playframework Code:* import play.api._ import play.api.mvc._ import akka.actor.{ActorSystem, Actor, ActorRef,Props} import scala.concurrent.duration._ import play.api.libs.ws.WS class HelloActor extends Actor { def receive = { case hello =

[akka-user] Re: Implementation of fire and forget kind of webservice

2014-09-12 Thread jitendra shelar
If there are any sample examples related to spray-clien and playframework, please let me know. I don't want the response back from the Action. -- Read the docs: http://akka.io/docs/ Check the FAQ: http://doc.akka.io/docs/akka/current/additional/faq.html Search the archives:

[akka-user] Re: Implementation of fire and forget kind of webservice

2014-09-12 Thread jitendra shelar
Yes Planetenkiller, My goal is to display the netBankingPage into my index action. Problem I am facing is index Action returns http response(Ok). I just want to call the netBankingPage and end the process at that instant. I am new to playframework/scala/actor and implementing this application

[akka-user] Re: Implementation of fire and forget kind of webservice

2014-09-12 Thread jitendra shelar
As Konrad said, I cannot use akka futures here. I have tried using futures before. Best suitable for this scenario is akka actors. But really stuck in between. Not getting how to proceed ahead. -- Read the docs: http://akka.io/docs/ Check the FAQ:

[akka-user] Re: Implementation of fire and forget kind of webservice

2014-09-12 Thread jitendra shelar
Yes Planetenkiller. Actor doesn't send http response. I am not interested in http response in this scenario. I just want that netBankingPage to be displayed and that's it. I am not interested in sending response back to action. If any alternatives/solutions, please let me know. Thanks, Jitendra

[akka-user] Re: Implementation of fire and forget kind of webservice

2014-09-11 Thread jitendra shelar
Hi Olger, I am using playframework for my application development. Is spray suitable for playframework? If any documents, please let me know. Thanks, Jitendra -- Read the docs: http://akka.io/docs/ Check the FAQ: http://doc.akka.io/docs/akka/current/additional/faq.html

[akka-user] Implementation of fire and forget kind of webservice

2014-09-05 Thread jitendra shelar
Hi, I am newbie to Akka. I am developing a payment gateway simulator using playframework, Scala and Akka. I want to call the netbanking webservice from my simulator. Here I am planning to have Fire and forget kind of implementation. Shall I prefer using Akka Futures or Akka actors for this