I've got a WCF service using a basicHttpBinding with transport security, and have a CustomUserNamePasswordValidator configured.

Originally this was a self-hosted service on Windows, and everything was working just peachy. I had to tweak some things to get it to work under mono, but everything seems fine there now as well, as long as I'm running it self-hosted.

Now I'm trying to get this to run under Apache with mod_mono (specifically using mod_mono_server4), and noticed I was always getting HTTP 401 errors. I discovered that my CustomUserNamePasswordValidator is being called, however the username and password are always passed as null. Logically that triggers an exception in my validator which causes the 401. Through Fiddler I'm able to see that the client is definitely passing the Authentication header (additionally, my client is configured for preauth, so there's no 401 roundtrip).

I'm on mono 2.10.5, and see the same things on a SuSE Linux server and Mac OS X (both are 2.10.5).

What's really weird is that the service most definitely has access to the Authentication header. If I short-circuit the CustomUserNamePasswordValidator so that I can make a service operation call, I can access the Authentication header from the current WebOperationContext.

I'm testing under xsp4 now, and unsurprisingly see the same symptoms as I did under Apache.

Service config:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
    <system.web>
        <customErrors mode="Off" />
    </system.web>

    <system.serviceModel>
        <services>
            <service name="Test.MyServiceBehavior" behaviorConfiguration="MyServiceBehavior">
                <host>
                    <baseAddresses>
                        <!--<add baseAddress="http://localhost:8080" />-->
                    </baseAddresses>
                </host>

                <endpoint address="ServiceTest/"
                          contract="Test.MyServiceContract"
                          binding="basicHttpBinding"
                          bindingConfiguration="BasicHttpBinding" />
            </service>
        </services>

        <bindings>
            <basicHttpBinding>
                <binding name="BasicHttpBinding">
                    <security mode="TransportCredentialOnly">
                        <transport clientCredentialType="Basic" />
                    </security>
                </binding>
        </bindings>

        <behaviors>
            <serviceBehaviors>
                <behavior name="MyServiceBehavior">
                    <serviceDebug includeExceptionDetailInFaults="true" />
                    <serviceMetadata httpGetEnabled="true" />
                    <serviceCredentials>
                        <userNameAuthentication userNamePasswordValidationMode="Custom"
                            customUserNamePasswordValidatorType="Test.CustomValidator, Test" />
                    </serviceCredentials>
                </behavior>
            </serviceBehaviors>
        </behaviors>

    </system.serviceModel>
</configuration>

(The baseAddress is commented out when I host under xsp or apache, but used when I self-host)

link|improve this question
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.