简体   繁体   English

TCP 错误 10055:无法对套接字执行操作,因为系统缺少足够的缓冲区空间或队列已满

[英]TCP error 10055: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full

I am getting this TCP error: (10055: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full) occurred while transmitting data.我收到此 TCP 错误: (10055: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full) occurred while transmitting data.

Apparently I start getting this error if I try to transfer any file over 50 MB.显然,如果我尝试传输任何超过 50 MB 的文件,我就会开始收到此错误。 I am using WCF.我正在使用 WCF。 I have web services written in Java/Tomcat.我有用 Java/Tomcat 编写的 Web 服务。

Could it be a problem in server-side configurations?会不会是服务器端配置的问题?

The server is Tomcat, can you tell me which value to customize in that case?服务器是Tomcat,你能告诉我在那种情况下定制哪个值吗?

<bindings>
  <basicHttpBinding>
    <binding name="MyWebService1SoapHttpPortBinding" closeTimeout="00:01:00"
        openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:11:00"
        allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
        maxBufferSize="4000000" maxReceivedMessageSize="99999999"
        messageEncoding="Mtom" textEncoding="utf-8" transferMode="StreamedRequest"
        useDefaultWebProxy="true">
     <security mode="None">
        <transport clientCredentialType="None" proxyCredentialType="None"
            realm="" />
        <message clientCredentialType="UserName" algorithmSuite="Default" />
      </security>
    </binding>
  </basicHttpBinding>
</bindings>
<client>
  <endpoint address="http://[IP]/Transfer"
      binding="basicHttpBinding" bindingConfiguration="MyWebService1SoapHttpPortBinding"
      contract="Transfer" name="MyWebService1SoapHttpPort" />
</client>

If you take your error message and google it you will find many answers.如果你把你的错误信息和谷歌它,你会找到很多答案。

A TCP error (10055: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full) TCP 错误(10055:无法对套接字执行操作,因为系统缺少足够的缓冲区空间或队列已满)

Here is one.这是一个。 http://support.microsoft.com/kb/196271 http://support.microsoft.com/kb/196271

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 java.net.ConnectException:系统缺少足够的缓冲区空间或因为队列已满 - java.net.ConnectException: the system lacked sufficient buffer space or because a queue was full AKKA TCP:因为队列已满,所以放弃写操作 - AKKA TCP: Dropping write because queue is full 由于链接服务器“(null)”的OLE DB提供程序“ SQLNCLI10”无法启动分布式事务,因此无法执行该操作 - The operation could not be performed because OLE DB provider “SQLNCLI10” for linked server “(null)” was unable to begin a distributed transaction Jenkins Server无法编译,因为无法保留堆空间 - Jenkins Server cannot compile because no heap space could reserved Java-“没有可用的缓冲区空间”套接字错误原因? - Java - “no buffer space available” socket error cause? 丢弃缓冲区,因为使用Rserve时错误太大 - Discarding buffer because too big error while using Rserve 如何检测子进程是否由于其输出缓冲区已满而挂起? - How can I detect if a subprocess is hung because its output buffer is full? 无法执行“ALTER TABLE”,因为表不存在 - 'ALTER TABLE' cannot be performed because table does not exist System.getProperty无法读取jnlp-资源,因为Java 7-可能是由于未签名的JNLP文件 - System.getProperty can't read jnlp - resources since java 7 - Could this be because of an unsigned JNLP-File TCP 套接字写入错误 - TCP Socket write error
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM