Tagged Questions
0
votes
0answers
97 views
Simplest way to run spray.io spray-can on Heroku
I'm new in Scala and SBT. I want to run simple hello-world http server on Heroku with Spray and Akka. Spray-can's documentation at http://spray.io/documentation/spray-can/examples/ tells that simple ...
0
votes
1answer
68 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
2answers
183 views
Idiomatic way to continuously poll a HTTP server and dispatch to an actor
I need to write a client that continuously polls a web server for commands. A response from the server indicates that a command is available (in which case the response contains the command) or an ...
0
votes
3answers
149 views
Spray routing 404 response
I have a service which returns an Option[ProductDoc] in a Future (as an akka ask)
How do I respond in spray routing so that a valid product repsonds with a product but an unknown but well formed one ...
2
votes
1answer
208 views
How to make spray-can client follow redirects
When requesting some pages with the following code:
HttpDialog(httpClient, IDN.toASCII(domain)).send(HttpRequest(uri = "/")).end
spray-can client returns responses with redirects to another URLs ...
2
votes
1answer
126 views
Best way to “restart” Akka after code change to a Scala file?
I'm working with learning Scala and Spray to serve up an API, and each time I make a change to my Scala code, I have to restart the Akka server (currently just breaking out and then doing a ...
0
votes
2answers
313 views
Chaining Futures in Akka and Spray
I have the following issue:
I need to query a RESTful service that always returns a JSON response. I need to contact it a few times, always with some more information that I learned from the previous ...
0
votes
1answer
72 views
Spray with Air Timeout for Comet
I am building an Air application that long-polls a Spray server to get relevant updates.
I am new to Spray and have read that, if requests are not handled on time, a 500 timeout error is ...
12
votes
2answers
1k views
Actor-based webservice - How to do it properly?
In the past few months, me and my colleagues have successfully built a server-side system for dispatching push notifications to iPhone devices. Basically, a user registers for these notifications via ...
14
votes
0answers
2k views
What are the pros and cons of the different Scala middleware choices [closed]
Note: Unfortunately this question was closed, but I'm trying to maintain it for if someone else comes along with the same question.
I've been looking for a good solution to developing a service in ...
5
votes
2answers
883 views
Get form parameters from a post request using spray/scala
I'm really new with all this Scala/Spray. With some testing I was able to get parameters from a Get request using the parameters function. However I'm trying to fetch some parameters sent from a POST ...