English 中文(简体)
无法改变周转基金的文化
原标题:Unable to change Culture in WCF

I m running on a windows 2008 server. I have one Web service which calls a wcf service. Within the WCF service it attempts to cast a date 20/08/2010 which fails because it thinks it in US format not Austrlaian.

到目前为止,我已:

  • On control panel change the region to English Australian under format
  • Under the Administrative tab I have also set system local to English (Austrlian)
  • within IIS7 at the default web site level I have changed Culture and UI culture under the .Net globalization.
  • I ve also done this at the Web service and WCF Nodes

我已经在网络服务和WCF 应用程序 Web. config 文件中添加了以下内容:

<globalization requestEncoding="utf-8" 
               responseEncoding="utf-8"  
               culture="en-AU" 
               uiCulture="en-AU" />

这最终改变了网络服务的文化,但周转基金服务仍然是美国的文化。

谁能告诉我,我还能试什么?

问题回答

若您不设置 aspNet 兼容性, WCF 将会忽略您的全球化配置 :

<system.serviceModel>    
   <serviceHostingEnvironment aspNetCompatibilityEnabled="true"/>
...

要使用该模式, 您的服务类别必须拥有为允许或需要设定的属性 AspNetComplatibility 要求 :

[AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]
public class ServiceClass
{
...
}

如果您想要从配置文件应用“文化与文化UI”, 此功能可以有效 。

或者您可以尝试在您的 WCF 服务代码中强制使用文化, 如果您确定它不会动态地改变的话。 例如, 在您的服务类构建器中。 请注意这不是一个最佳做法, 或许您应该使用上下文初始化器, 但这个非常简单 。

public ServiceClass()
{
    ...
    System.Threading.Thread.CurrentThread.CurrentCulture = new CultureInfo("en-AU");
    System.Threading.Thread.CurrentThread.CurrentUICulture = new CultureInfo("en-AU");
}

更多信息 :

reging-cultureinfo-on-wcf-servic-services-calls 设置-cultureinfo-on-wcf-servic-services-calls

>using-call-context-stimizers-for-cultation

问题在于为应用程序库中使用的用户设定的文化。

我找到了解决这一问题的以下方法:

  1. If the application pools uses ApplicationPoolIdentity change it to NETWORKSERVICE (unfortunatly I didn t found how to set regional settings for ApplicationPoolIdentity)
  2. Set regional settings you need (en-AU) on the current user and than copy them for the system accounts as described here.

您可以在 Global.asax.cs 文件中,在 Application_Start 文件中做到这一点:

using System.Threading;
using System.Globalization;

public class Global : HttpApplication
{
    protected void Application_Start(object sender, EventArgs e)
    {
        CultureInfo.DefaultThreadCurrentCulture = CultureInfo.DefaultThreadCurrentUICulture = new CultureInfo("en-AU");
    }
}




相关问题
WCF DataMember Serializing questions

Ok, so I was part way through the long winded process of creating DTOs for sending my model over the wire and I don t feel like I m going down the right route. My issue is that most of the entities ...

Access WCF service on same server

I have a .NET website with a WCF service. How do I access the current operations context of my service? One possible work around is to just make a call to the service within the app...but that seems ...

WCF binding error

So I got into work early today and got the latest from source control. When I try to launch our ASP.NET application, I get this exception: "The binding at system.serviceModel/bindings/wsHttpBinding ...

The service operation requires a transaction to be flowed

I am facing strange issue with our WCF service. The same code was working fine until recently we added more OperationContracts(Web Methods). We have common 3 tier architecture. DAL (WCF) BLL Web ...

热门标签