[jQuery] Ajax, XML, and an Axis2 Web Service

[jQuery] Ajax, XML, and an Axis2 Web Service


I'm using jQuery to call an Axis2 web service with the following code...
$(document).ready(function() {
    $.ajax({
        type: 'GET',
        url: '/ecmsws/services/ecms/getChannelSectionLinks',
        data: 'articleId=7661',
        dataType: 'xml',
        success: getResponse
    });
});
...the web service returns an xml representation of the server side object.
This works in FF, Safari, and IE 7, but hangs IE 6. Any thoughts?
--
View this message in context: http://www.nabble.com/Ajax%2C-XML%2C-and-an-Axis2-Web-Service-tp16809069s27240p16809069.html
Sent from the jQuery General Discussion mailing list archive at Nabble.com.