我在配置WCF的服务端时遇到了一些问题 - > MVC3解决方案。
配置如下:
.Register(
Component.For<IFileDownloadService>()
.ImplementedBy<FileDownloadService>()
.Named("FileDownloadService")
.AsWcfService(new DefaultServiceModel()
.Hosted()
.PublishMetadata(x => x.EnableHttpGet())
.AddEndpoints(
WcfEndpoint.BoundTo(new BasicHttpBinding
{
TransferMode = TransferMode.Streamed
})
)
))
然而,WCFTestClient向我显示生成的配置是:
有人能指出我解决TransferMode保持缓冲的原因吗? 实际上我想为这个端点配置许多其他设置,但我想我会保持简单的开始。
提前感谢您的帮助!