我有宁静的网络服务。一个app android客户端通过ajax调用restful web服务。我不知道模拟器android的IP地址和端口,所以注册客户端地址访问restful web服务。 Plz帮助我。
在app android中编码ajax
function Get() {
$.ajax({
url: "http://<web service domain>:31132/api/Customer",
type: "GET",
dataType: "json",
contentType: "application/json;charset=utf-8",
success: function (data) {
$('#d').append("success");
},
error:function(){
$('#d').append("Errorrr");
}
});
}
在宁静的Web服务中注册客户端地址
public static void RegisterCors(HttpConfiguration httpConfig) {
WebApiCorsConfiguration corsConfig = new WebApiCorsConfiguration();
corsConfig.RegisterGlobal(httpConfig);
corsConfig
.ForResources("Customer")
.ForOrigins("?????")// we need to register a client address access to webservice.This is my problem.
.AllowAll();
}
答案 0 :(得分:0)
adb shell ifconfig tiwlan0
tiwlan0是设备上wi-fi网络接口的名称