请Kneecap My Bug--在IE中使用Flex 3,OpenX的XML解析器错误

时间:2010-06-05 00:15:49

标签: javascript xml flex openx

我正在努力让Flex 3和OpenX协同工作。在Safari和Firefox中一切都很棒。但是,我在Internet Explorer中遇到了一个XML解析器错误,这让我想要撕掉我的头发并喝松节油。

我尽力尽力简化问题。基本上,我采用adReturn然后将其转换为xml。

adReturn =  '<adXMLReturn>' + adReturn + '</adXMLReturn>';
xmlReturn = new XML(adReturn);

我不认为IE喜欢adReturn,如下所示:

"<adXMLReturn>

<SCRIPT type=text/javascript><!--//<![CDATA[
   var m3_u = (location.protocol=='https:'?'https://www.dcscore.com/openx/www/delivery/ajs.php':'http://www.dcscore.com/openx/www/delivery/ajs.php');
   var m3_r = Math.floor(Math.random()*99999999999);
   if (!document.MAX_used) document.MAX_used = ',';
   document.write ("<scr"+"ipt type='text/javascript' src='"+m3_u);
   document.write ("?zoneid=4");
   document.write ('&amp;cb=' + m3_r);
   if (document.MAX_used != ',') document.write ("&amp;exclude=" + document.MAX_used);
   document.write (document.charset ? '&amp;charset='+document.charset : (document.characterSet ? '&amp;charset='+document.characterSet : ''));
   document.write ("&amp;loc=" + escape(window.location));
   if (document.referrer) document.write ("&amp;referer=" + escape(document.referrer));
   if (document.context) document.write ("&context=" + escape(document.context));
   if (document.mmm_fo) document.write ("&amp;mmm_fo=1");
   document.write ("'><\/scr"+"ipt>");
//]]>--></SCRIPT>



<SCRIPT type=text/javascript src="http://www.dcscore.com/openx/www/delivery/ajs.php?zoneid=4&amp;cb=42464397192&amp;charset=utf-8&amp;loc=http%3A//www.dcscore.com/"></SCRIPT>

<A href="http://www.dcscore.com/openx/www/delivery/ck.php?oaparams=2__bannerid=1__zoneid=4__cb=80291ee9b3__oadest=http%3A%2F%2Fwww.dcscore.com" target=_blank><IMG title="" border=0 alt="" src="http://www.dcscore.com/openx/www/delivery/ai.php?filename=mybanner.png&amp;contenttype=png" width=468 height=60></A>

<DIV style="POSITION: absolute; VISIBILITY: hidden; TOP: 0px; LEFT: 0px" id=beacon_80291ee9b3><IMG style="WIDTH: 0px; HEIGHT: 0px" alt="" src="http://www.dcscore.com/openx/www/delivery/lg.php?bannerid=1&amp;campaignid=1&amp;zoneid=4&amp;loc=http%3A%2F%2Fwww.dcscore.com%2F&amp;cb=80291ee9b3" width=0 height=0></DIV><NOSCRIPT></NOSCRIPT></adXMLReturn>"

有人在adReturn中看到问题吗?救命啊!

谢谢!

-Laxmidi

1 个答案:

答案 0 :(得分:1)

这是显而易见的 - 我很震惊,你可以错过它,因为XML非常漂亮且易于阅读 - 这是有史以来最好的事情:P

XML Parsing Error: not well-formed
Line Number 3, Column 14
<SCRIPT type=text/javascript><!--//<![CDATA[
-------------^

好的所有开玩笑除了XML是丑陋和折磨,当有一个问题,这就是为什么有JSON甚至更好的YAML - 一种有效存储和传输数据的方法,这对人类和计算机来说都很容易处理。

无论如何,这就是我发现问题的方法:XML Validator下次使用时可以避免在生命中过早失去头发。