kney Posted August 18, 2011 Share Posted August 18, 2011 I have a webservice which gives an XML response after i upload a file. Something like this: <jobs> <job> <id>50</id> <fileName>test.xml</fileName> <status>FINISHED</status> <creationTime>2011-08-18T13:41:14+02:00</creationTime> <lastUpdateTime>2011-08-18T13:44:48+02:00</lastUpdateTime> </job> <job> <id>51</id> <fileName>test.xml</fileName> <status>FINISHED</status> <creationTime>2011-08-18T13:54:48+02:00</creationTime> <lastUpdateTime>2011-08-18T13:54:49+02:00</lastUpdateTime> </job> </jobs> The link to the XML response is below in the src path. This code works in IE but not in FF. I need a way to make it work in FF <html> <body> <xml id="job" src="http://172.24.16.41:8080/FELNET2/WebServices/getJobs"></xml> <table border="1" datasrc="#job"> <tr> <td><span datafld="id"></span></td> <td><span datafld="fileName"></span></td> </tr> </table> </body> </html> Quote Link to comment Share on other sites More sharing options...
bspace Posted August 22, 2011 Share Posted August 22, 2011 i believe the best your gonna do is to emulate that as it's a microsoft specific behaviour take a look at https://developer.mozilla.org/en/Using_XML_Data_Islands_in_Mozilla Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.