I have a website calling a WCF service and I want the service to run with the browser culture. I am using the service in ASP.NET compatibility mode. This is working so far - It is possible to set the culture of the WCF service using the culture and uiCulture of the globalization section.
My problem is that enableClientBasedCulture shows no effect. These are my globalization settings for the service:
<globalization enableClientBasedCulture="true" culture="auto" uiCulture="auto"/>
The service ignores these settings and uses the default culture.
Something I am missing? Is enableClientBasedCulture the wrong way to transfer the culture in this scenario?