我得到了这个异常。
由于内部错误,服务器无法处理请求。有关错误的更多信息,请打开包括exceptiondetailinfaults(来自ServiceBehaviorAttribute)或从配置行为)在服务器上命令将异常信息发送回客户端,或者打开跟踪按照microsoft.net Framework 3.0 SDK文档和检查服务器跟踪日志
我想用fluent api添加这个配置
<serviceBehaviors>
<behavior name="metadataAndDebugEnabled">
<serviceDebug
includeExceptionDetailInFaults="true"
/>
<serviceMetadata
httpGetEnabled="true"
httpGetUrl=""
/>
</behavior>
</serviceBehaviors>
有办法吗?这是我当前的配置…
Container.Register(
AllTypes.FromAssemblyNamed("My.Server.Services")
.Pick().If(type => type.GetInterfaces().Any(i => i.IsDefined(typeof(ServiceContractAttribute), true)))
.Configure(configurer => configurer.Named(configurer.Implementation.Name)
.LifeStyle.PerWcfOperation()
.AsWcfService(
new DefaultServiceModel()
.AddEndpoints(
WcfEndpoint.BoundTo(new NetTcpBinding { PortSharingEnabled = true }).At(string.Format("net.tcp://localhost:6969/{0}", configurer.Implementation.Name)),
WcfEndpoint.BoundTo(new NetNamedPipeBinding()).At(string.Format("net.pipe://localhost/{0}", configurer.Implementation.Name)))
.PublishMetadata()
)
)
.WithService.Select((type, baseTypes) => type.GetInterfaces().Where(i => i.IsDefined(typeof(ServiceContractAttribute), true))));
AFAIK你可以用你的特定选项注册一个IServiceBehavior
实现到容器和WCF集成设施将使用该实例。