Windows Vista Tips

Windows Vista Tips > Newsgroups > Internet Explorer > IE 8 HTML parsing issues

Reply
Thread Tools Display Modes

IE 8 HTML parsing issues

 
 
Thomas
Guest
Posts: n/a

 
      10-21-2009
Our site receives large amounts of traffic and since the initial release of
IE8 (~April 2nd 2009), we've seen errors that could be related to HTML
parsing errors coming in high volumes from IE 8 clients only. Details are
obfuscated for privacy reasons but are available upon direct contact.

Some of our pages load CSS content such as:
http://some.domain.com/css/merge.css....css/74606.css

our servers are receiving requests exclusively from IE8 clients for what
appears to be the CSS request above, but with a completely modified URI

instead of
[...]@style_indexie_2.css/74197.css
we receive requests for
[...]@style_indexieli>[followed by an extended amount of HTML/javascript
that is served on the initial page]

It seems that IE8 is basically having problems parsing the HTML of the
initial page. It truncates the original CSS resource's URL and appends
illegitimate HTML/JS from the actual page to it, causing invalid (and
problematic) requests.

We have found the following user agents in mass numbers within our logs:
Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR
1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)

Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB6; SLCC1;
..NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30618)

Urgent attention and response to this matter will be hugely appreciated.
 
Reply With Quote
 
 
 
 
C A Upsdell
Guest
Posts: n/a

 
      10-21-2009
Thomas wrote:
> Our site receives large amounts of traffic and since the initial release of
> IE8 (~April 2nd 2009), we've seen errors that could be related to HTML
> parsing errors coming in high volumes from IE 8 clients only. Details are
> obfuscated for privacy reasons but are available upon direct contact.


Does your page use JavaScript's document.write to create code on the
fly? Depending on the circumstances, this can confuse some parsers.
 
Reply With Quote
 
G. R. Woodring
Guest
Posts: n/a

 
      10-21-2009
Validate your HTML code at this site:
http://validator.w3.org/

Validate your CSS code at this site:
http://jigsaw.w3.org/css-validator/

Fix the errors and see if the problems go away. Valid code will display well in
any browser, but, there will be some noticeable differences. Even valid code
can display very differently with differing DOCTYPEs.

The HTML and CSS standards describe what a browser should do with valid code, it
can not possibly describe behavior for all possible code errors. A parsing
error is not a browser bug unless it occurs with fully valid code. IE8 is far
less forgiving of page errors than earlier versions.

--
G. R. Woodring

Date: 10/21/2009 4:17 PM, Author: Thomas Wrote:
> Our site receives large amounts of traffic and since the initial release of
> IE8 (~April 2nd 2009), we've seen errors that could be related to HTML
> parsing errors coming in high volumes from IE 8 clients only. Details are
> obfuscated for privacy reasons but are available upon direct contact.
>
> Some of our pages load CSS content such as:
> http://some.domain.com/css/merge.css....css/74606.css
>
> our servers are receiving requests exclusively from IE8 clients for what
> appears to be the CSS request above, but with a completely modified URI
>
> instead of
> [...]@style_indexie_2.css/74197.css
> we receive requests for
> [...]@style_indexieli>[followed by an extended amount of HTML/javascript
> that is served on the initial page]
>
> It seems that IE8 is basically having problems parsing the HTML of the
> initial page. It truncates the original CSS resource's URL and appends
> illegitimate HTML/JS from the actual page to it, causing invalid (and
> problematic) requests.
>
> We have found the following user agents in mass numbers within our logs:
> Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR
> 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)
>
> Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB6; SLCC1;
> .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30618)
>
> Urgent attention and response to this matter will be hugely appreciated.

 
Reply With Quote
 
rob^_^
Guest
Posts: n/a

 
      10-22-2009
Hi Thomas,

Is there a Squid in this? (viz. Are you using a Squid(or other) proxy?). If
you are I don't have an answer for your yet.... I am currently looking at a
similar problem.

Have you inspected your server code for any browser sniffing logic that
incorrectly detects IE8? All the UA strings you quoted look fine. You can
test your UA's at http://www.enhanceie.com/ua.aspx

