Ask Question Forum:
Model Library:2025-02-08 Updated:A.I. model is online for auto reply question page
C
O
M
P
U
T
E
R
2
8
Show
#
ASK
RECENT
←
- Underline
- Bold
- Italic
- Indent
- Step
- Bullet
- Quote
- Cut
- Copy
- Paste
- Table
- Spelling
- Find & Replace
- Undo
- Redo
- Link
- Attach
- Clear
- Code
Below area will not be traslated by Google,you can input code or other languages
Hint:If find spelling error, You need to correct it,1 by 1 or ignore it (code area won't be checked).
X-position of the mouse cursor
Y-position of the mouse cursor
Y-position of the mouse cursor
Testcursor
caretPos
Attachment:===
Asked by Ravi Kalla
at 2024-07-11 11:10:17
Point:500 Replies:6 POST_ID:828956USER_ID:11856
Topic:
Web Browsers;Hypertext Markup Language (HTML);Hypertext Transfer Protocol (HTTP)
My Internet Explorer is not sending below line in the header-
I confirmed this by checking the response content type in IE DeveloperTools. "TEXT/HTML" is appearing there in "Type" field.
FireFox browser, is sending GZIP in the header and getting the compressed response.
How can I enable GZIP for IE?
Author: Ravi Kalla replied at 2024-07-22 02:16:58
Though my own solution is perfect fit for my need, "duncanb7" has provided some good links and answer.
Expert: duncanb7 replied at 2024-07-17 07:46:52
Thanks for your points
Have a nice day
Duncan
Have a nice day
Duncan
Accepted Solution
Author: Ravi Kalla replied at 2024-07-17 07:41:51
I found that IE is sending "Accept-Encoding: gzip, deflate" in the request header with the help of -
DeveloperTools->Network->StartCapturing->Select a request and click "Go to detailed view"->Request headers
I confused earlier as the Response header doesn't contain "Content-Encoding : gzip" in it even though GZIP coming to the IE browser. Reason for this is-
IE decodes(or decompresses) the response even before pushing the header to DeveloperTools. So, it is not shown as compressed content in the response header. Where as in FireFox, RAW response is shown in the FireBug where in we can see “Content-Encoding : gzip” in the response header and then uncompression is done.
Reference link.
DeveloperTools->Network->StartCapturing->Select a request and click "Go to detailed view"->Request headers
I confused earlier as the Response header doesn't contain "Content-Encoding : gzip" in it even though GZIP coming to the IE browser. Reason for this is-
IE decodes(or decompresses) the response even before pushing the header to DeveloperTools. So, it is not shown as compressed content in the response header. Where as in FireFox, RAW response is shown in the FireBug where in we can see “Content-Encoding : gzip” in the response header and then uncompression is done.
Reference link.
Assisted Solution
Expert: duncanb7 replied at 2024-07-11 16:41:36
500 points EXCELLENT
Could you use Fiddler or Charles http debugger as following links to view the request and response instead of using IE developer tools ?
http://www.techspot.com/downloads/5461-fiddler.html
http://www.charlesproxy.com/
Probably you can view Accept-Encoding:gzip. The issue may be
due to inspect process from IE developer tools
Similar issue for Content-encoding happen before from this link
due to IE developer tools ( article date in 2012)
http://blogs.msdn.com/b/kaushal/archive/2012/07/23/i-don-t-see-content-encoding-header-in-ie-http-debugger-f12-developer-tools.aspx
Have you received compressed raw data or decompressed file data completely from both IE and FF regardless of Accept-encoding issue on IE developer tools ?
Duncan
http://www.techspot.com/downloads/5461-fiddler.html
http://www.charlesproxy.com/
Probably you can view Accept-Encoding:gzip. The issue may be
due to inspect process from IE developer tools
Similar issue for Content-encoding happen before from this link
due to IE developer tools ( article date in 2012)
http://blogs.msdn.com/b/kaushal/archive/2012/07/23/i-don-t-see-content-encoding-header-in-ie-http-debugger-f12-developer-tools.aspx
Have you received compressed raw data or decompressed file data completely from both IE and FF regardless of Accept-encoding issue on IE developer tools ?
Duncan
Author: Ravi Kalla replied at 2024-07-11 14:32:09
It is HTTP link. As it is intranet site, exact link may not be useful. I enabled gzip on the server side and it is working for FireFox browser.
gzip is not working for IE browser only as it is not sending Accept-Encoding: gzip, deflate in its header.
And yes "Do not save encrypted pages to a disk" check box is not selected.
gzip is not working for IE browser only as it is not sending Accept-Encoding: gzip, deflate in its header.
And yes "Do not save encrypted pages to a disk" check box is not selected.
Expert: duncanb7 replied at 2024-07-11 11:33:43
The link is http or https ?
Is it okay let us know the exact link site path so that we can try it at our side with Charles http proxy debugger
Could you try this follows to see any improvement ?
-1 On the Tools menu in Internet Explorer, click Internet Options.
-2 Click the Advanced tab.
-3 In the Settings box, scroll down to the Security section, and then make sure that the Do not save encrypted pages to a disk check box is not selected.
Hope understand your question completely.If not, please point it out.
Duncan
Is it okay let us know the exact link site path so that we can try it at our side with Charles http proxy debugger
Could you try this follows to see any improvement ?
-1 On the Tools menu in Internet Explorer, click Internet Options.
-2 Click the Advanced tab.
-3 In the Settings box, scroll down to the Security section, and then make sure that the Do not save encrypted pages to a disk check box is not selected.
Hope understand your question completely.If not, please point it out.
Duncan