我想调用使用soap client在.net中创建的Web服务。
现在我想用jQuery调用这个Web服务,并在HTML5页面中显示结果。
我正在使用以下代码,但仅获取错误。
$(document).ready(function() {
$.ajax({
type: "POST",
url: "http://mysite.com/RSSReader.asmx/MY_method_name_in_web_service",
data: "{}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(msg) {
// Hide the fake progress indicator graphic.
$('#RSSContent').removeClass('loading');
// Insert the returned HTML into the <div>.
$('#RSSContent').html(msg.d);
}
});
});
请建议我。 提前致谢