Hi
the server accepts InputStream form a multipart attachment or fromj the
immediate request body, in the latter case it is HTTP PUT, so you can
use the client library to PUT bytes to the server
Cheers, Sergey
On 01/09/15 09:44, [email protected] wrote:
Hey everyone,
I am parsing file systems in hdd images in a c++ program. For further analysis I would
like to parse the files I find with Tika. The recommended way I found was setting up a
Tika server and send and recieve files and responses with its RESTful interface.
Unfortunately I can only send "real" files over that interface, but I need to
send just the bytes of that file my file system parser found (described by the length of
the file in bytes and the offset on the hdd).
How can I achieve this? Or what would be an alternative? (The file system
parser I use is c/c++ only)
Regards