vote up 1 vote down star

Currently, I have a servlet act as web service.

When I pass in parameters using POST, it will return me an executable binary file (application/octet-stream). However, beside binary file, I would also like to get additional information (in text format) about this binary file.

Is it possible to achieve this by using only single POST request? But, how is it possible, to switch from application/octet-stream to text/plain within single POST response?

flag

3 Answers

vote up 1 vote down check

It is not possible to change the MIME type within a single response.

However, i think t is possible to put your additional information into the response header using the HttpServletResponse.addHeader method.

link|flag
Seem like a hacking way. But I just love this simple solution for my case. – Yan Cheng Cheok Nov 4 at 12:49
vote up 1 vote down

You could return a multipart MIME response (multipart/mixed; boundary=XXX instead of application/octet-stream) with the binary part encoded in Base64.

I'm not sure if the JavaMail API can be used to construct the content, but it's worth a look.

link|flag
vote up 0 vote down

Within a single POST it isn't possible. But two ideas:

  1. Show your text file as another web page that starts the download of your executable

  2. Bundle both files into a zip archive

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.