:: Forum >>

XML over HTTP in browser different from IE

there's any samples how to retrieve and show in browser different from IE (e.g. MOZILLA, FIREFOX, etc.), XML data over http? samples included with AW works only with IE...

thanks in advance

giovanni
Monday, November 8, 2004
Most of the samples should work with Mozilla and Firefox. Some samples are marked 'IE only' because they make HTTP request to another domain (like Yahoo or MSDN) and Mozilla/Firefox does not allow this for security reasons. If you put your page and the data source to the same web server - all examples will work both in IE and Mozilla/Firefox.
Alex (ActiveWidgets)
Monday, November 8, 2004
thks very much...i've seen that's the real problem is ... data are present but i can't see it...the grid object inside <table> isn't show properly (in firefox 1.0 and mozilla 1.7)...

have anyone some tips to solve this?

thanks
Wednesday, November 10, 2004
try fixing the size of the table.

#myTableID {
width: 400px;
height: 300px;
table-layout:fixed;
}
Alex (ActiveWidgets)
Wednesday, November 10, 2004
Also make sure that you're escaping any data that's coming into the application. For instance, if you're bringing in XML from PHP, you'll want to make sure that you use htmlentities on anything in between your XML tags, because there might be some brackets in there that will cause the XML to be malformed.
mysticweb.org
Thursday, March 24, 2005

This topic is archived.


Back to support forum

Forum search