我有一个奇怪的问题。我的mvc应用程序不想从wcf服务接收流。通过发送流,一切正常!我的Client.dll.config文件:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="basicHttpStream" sendTimeout="00:05:00" messageEncoding="Mtom" />
</basicHttpBinding>
</bindings>
<client>
<endpoint address="http://localhost:61174/FileTransferService.svc"
binding="basicHttpBinding" bindingConfiguration="basicHttpStream"
contract="IFileTransferService" name="basicHttpStream" />
</client>
</system.serviceModel>
</configuration>
客户端收到此消息:“ multipart / related; type =“ application / xop + xml”; start =“ http://tempuri.org/0”; boundary =“ uuid:6fc3add5-b28f-4842-a944-0bb6c79d05c6 + id = 6”;开始info =“ text / xml”“
我正在使用Autofac创建频道:
builder
.Register(c => new ChannelFactory<IFileTransferService>(
new BasicHttpBinding(),
new EndpointAddress("http://localhost:61174/FileTransferService.svc"))).InstancePerLifetimeScope();
builder.Register(c => c.Resolve<ChannelFactory<IFileTransferService>>().CreateChannel())
.As<IFileTransferService>()
.UseWcfSafeRelease();
最佳答案
我找到了决定!
问题出在autofac配置中。我需要设置绑定配置的名称。
正确的解决方案:
builder.Register(c => new ChannelFactory<IFileTransferService>(
new BasicHttpBinding("basicHttpStream"),
new EndpointAddress("http://localhost:61174/FileTransferService.svc"))).InstancePerLifetimeScope();
builder.Register(c => c.Resolve<ChannelFactory<IFileTransferService>>().CreateChannel())
.As<IFileTransferService>()
.UseWcfSafeRelease();