我已经实现了托管在地址http://localhost:8080/rest/adrestresource/1.0/activedirectory/findgroups%20test@lab.local%20
pwds%20localhost 上的 REST 服务。该服务是可见且可访问的(我可以使用 Web 浏览器从中获取 xml),但我无法编写简单的 jquery 脚本来获取数据并显示它。我的代码:
$.ajax({
url: "http://localhost:8080/rest/adrestresource/1.0/activedirectory/findgroups%20test@lab.local%20Bezhesla1%20localhost",
//url: 'http://api.geonames.org/astergdem?lat=50.01&lng=10.2&username=demo&style=full&type=XML',
type: 'GET',
dataType: 'xml',
success: function(xml){
alert('success');
}
});
当我将地址更改为另一个休息服务时,会出现警报弹出窗口(这意味着问题出在 REST 服务路径中)。有什么想法有什么问题吗?:)
REST 服务实现为部署在本地 jira 实例上的 Atlassian JIRA 插件 :)