0

我的服务工作正常,现在我得到这个异常并且服务停止工作:

System.ServiceModel.FaultException:处理消息中的安全令牌时出错

搜索互联网显示一些代码问题,但我的代码正在工作,现在它只是停止工作,不知道是什么问题..

堆栈跟踪

执行过程中抛出异常:System.ServiceModel.Security.MessageSecurityException:从对方收到不安全或安全错误。

有关故障代码和详细信息,请参阅内部 FaultException。---> System.ServiceModel.FaultException:处理消息中的安全令牌时出错。

--- 内部异常堆栈跟踪结束 ---

服务器堆栈跟踪:在 System.ServiceModel.Channels.SecurityChannelFactory1.SecurityRequestChannel.ProcessReply(Message reply, SecurityProtocolCorrelationState correlationState, TimeSpan timeout) at System.ServiceModel.Channels.SecurityChannelFactory1.System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout) at System.ServiceModel.SecurityRequestChannel.Request(Message message, TimeSpan timeout)。 Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation) at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message) 在 [0] 处重新抛出异常:在 System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg) 在 System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type) 在 NewWcfService.IExternalStringService.Reverse(String value) 在 WcfWebClient._Default.Page_Load(Object sender, EventArgs e) 在 C 中:\projects\ACSSamples\Microsoft\WebServices\Acs2UsernameBindingSample\WcfWebClient\Default.aspx.cs: 55 行

4

1 回答 1

1

它主要是与您的访问控制服务相关的安全问题,而不是特定于平台的问题,因为没有代码更改。

您最近是否更改了任何导致此服务中断的证书?检查您的证书或任何依赖于安全性的东西,因为如果您没有更改任何代码,那么安全设置的更改可能是导致问题的原因。

于 2012-06-07T01:50:34.983 回答