I have a HTTP response. Is there any way to send it, in two MIME chunks?
For example: in HTTP response I have:
<html>
<head><title>Example</title>
<body>Some Body</body>
</html>
I want to send something like this:
--SOME_MIME_boundary
<html>
<head><title>Example</title>
--SOME_MIME_boundary
<body>Some Body</body>
</html>
--SOME_MIME_boundary
Is this possible to have one html document splitted into couple of MIME chunks? I want browsers (on client end) to recognize that thoose 2 chunks are one html document and properly display it.
If it is possible, give me some simple http response example (with headers etc), please. I simply don't know how to construct that HTTP response.
If you want to know why I need this check: HTTP - how to send multiple pre-cached gzipped chunks?
Thank You!