I am using an external SOAP service (of which I cannot have changed in any way) with a MutualCertificateDuplexBindingElement:
MessageSecurityVersion securityVersion = MessageSecurityVersion.WSSecurity10WSTrustFebruary2005WSSecureConversationFebruary2005WSSecurityPolicy11BasicSecurityProfile10;
var certificateSignature = SecurityBindingElement.CreateMutualCertificateDuplexBindingElement(securityVersion);
...
Elements.Add(certificateSignature);
Doing so, I am getting a huge and unsgined SOAPFault response. While processing this response, I am getting an exception:
QuotaExceededException: The size necessary to buffer the XML content exceeded the buffer quota.
The relevant part of the stacktrace:
...
System.Xml.XmlDictionaryWriter.WriteNode(XmlDictionaryReader reader, Boolean defattr)
System.ServiceModel.Channels.ReceivedFault.CreateFault11(XmlDictionaryReader reader, Int32 maxBufferSize)
System.ServiceModel.Channels.MessageFault.CreateFault(Message message, Int32 maxBufferSize)
System.ServiceModel.Channels.SecurityChannelFactory`1.ClientSecurityChannel`1.TryGetSecurityFaultException(Message faultMessage, Exception& faultException)
System.ServiceModel.Channels.SecurityChannelFactory`1.SecurityRequestChannel.ProcessReply(Message reply, SecurityProtocolCorrelationState correlationState, TimeSpan timeout)
System.ServiceModel.Channels.SecurityChannelFactory`1.SecurityRequestChannel.Request(Message message, TimeSpan timeout)
System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout)
System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation)
System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message)
Exception rethrown at [0]:
System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
While most QuotaExceededException can be solved by setting something like:
Elements.Add(new TextMessageEncodingBindingElement
{
ReaderQuotas = XmlDictionaryReaderQuotas.Max,
});
Elements.Find<TransportBindingElement>().MaxReceivedMessageSize = int.MaxValue;
... this does not seem to be the case here, as the method TryGetSecurityFaultException seems to have a hardcoded constant (if I can trust Reflactor):
MessageFault fault = MessageFault.CreateFault(faultMessage, 0x4000);
Any suggestions for what I am doing wrong or a workaround where I am still able to collect the content of the SOAP fault? I see two options: Somehow avoid validating signatures on SOAPFaults (How, Í have no idear) or catch the exception and somehow dig out the original message causing the exception (How, I have no idear either!).
Thanks, Martin Lorensen