WCF工具和配置服务端点绑定

时间:2012-06-22 13:00:08

标签: c# wcf castle-windsor wcf-binding

我在配置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向我显示生成的配置是:

enter image description here

有人能指出我解决TransferMode保持缓冲的原因吗? 实际上我想为这个端点配置许多其他设置,但我想我会保持简单的开始。

提前感谢您的帮助!

0 个答案:

没有答案