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" />
这最终改变了网络服务的文化,但周转基金服务仍然是美国的文化。
谁能告诉我,我还能试什么?