Windows 2008 R2使用WCF应用程序减慢网络数据传输速度

时间:2013-02-28 19:28:43

标签: windows wcf iis-7 windows-server-2008-r2

我们在Windows 2008R2下的IIS 7上运行WCF服务。我们需要将文件从本地计算机传输到另一台计算机中的网络共享路径。我们在.NET中使用普通的Copy / Move api进行文件复制/移动。它工作正常,但转移太慢。我们的开发机器非常快。

我们检查SVN等其他应用,也太慢了。似乎TCP传输速度很慢。

对此有什么想法吗?

1 个答案:

答案 0 :(得分:0)

终于找到了答案。

我们执行了以下命令并且工作正常

(a)netsh interface tcp set global chimney = disabled

(b)netsh interface tcp set global rss = disabled

(c)netsh interface tcp set global autotuning = disabled

其他链接:

http://www.novell.com/support/kb/doc.php?id=7002232

http://support.microsoft.com/kb/2675785