我使用DTO对象从我的WCF服务传输数据。
这是DTO对象:
[DataContract]
public class MatrixDTO : BaseDTO<MatrixDTO, Matrix>
{
[DataMember]
public int MatrixID { get; set; }
[DataMember]
public int OriginStopID { get; set; }
[DataMember]
public string OriginStopCode { get; set; }
[DataMember]
public int DestinationStopID { get; set; }
[DataMember]
public string DestinationStopCode { get; set; }
[DataMember]
public int NumberOfDays { get; set; }
}
我知道我的服务已经归还了2116项。这是返回的典型信息:
如您所见,每个返回的项目中没有大量数据。但我不知道为什么我必须调整我的web.config绑定缓冲区以允许750000字节!
这是我的web.condfig:
<binding name="WSHttpBinding_IRequestService" closeTimeout="00:01:00"
openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
maxBufferPoolSize="750000" maxReceivedMessageSize="750000" messageEncoding="Text"
textEncoding="utf-8" useDefaultWebProxy="true" allowCookies="false">
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<reliableSession ordered="true" inactivityTimeout="00:10:00"
enabled="false" />
<security mode="Message">
<transport clientCredentialType="Windows" proxyCredentialType="None"
realm="" />
<message clientCredentialType="Windows" negotiateServiceCredential="true"
algorithmSuite="Default" />
</security>
</binding>
这是我的服务:
public List<MatrixDTO> GetMatrices()
{
using (var unitOfWork = UnitOfWorkFactory.Create())
{
var matrixRepository = unitOfWork.Create<Matrix>();
var matrices = matrixRepository.GetAll();
var dto = new List<MatrixDTO>();
AutoMapper.Mapper.Map(matrices, dto);
return dto;
}
}
有人可以解释一下吗?如果我将缓冲区从750000减少到400000,我收到错误:已超出传入邮件的最大邮件大小限额(400000)。要增加配额,请在相应的绑定元素上使用MaxReceivedMessageSize属性。
我跟踪WCF日志文件,我发现从我的WCF传输的数据大约是721K。如何为大约2116个少于20个字符的项目传输如此多的数据?
答案 0 :(得分:2)
来自MSDN
Windows Communication Foundation(WCF)使用序列化引擎 默认情况下称为Data Contract Serializer序列化和 反序列化数据(将数据转换为XML或从XML转换)
你的“小”对象在出现DataContractSerializer之后看起来像这样:
<?xml version="1.0" encoding="utf-8"?>
<MatrixDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SORepros.Tests">
<DestinationStopCode>A-ANT</DestinationStopCode>
<DestinationStopID>3</DestinationStopID>
<MatrixID>3</MatrixID>
<NumberOfDays>0</NumberOfDays>
<OriginStopCode>PAO</OriginStopCode>
<OriginStopID>1</OriginStopID>
</MatrixDTO>
这是344个字节。如果你有2116个对象,则为2116 * 344 = 727904个字节,即710.8 KB。