I have a web service, housed in a windows service, that uses the BasicHttpBinding with transport security via a self-signed certificate. The service works fine except when it resides on Windows XP Embedded Standard. With security off, it works, but not when it's on. I can update the service reference from within Visual Studio 2008, but when I attempt to make any calls to the service methods, it fails with the following exception:

Security processor was unable to find a security header in the message. This might be because the message is an unsecured fault or because there is a binding mismatch between the communicating parties. This can occur if the service is configured for security and the client is not using security.

I've verified that the calls aren't even making it as far as the user credentials validation code. In fact, WCF trace on the service side doesn't show anything at all coming through. That leads me to believe this is a WCF issue on XP Embedded, but I have tried .NET 3.0, .NET 3.0 SP1 and .NET 4.0 and none of these have resolved the problem. Another interesting tidbit that makes me think it's WCF: when I run the service on my development laptop and try the client from the XP Embedded system, I get the same error.

Here's the full client side exception and stack trace:

System.ServiceModel.Security.MessageSecurityException, System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
Security processor was unable to find a security header in the message. This might be because the message is an unsecured fault or because there is a binding mismatch between the communicating parties.   This can occur if the service is configured for security and the client is not using security.
   at System.ServiceModel.Security.TransportSecurityProtocol.VerifyIncomingMessageCore(Message& message, TimeSpan timeout)
   at System.ServiceModel.Security.TransportSecurityProtocol.VerifyIncomingMessage(Message& message, TimeSpan timeout)
   at System.ServiceModel.Security.SecurityProtocol.VerifyIncomingMessage(Message& message, TimeSpan timeout, SecurityProtocolCorrelationState[] correlationStates)
   at System.ServiceModel.Channels.SecurityChannelFactory`1.SecurityRequestChannel.ProcessReply(Message reply, SecurityProtocolCorrelationState correlationState, TimeSpan timeout) 
   at System.ServiceModel.Channels.SecurityChannelFactory`1.SecurityRequestChannel.Request(Message message, TimeSpan timeout)
   at System.ServiceModel.Dispatcher.RequestChannelBinder.Request(Message message, TimeSpan timeout)
   at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout)
   at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs)
   at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation)
   at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message)
   at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
   ... [I removed the higher level calls for brevity sake.]

Here is the applicable section from the client's app.config:

<basicHttpBinding>
<binding name="BasicHttpBinding_IData" closeTimeout="00:01:00"
    openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
    allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
    maxBufferSize="65536" maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
    messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"
    useDefaultWebProxy="true">
    <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
        maxBytesPerRead="4096" maxNameTableCharCount="16384" />
    <security mode="TransportWithMessageCredential">
        <transport clientCredentialType="None" proxyCredentialType="None"
            realm="" />
        <message clientCredentialType="UserName" algorithmSuite="Default" />
    </security>
</binding>
</basicHttpBinding>
<client>
    <endpoint address="https://191.16.115.102:8000/data/Service/dataService"
            binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IData"
            contract="Data.IData" name="BasicHttpBinding_IData" />
</client>

And here is the client side code, setup to bypass authentication of the self-signed certificate:

class Program {
    private static bool AlwaysValid(object sender, X509Certificate cert, 
        X509Chain chain, SslPolicyErrors errors) {
        return true;
    }

    static void Main(string[] args) {
        ServicePointManager.ServerCertificateValidationCallback += AlwaysValid;

        try {
            var client = new Data.DataClient();
            client.ClientCredentials.UserName.UserName = "username";
            client.ClientCredentials.UserName.Password = "password";
            client.Open();

            int state = client.GetSystemState();
            Console.WriteLine("Current state is: {0}", state);
        }
        catch (Exception ex) {
            Console.WriteLine("Error: {0}", ex.Message);
        }
        finally {
            Console.WriteLine("Press any key to continue");
            Console.ReadKey();
        }
    }
}

Any insight into this would be greatly appreciated. I can provide the C# code used to setup the service if that will be of help. Thanks in advance.

link|improve this question
1  
Since you're using a self-signed certificate in the server, have you either installed it on the embedded machine or have some code to bypass the validation (which does fail with self-signed certs)? – carlosfigueira Jun 3 '11 at 3:18
Thanks for the question. I just added our client side code to the post which shows how we are bypassing certificate authentication. – redninjatwo Jun 3 '11 at 19:48
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.