I would like to perform a post with binary data using Jersey Client.
The equivalent with curl would be:
curl -v --header "Content-Type:application/octet-stream" --data-binary "abc" http://example.com
I could not find how to do it in the official docs: http://jersey.java.net/documentation/latest/user-guide.html#client
Thanks.