我正在尝试从Jquery调用WCF服务。但是,如果我用我的机器名称替换url它不起作用。 html / jquery和WCF都在同一个网站(项目)上。我想很多人都需要帮助,因为没有办法调试并找出问题所在。而不是不断更改wcf服务文件,web.config文件和html(ajax函数)页面,是否有人有这个问题正在运行的项目?
$.ajax({
type: "POST",
//work well
//url: "Service1.svc/MyFunction",
//work well
//url: "http://localhost:43969/Service1.svc/MyFunction",
//not work ???
//url: "http://PWLL-IT-056:43969/Service1.svc/MyFunction",
data: '{"Count": "' + counter + '"}',
contentType: "application/json", // content type sent to server
success: ServiceSucceeded,
error: ServiceFailed
});
感谢您的帮助,