I have a WCF
plication running in IIS
where the server language / culture is set entirely in English.
There is no way I can change the server settings so that I can change the server's culture or language. You would need an application-level solution.
I have tried to use Web.config
the same setting that is used when you want to do this for ASP.NET
applications but apparently WCF
does not read this configuration:
//Diminuído para brevidade
<configuration>
<system.web>
<globalization culture="pt-BR" uiCulture="pt-BR" />
<system.web>
<configuration>
Has anyone ever had this problem that can help me solve it?