0

我正在使用 jquery、jersey 和 json。当我尝试调用邮政服务时,我收到此错误

Access-Control-Allow-Origin 不允许 Origin null。未定义 * 错误:NETWORK_ERR:XMLHttpRequest 异常 101

我的客户代码

$.ajax({url: jurl, type: 'POST', dataType : 'json', headers: {accept:"application/json"},data: inData , cache : false, async : false, contentType : "application/json; charset=utf-8", 

我的服务器代码

@POST
@Path(ReferentialPath.PLAYER_RESOURCE_PATH)
@Consumes(MediaType.APPLICATION_JSON)
public Response createPlayer(CreatePlayerIn cPlayer) {
    try {
        String res = dao.create(player);

        UriBuilder ub = uriInf.getAbsolutePathBuilder();
        URI createdUri = ub.path(res).build();
        return Response.created(createdUri).build();

    } catch (Exception e) {
    }
}

有人能告诉我可能是什么问题吗

4

2 回答 2

0

您似乎正在尝试发布到另一个域。
可能的问题wiki
可能的解决方案:你应该阅读这个SO question

于 2013-06-04T10:17:28.863 回答
0

在这里,我想您的客户端和服务器之间必须有一些防火墙。HTTP 代码 101 表示您的 http 请求已被您的网络设备过滤。所以改变你的网络并直接连接你的服务器。然后再试一次。

于 2013-06-04T10:17:45.277 回答