The Java docs for HttpInputOverHTTP are here:
http://download.eclipse.org/jetty/stable-9/apidocs/org/eclipse/jetty/server/HttpInputOverHTTP.html

and the source is here:
https://github.com/eclipse/jetty.project/blob/master/jetty-server/src/main/java/org/eclipse/jetty/server/HttpInputOverHTTP.java

It matters what data is wrapped by HttpInputOverHTTP, if the submitted data
was binary, slurp will return an empty string. So you may need to pay
attention to the content type header.

As an aside, if you are testing with curl (as I was yesterday...) depending
on your invocation curl will alter the data before it is sent, striping out
newlines from text, not send binary data, etc
http://curl.haxx.se/docs/manpage.html

- Jordan

On Wed, Aug 19, 2015 at 5:45 PM, Mike Rodriguez <mjr4...@gmail.com> wrote:

> Off subject. Just going to throw it out there that HttpInputOverHTTP looks
> like a CamelCase naming convention gone wrong. Id like to hear why it was
> named that way. :)
>
> --
> 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.
>

-- 
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