To troubleshoot your response headers see
http://www.enhanceie.com/ie/troubleshoot.asp

Regards.

"Thomas" <> wrote in message
news:6C356B2F-DC8D-4E45-945B-...
> Our site receives large amounts of traffic and since the initial release
> of
> IE8 (~April 2nd 2009), we've seen errors that could be related to HTML
> parsing errors coming in high volumes from IE 8 clients only. Details are
> obfuscated for privacy reasons but are available upon direct contact.
>
> Some of our pages load CSS content such as:
> http://some.domain.com/css/merge.css....css/74606.css
>
> our servers are receiving requests exclusively from IE8 clients for what
> appears to be the CSS request above, but with a completely modified URI
>
> instead of
> [...]@style_indexie_2.css/74197.css
> we receive requests for
> [...]@style_indexieli>[followed by an extended amount of HTML/javascript
> that is served on the initial page]
>
> It seems that IE8 is basically having problems parsing the HTML of the
> initial page. It truncates the original CSS resource's URL and appends
> illegitimate HTML/JS from the actual page to it, causing invalid (and
> problematic) requests.
>
> We have found the following user agents in mass numbers within our logs:
> Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR
> 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR
> 3.0.04506.648)
>
> Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB6;
> SLCC1;
> .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30618)
>
> Urgent attention and response to this matter will be hugely appreciated.


 
Reply With Quote
 
acenet
Guest
Posts: n/a

 
      01-28-2010

rob^_^;1587457 Wrote:
> Hi Thomas,
>
> Is there a Squid in this? (viz. Are you using a Squid(or other
> proxy?). If
> you are I don't have an answer for your yet.... I am currently lookin
> at a
> similar problem.
>
> Have you inspected your server code for any browser sniffing logi
> that
> incorrectly detects IE8? All the UA strings you quoted look fine. Yo
> can
> test your UA's at 'Internet Explorer - User-Agent test and overrid
> registry scripts' (http://www.enhanceie.com/ua.aspx)
>
> To troubleshoot your response headers see
> 'EnhanceIE.com - Troubleshooting Internet Explorer problems
> (http://www.enhanceie.com/ie/troubleshoot.asp)
>
> Regards.
>
>


Hi,

are there any news about this? We're having the same issues here wit
IE 8 clients. We're using Squid..

Best Regards

--
acene
Posted via http://www.vistaheads.co

 
Reply With Quote
 
smileham
Guest
Posts: n/a

 
      03-10-2010


I'm seeing the exact same problem, only happens on IE8!

We've got quite a javascript heavy site, so I can see how this could be
caused by an errant document.write, but it seems to happen quite
consistently.

If anyone has any ideas, I'd really like to hear them!


--
smileham
Posted via http://www.vistaheads.com

 
Reply With Quote
 
Robert Aldwinckle
Guest
Posts: n/a

 
      03-10-2010

"smileham" <> wrote in message
news:...

Wed, 21 Oct 2009 13:17:01 -0700
http://groups.google.com/group/micro...=author:acenet

poster is replying to another Me too!


>
> I'm seeing the exact same problem, only happens on IE8!
>
> We've got quite a javascript heavy site, so I can see how this could be
> caused by an errant document.write, but it seems to happen quite
> consistently.
>
> If anyone has any ideas, I'd really like to hear them!
>
>
> --
> smileham
> Posted via http://www.vistaheads.com
>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
p5n32-sli se deluxe and Vista x64 and 2gb (slow enough) then 4gb (horribly slow issues) markm75 Windows Vista Hardware 1 08-26-2007 01:03 PM
Event Viewer and EIS Issues hambyla Windows Vista Performance 0 06-16-2007 06:16 PM
Issues with linksys systems Andrew Windows Vista Hardware 1 09-17-2006 08:29 PM
Performance Issues RMWChaos Windows Vista Hardware 0 08-23-2006 04:41 AM
Issues in General (Dell D400) WaltHarris Windows Vista Performance 2 06-22-2006 01:16 PM



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59