Hi Mathias,

It looks like you've misplaced a paren in your code example:

  (piped-input-stream
   (fn [output-stream])
   (pdf ...)

piped-input-stream accepts a single function argument. Also, according to the 
docs, once the function is finished executing, the output stream is closed. I 
believe that what may be happening is that the stream is closed before you can 
serve it up as the body of your response. I would try creating an InputStream 
another way. Ring will automatically close the input stream after the request 
is served.

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to