Hi Tim,

> Is there a way to stream output using the Rest DSL?

I used the following to download stream of bytes from the REST API:

rest("/api").
        
get("/download").bindingMode(RestBindingMode.off).produces('application/octet-stream').route().
        setBody().constant(new ByteArrayOutputStream("foo".getBytes()));.

So I guess that setting OutputStream as the response body should do the trick.

Cheers.

-- 
Henryk Konsek
http://henryk-konsek.blogspot.com

Reply via email to