processRequestBody help

How does it work?

I have a PostHttpRequestBuilder, call

val procBody:Body=>Body={
body=>{
println(“BODY=”+body)
body
}
}

.processRequestBody(procBody)

Nothing gets printed out, doesn’t even get called?

What am I doing wrong?

Thanks

Dino.

processRequestBody is only called if you set up a body with .body(), not just post params