glafrance
17 Jul 2012, 4:19 PM
I'm using Ext.flash.Component to display a Flex (Flash) app in an ExtJS 4 app.
I make an ajax call in the ExtJS app, and in the ajax request success handler I assign the response.responseText to a variable in the flashVars for the SWF.
All is fine in Firefox, the xml data gets to the Flex (Flash) app fine, but in Internet Explorer 8 and 9 this is what Flex app receives:
<$xml version=
Here is a snippet of good data (incomplete):
<? xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<SessionData>
<companyData>
<data>
<accountId>4496637</accountMgrId>
<hasSubCompanies>true</hasChildCompanies>
<id>4496637</id>
<modifiedBy>FRENFS</modifiedById>
<modifiedTime>1331890046000</modifiedTime>
Any ideas what's going wrong?
The data is fine is I alert response.responseText. For some reason there is a difference in how the Flex (Flash) app gets the data in IE 8 and 9.
I make an ajax call in the ExtJS app, and in the ajax request success handler I assign the response.responseText to a variable in the flashVars for the SWF.
All is fine in Firefox, the xml data gets to the Flex (Flash) app fine, but in Internet Explorer 8 and 9 this is what Flex app receives:
<$xml version=
Here is a snippet of good data (incomplete):
<? xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<SessionData>
<companyData>
<data>
<accountId>4496637</accountMgrId>
<hasSubCompanies>true</hasChildCompanies>
<id>4496637</id>
<modifiedBy>FRENFS</modifiedById>
<modifiedTime>1331890046000</modifiedTime>
Any ideas what's going wrong?
The data is fine is I alert response.responseText. For some reason there is a difference in how the Flex (Flash) app gets the data in IE 8 and 9.