Tagged Questions
3
votes
3answers
254 views
http(/* argument here */) How is this Object (Http) being used without an explicit or implicit method?
In the example for coding with Json using Databinder Dispatch Nathan uses an Object (Http) without a method, shown here:
import dispatch._
import Http._
Http("http://www.fox.com/dollhouse/" ...
2
votes
1answer
463 views
Akka REST service + dispatch problem
I followed the example here. It works, fine. But now I need to perform some business logic in case get:Get =>
Required business logic includes using dispatch library. In a nutshell, I do a request ...
1
vote
1answer
98 views
Getting a 302 http redirect location with Databinder-Dispatch
With databinder-dispatch 0.8.3 I'm trying to get the redirect url from a 302 http response, but I get the following exception:
Caused by: dispatch.StatusCode: Unexpected response code: 302
Here's ...
1
vote
1answer
750 views
Problem with Scala Dispatch Databinder library
I am using the Dispatch Databinder library for Http in Scala.
I have this method.
def testCheckPage(url:String):String = {
try {
var http = new Http
var request = new Request(url) ...