NetTcpBinding - InsufficientMemoryException无法分配67108864字节的托管内存缓冲区。可用内存量可能很低

时间:2016-01-20 06:31:09

标签: c# .net wcf service wcf-binding

我有WCF服务器(使用nettcpbinding)监听客户端。客户端连接后,它会开始将对象列表作为一条消息发送给连接的客户端。

此错误" InsufficientMemoryException无法分配67108864字节的托管内存缓冲区。可用内存量可能很低"当我们发送更多对象时显示。

绑定代码

 NetTcpBinding myBinding = ServiceHelper.GetBinding(serviceSecurity);
                myBinding.ListenBacklog = 100;
                myBinding.MaxConnections = Int32.MaxValue;
                myBinding.MaxBufferSize = Int32.MaxValue;
                myBinding.SendTimeout = new TimeSpan(0,0,6);
                myBinding.ReceiveTimeout = new TimeSpan(0, 2, 30);

感谢您的帮助。

0 个答案:

没有答案