Castle Windsor在处理抛出MessageSecurityException

时间:2015-04-28 11:21:26

标签: c# wcf castle-windsor

我有一个ASP.NET MVC应用程序,其中包含一个使用WCF服务的控制器。 Web应用程序由WCF服务使用WIF和安全令牌服务(STS)进行身份验证。这要求WCF服务在其web.config(< system.identityModel>)中具有STS证书指纹。当调用WCF服务方法并使用错误的指纹配置WCF服务时,服务方法会抛出异常:

System.AggregateException: One or more errors occurred. ---> System.ServiceModel.Security.MessageSecurityException: An unsecured or incorrectly secured fault was received from the other party. See the inner FaultException for the fault code and detail. ---> System.ServiceModel.FaultException: An error occurred when processing the security tokens in the message.     --- End of inner exception stack trace ---     at 
System.Runtime.AsyncResult.End[TAsyncResult](IAsyncResult result)     at 
System.ServiceModel.Channels.ServiceChannel.SendAsyncResult.End(SendAsyncResult result)     at 
System.ServiceModel.Channels.ServiceChannel.EndCall(String action, Object[] outs, IAsyncResult result)     at 
System.ServiceModel.Channels.ServiceChannelProxy.TaskCreator.<>c__DisplayClass5`1.<CreateGenericTask>b__4(IAsyncResult asyncResult)     at 
System.Threading.Tasks.TaskFactory`1.FromAsyncCoreLogic(IAsyncResult iar, Func`2 endFunction, Action`1 endAction, Task`1 promise, Boolean requiresSynchronization)     --- End of inner exception stack trace ---     at 
System.Threading.Tasks.Task`1.GetResultCore(Boolean waitCompletionNotification)     at 
Helper.GetMessages(String func) in xxx  ---> (Inner Exception #0) System.ServiceModel.Security.MessageSecurityException: An unsecured or incorrectly secured fault was received from the other party. See the inner FaultException for the fault code and detail. ---> System.ServiceModel.FaultException: An error occurred when processing the security tokens in the message.     --- End of inner exception stack trace ---     at 
System.Runtime.AsyncResult.End[TAsyncResult](IAsyncResult result)     at 
System.ServiceModel.Channels.ServiceChannel.SendAsyncResult.End(SendAsyncResult result)     at 
System.ServiceModel.Channels.ServiceChannel.EndCall(String action, Object[] outs, IAsyncResult result)     at 
System.ServiceModel.Channels.ServiceChannelProxy.TaskCreator.<>c__DisplayClass5`1.<CreateGenericTask>b__4(IAsyncResult asyncResult)     at 
System.Threading.Tasks.TaskFactory`1.FromAsyncCoreLogic(IAsyncResult iar, Func`2 endFunction, Action`1 endAction, Task`1 promise, Boolean requiresSynchronization)<--- 

在MVC控制器中,我们捕获服务抛出的任何异常,因为我们想要返回响应,即使服务有问题:

try {
    service.Hello();
}
catch (Exception e) {
    log.Error("Service error", e);
}

控制器方法返回ViewResult,Castle Windsor开始清理控制器及其依赖项。但是,当Windsor处理抛出MessageSecurityException的WCF客户端时,我得到了以下异常:

[CommunicationObjectFaultedException: The communication object, System.ServiceModel.Channels.ServiceChannel, cannot be used for communication because it is in the Faulted state.]
System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg) +14579646
System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type) +622
System.IDisposable.Dispose() +0
Castle.MicroKernel.LifecycleConcerns.DisposalConcern.Apply(ComponentModel model, Object component) in c:\Downloads\Windsor-3.3\Windsor-3.3\src\Castle.Windsor\MicroKernel\LifecycleConcerns\DisposalConcern.cs:47
Castle.MicroKernel.ComponentActivator.AbstractComponentActivator.ApplyConcerns(IEnumerable`1 steps, Object instance) in c:\Downloads\Windsor-3.3\Windsor-3.3\src\Castle.Windsor\MicroKernel\ComponentActivator\AbstractComponentActivator.cs:120
Castle.MicroKernel.ComponentActivator.AbstractComponentActivator.ApplyDecommissionConcerns(Object instance) in c:\Downloads\Windsor-3.3\Windsor-3.3\src\Castle.Windsor\MicroKernel\ComponentActivator\AbstractComponentActivator.cs:132
Castle.Facilities.WcfIntegration.WcfClientActivator.ApplyDecommissionConcerns(Object instance) in c:\Downloads\Windsor-3.3\Windsor-3.3\src\Castle.Facilities.WcfIntegration\Client\WcfClientActivator.cs:64
Castle.MicroKernel.ComponentActivator.DefaultComponentActivator.InternalDestroy(Object instance) in c:\Downloads\Windsor-3.3\Windsor-3.3\src\Castle.Windsor\MicroKernel\ComponentActivator\DefaultComponentActivator.cs:74
Castle.MicroKernel.ComponentActivator.AbstractComponentActivator.Destroy(Object instance) in c:\Downloads\Windsor-3.3\Windsor-3.3\src\Castle.Windsor\MicroKernel\ComponentActivator\AbstractComponentActivator.cs:87
Castle.MicroKernel.Lifestyle.AbstractLifestyleManager.Release(Object instance) in c:\Downloads\Windsor-3.3\Windsor-3.3\src\Castle.Windsor\MicroKernel\Lifestyle\AbstractLifestyleManager.cs:64
Castle.MicroKernel.Handlers.DefaultHandler.ReleaseCore(Burden burden) in c:\Downloads\Windsor-3.3\Windsor-3.3\src\Castle.Windsor\MicroKernel\Handlers\DefaultHandler.cs:65
Castle.MicroKernel.Handlers.AbstractHandler.Release(Burden burden) in c:\Downloads\Windsor-3.3\Windsor-3.3\src\Castle.Windsor\MicroKernel\Handlers\AbstractHandler.cs:170
Castle.MicroKernel.Burden.Release() in c:\Downloads\Windsor-3.3\Windsor-3.3\src\Castle.Windsor\MicroKernel\Burden.cs:119
Castle.MicroKernel.Lifestyle.Scoped.ScopeCache.<Dispose>b__0(Burden b) in c:\Downloads\Windsor-3.3\Windsor-3.3\src\Castle.Windsor\MicroKernel\Lifestyle\Scoped\ScopeCache.cs:65
Castle.Core.Internal.CollectionExtensions.ForEach(IEnumerable`1 items, Action`1 action) in d:\work\16de7b8c88ab14af\src\Castle.Core\Core\Internal\CollectionExtensions.cs:44
Castle.MicroKernel.Lifestyle.Scoped.ScopeCache.Dispose() in c:\Downloads\Windsor-3.3\Windsor-3.3\src\Castle.Windsor\MicroKernel\Lifestyle\Scoped\ScopeCache.cs:65
Castle.MicroKernel.Lifestyle.Scoped.DefaultLifetimeScope.Dispose() in c:\Downloads\Windsor-3.3\Windsor-3.3\src\Castle.Windsor\MicroKernel\Lifestyle\Scoped\DefaultLifetimeScope.cs:38
Castle.MicroKernel.Lifestyle.PerWebRequestLifestyleModule.Application_EndRequest(Object sender, EventArgs e) in c:\Downloads\Windsor-3.3\Windsor-3.3\src\Castle.Windsor\MicroKernel\Lifestyle\PerWebRequestLifestyleModule.cs:47
System.Web.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +92
System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +165

抛出异常的代码是:

AbstractComponentActivator.ApplyConcerns(IEnumerable<IDecommissionConcern> steps, object instance)
DisposalConcern.Apply(ComponentModel model, object component) 

调试时我发现了以下不同之处:

当service.Hello();被调用,frameowrk抛出MessageSecurityException 然后object component = {System.ServiceModel.Channels.ServiceChannelProxy}DisposalConcern.Apply(ComponentModel model, object component) 这会抛出CommunicationObjectFaultedException

当service.Hello();被调用,我抛出新的异常(&#34; test&#34;) 然后object component = {System.Runtime.Remoting.Proxies.__TransparentProxy}DisposalConcern.Apply(ComponentModel model, object component) 这不会引发异常

该服务在Web应用程序中注册如下:

public class MeldingssystemServiceInstaller : IWindsorInstaller
{
    public void Install(IWindsorContainer container, IConfigurationStore store)
    {
        container.Register(Component.For<IMeldingssystemService>()
            .AsWcfClient(new DefaultClientModel(WcfEndpoint.FromConfiguration("MeldingssystemService")))
        .LifeStyle.PerWebRequest);
    }
}

我正在试图弄清楚这是Castle Windsor中的错误/限制还是配置错误。

3 个答案:

答案 0 :(得分:1)

您可以在OnDestroy事件中添加abort语句:

public class MeldingssystemServiceInstaller : IWindsorInstaller
{
    public void Install(IWindsorContainer container, IConfigurationStore store)
    {
        container.Register(Component.For<IMeldingssystemService>()
            .AsWcfClient(new DefaultClientModel(WcfEndpoint.FromConfiguration("MeldingssystemService")))
            .LifeStyle.PerWebRequest.OnDestroy(service =>
            {
                var channel = (IClientChannel) service;

                if (channel.State == CommunicationState.Faulted)
                    channel.Abort();
            }));
    }
}

答案 1 :(得分:0)

尝试添加中止声明:

try {
    service.Hello();
}
catch (Exception e) {
    service.abort();    
    log.Error("Service error", e);   
}

请参阅以下内容:http://www.codeproject.com/Articles/74129/The-Proper-Use-and-Disposal-of-WCF-Channels-or-Com

祝你好运,

Marwijn。

答案 2 :(得分:0)

错误的根本原因是城堡windsor wcf设施中的回归错误。该错误已在nuget包Castle.WcfIntegrationFacility的4.1.0版中得到修复。

清理语句的顺序已更改,有关详细信息,请参阅https://github.com/castleproject/Windsor/issues/104