WCF问题集锦:ReadResponse failed: The server did not return a complete response for this request.

今日。对代码进行单元測试时。发现方法GetAllSupplyTypes报例如以下错误:

[Fiddler] ReadResponse() failed: The server did not return a complete response for this request. Server returned 0 bytes.

经过对照。唯一的差异是该方法返回的数据对象是一个继承于还有一个集合对象的对象,代码例如以下:

/// <summary>
/// SupplyType的值的集合
/// </summary>
[DataContract]
public class SupplyTypeResults : List<SupplyType>
{
    /// <summary>
    /// 构造函数
    /// </summary>
    public SupplyTypeResults()
    {
        this.Add(new SupplyType
        {
            SupplyTypeId = 2,
            SupplyTypeName = "其它投放方式"
        });

        this.Add(new SupplyType
        {
            SupplyTypeId = 1,
            SupplyTypeName = "平台自己主动投放"
        });

        this.Add(new SupplyType
        {
            SupplyTypeId = 0,
            SupplyTypeName = "客户主动领取"
        });
    }
}

当中,SupplyType定义例如以下:

/// <summary>
/// 优惠券发行方式
/// </summary>
[DataContract]
public class SupplyType
{
    /// <summary>
    /// 发行方式Id
    /// </summary>
    [DataMember(Name = "supplyTypeId")]
    public int SupplyTypeId { get; set; }

    /// <summary>
    /// 发行方式名称
    /// </summary>
    [DataMember(Name = "supplyTypeName")]
    public string SupplyTypeName { get; set; }
}

自以为继承与一个WCF能正常序列化的对象,并且在SupplyTypeResults上也加了DataContract应该没有问题,可是就是报错。

后来不再使用SupplyTypeResults类,在代码中直接使用List<SupplyType>。问题所有解决。

之后。有发现还有一个方法也会产生该问题。可是,该方法不属于此原因范畴。经过一阵排查,发现返回类中有个日期属性没有赋值,导致了该错误的抛出。

经过上述两事件总结能够得出,对于不论什么在序列化过程中可能出错的情况。都会导致server返回0字节数据而报此错误。

时间: 2024-12-18 13:04:15

WCF问题集锦:ReadResponse failed: The server did not return a complete response for this request.的相关文章

[Fiddler] ReadResponse() failed: The server did not return a complete response for this request. Server returned 0 bytes.

待解决 待解决问题 原文地址:https://www.cnblogs.com/qy1234/p/9154845.html

wcf问题集锦

1.处理程序“svc-Integrated”在其模块列表中有一个错误模块“ManagedPipelineHandler” HTTP 错误 404.3 - Not Found 由于扩展配置问题而无法提供您请求的页面.如果该页面是脚本,请添加处理程序.如果应下载文件,请添加 MIME 映射. 解决办法:以管理员运行命令:C:\Windows\Microsoft.NET\Framework\v3.0\Windows Communication Foundation\ServiceModelReg.ex

.net wcf memory gates checking failed

某个功能不能使用,从内网访问这个API出现memory gates checking failed.如下图所示, 正如上图所说,激活wcf最小内存不够,加minFreeMemoryPercentageToActivateService="0". 恢复正常访问如下图所示, 为了以后预防这种问题再次发生,暂时有两种解决方法可选: 1.服务器增加内存.但这台是老机器,目前计划迁移到虚拟化环境,可以灵活调整硬件资源. 2.添加到开发规范. .net wcf memory gates check

AFNetworking报错:(415 Domain=com.alamofire.error.serialization.response Code=-1011 &quot;Request failed: unsupported media type (415)&quot;)

问题? 今天在与后台调接口的时候,遇到一个问题,使用AFNetworking报错,具体如下: Error Domain=com.alamofire.error.serialization.response Code=-1011 "Request failed: unsupported media type (415)" UserInfo={com.alamofire.serialization.response.error.response=<NSHTTPURLResponse:

recv() failed (104: Connection reset by peer) while reading response header from upstream

场景: 为了得到用户在线等信息,在客户端做了个ajax轮训: 于是问题就来了, 日志文件 [[email protected] web]# tail -f /data/log/nginx_error.log 2017/06/16 19:20:28 [error] 230555#0: *10228041 recv() failed (104: Connection reset by peer) while reading response header from upstream,client:

Error Domain=com.alamofire.error.serialization.response Code=-1016 &quot;Request failed: unacceptabl

在使用AFNetworking 2.0  的时候本来一切很顺畅,但是中途遇到几个比较坑的地方 这里分享一下爬坑经历,忘读者不能速爬坑! 在发送请求后,NSURLSessionDataTask一直报错 Error Domain=com.alamofire.error.serialization.response Code=-1016 "Request failed: unacceptable content-type: text/html" AFURLResponseSerializat

Error Domain=com.alamofire.error.serialization.response Code=-1016 &quot;Request failed: unacceptable content-type: text/html&quot; 的问题原因及解决方案

Error Domain=com.alamofire.error.serialization.response Code=-1016 "Request failed: unacceptable content-type: text/html",此问题的原因就是使用的第三方框架AFNetworking 接口返回值类型不确定,由于服务器人员习惯于使用html文件所以将json文件也这么写了,导致没法解析 在模型类或者网络工具类中添加这句代码就能完美解决上述问题,建议不要直接修改AFNetw

【转】SVN问题:Server sent unexpected return value (403 Forbidden) in response to OPTIONS

此方法不必删除目录重新下载:针对于第一次成功checkout,一段时间后,update 报此 403错误,我找到了解决方法:即 使用switch 重新定位svn路径,解决这个问题.(附图)ps:能svn checkout 那么你的路径就是正确的,如果大小写错误,svn是不支持checkout.如果是无意中修改了svn路径,那也可以用switch重新定位一次路径,就可以解决.   如果权限出错,提示将不会是 request for  "--"附:有时候管理员会修改版本库的"基本

[原]Error Domain=com.alamofire.error.serialization.response Code=-1016 &quot;Request failed: unacceptable con

转载请注明出处:http://blog.csdn.net/dengbin9009/article/details/43485617 在使用AFNetworking 2.0  的时候本来一切很顺畅,但是中途遇到几个比较坑的地方 这里分享一下爬坑经历,忘读者不能速爬坑! 在发送请求后,NSURLSessionDataTask一直报错 Error Domain=com.alamofire.error.serialization.response Code=-1016 "Request failed: