Angular无法从WCF接收响应

时间:2014-08-26 13:29:40

标签: c# angularjs wcf rest post

我有一个用C#和.NET 4.0编写的WCF服务器

我试图发送帖子请求,但我没有收到浏览器的回复。

这是我的角色服务。

services.factory('CodiciComunicazioneCreaFactory', function ($resource) {
    return $resource('http://myIpAddress:port/service/create', { port : ':8002' },  {
            create: { method: 'POST', 
                      headers: { 'Content-Type': 'application/json' } } 
        });
});

enter image description here

enter image description here

enter image description here

我也尝试用这个命令从curl调用我的ws,一切都很完美。

curl -H "Content-Type: application/json" -d '{"Code":"aaa"}' http://myIpAddress:8002/servive/create

**编辑**

WCF中XML响应中的卷曲输出设置。

~$ curl -H "Content-Type: application/json" -d '{"Code":"aaa"}' http://192.168.1.147:8002/CodiciComunicazione/create

<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>

在WCF服务器中将响应设置为Json,使用相同的命令,curl返回

true

0 个答案:

没有答案