我有一个 WCF 服务,我在本地主机上公开以进行开发,在 Azure 上公开以进行生产。使用 app.config 中的相同配置,它可以在 localhost 而不是 Azure 上运行。
这是 WCF 配置:
<binding name="BasicHttpBinding_ICentralSales" maxBufferSize="2147483647" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647" transferMode="Streamed" sendTimeout="00:15:00" receiveTimeout="00:15:00">
<readerQuotas maxDepth="20000000" maxStringContentLength="2147483647" maxArrayLength="21504000" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />
<security mode="None" />
</binding>
在我的 WPF 客户端中,我有这个配置:
<binding name="BasicHttpBinding_ICentralSales" closeTimeout="00:10:00"
openTimeout="00:10:00" sendTimeout="00:55:00" maxBufferSize="2147483647"
maxReceivedMessageSize="2147483647" maxBufferPoolSize="2147483647" />
有没有人已经面临这个问题?
谢谢你,马特