我正在尝试使用 ajax 来调用我的网络服务。我已经在我的虚拟机中部署了我的网络服务。
网址:
http://www.lumiin.ch:8080/lumiin-service/lumiin/control/vprospects
用 Rest 客户端 Jar 试试这个 URL
Method = GET
Key = accept
value = Application/json
**My Code below** 
     $.ajax({
              type: "GET", //GET or POST or PUT or DELETE verb
              url: "http://www.lumiin.ch:8080/lumiin-service/lumiin/control/vprospects", // Location of the service
              data: "", //Data sent to server                           
              contentType: "application/json", // content type sent to server
              dataType: "json", //Expected data format from server
              processdata: true, //True or False
              success: function (data) {//On Successfull service call
              var result = json.name;
                alert("result===" + result);
               $("#dvAjax").html(result);
            },
            error: ServiceFailed// When Service call fails
            });
               return false;
        });
    });
但是我没有从上面的代码中得到任何响应。请帮我解决这个问题。
雷格的卡西克