Jump to content

XML Data Island (doesn't work in FF)


kney

Recommended Posts

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> 

Link to comment
https://forums.phpfreaks.com/topic/245104-xml-data-island-doesnt-work-in-ff/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.