I am using Appweb server (mini http server) and facing an issue while opening a webpage using https. The page is getting truncated and when looked at HTTP response headers found that webserver is sending response in chunks (Transfer-Encoding set) and that is the root cause. It seems to be a bug in webserver.
I built webserver again disabling Http chunking support and found that the page is loading fine. This page is being loaded inside an iframe.
I don't want to disable Http chunking for all webpages as it may have degrade some performance for other pages. So, I want to know if there is a way to set the custom request headers for the page that is being loaded in an iframe so that i will send http chunking not supported for that webpage alone.
Thanks, Naga Kiran