使用 ASP.NET 和全球化获取 WCF 服务中的浏览器文化

发布于 2024-08-20 07:50:50 字数 381 浏览 4 评论 0原文

我有一个调用 WCF 服务的网站,我希望该服务以浏览器区域性运行。我正在 ASP.NET 兼容模式下使用该服务。到目前为止,这是有效的 - 可以使用全球化部分的culture 和uiCulture 设置WCF 服务的文化。

我的问题是enableClientBasedCulture没有显示任何效果。这些是我对该服务的全球化设置:

<globalization enableClientBasedCulture="true" culture="auto" uiCulture="auto"/>

该服务忽略这些设置并使用默认区域性。

我缺少什么吗?在这种情况下,enableClientBasedCulture 是传输区域性的错误方法吗?

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?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

似最初 2024-08-27 07:50:50

对于 WCF 服务,我使用 WS-I18N 的实现与此类似

如果我正确理解了您的配置,您将拥有:

  • 客户端上的浏览器
  • ...访问服务器上的 ASP.NET 应用程序
  • ...调用同一或不同服务器上的 WCF 服务(可能在同一服务器中)应用程序)

这将按如下方式工作:

  • 浏览器请求 ASP.NET 页面。

  • ASP.NET 应用程序将其区域性设置为客户端区域性 (enableClientBasedCulture =true)

  • ASP.NET 应用程序添加了 WS-调用 WCF Web 服务时,具有当前区域性的 I18N SOAP 标头。

  • WCF 服务解释 WS-I18N SOAP 标头,并在处理请求时设置其区域性。

    WCF 服务解释 WS-

For WCF services, I use an implementation of WS-I18N similar to this one.

If I've understood your configuration correctly, you have:

  • A browser on the client
  • ... accessing an ASP.NET application on your server
  • ... which calls a WCF service on the same or a different server (maybe in the same server application)

This will work as follows:

  • Browser requests an ASP.NET page.

  • ASP.NET appplication sets its culture to the client culture (enableClientBasedCulture =true)

  • ASP.NET application adds a WS-I18N SOAP header with the current culture when calling the WCF web service.

  • WCF service interprets the WS-I18N SOAP header, and sets its culture while processing the request.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文