localhsot的DNS查找失败。没有这样的主人是已知的

时间:2011-03-04 15:37:16

标签: wcf wcf-client

我对该方法做了一个断点,但它永远不会去那里,如果在网络浏览器中粘贴网址并按Enter键,这就是我在Firebug中获得的内容:

ReadResponse() failed: The server did not return a response for this request.  

编辑:

确实那是错字,在纠正之后我仍然没有回应,在FF中我看到了回应

GET GetCustomer?method=jsonp1299253547713
http://localhost:2344/service1.svc/GetCustomer?method=jsonp1299253547713

Aborted

localhost:2344

?

可能出现什么问题?

结束编辑

我使用json和padding创建了一个wcf服务(http://msdn.microsoft.com/en-us/library/cc716898(v = vs.90).aspx)

我有以下代码用于调用服务,此代码位于html页面中,与我创建wcf服务的项目相同。

$("#btn").click(function (event) {

            $.getJSON('http://localhsot:2344/Service1.svc/GetCurrentUser?method=?', { },
            function (data) {
                debugger
                alert(data);
            });
            //return false;
        });

收到此错误:

localhsot的DNS查找失败。没有这样的主人

2 个答案:

答案 0 :(得分:1)

尝试重命名:

localhsot => localhost

答案 1 :(得分:0)

你拼错了localhost。查看您的网址并修复拼写错误。