如何避免 jquery ajax 中使用 wcf 服务的跨域策略?

发布于 2024-11-02 05:30:57 字数 78 浏览 3 评论 0原文

如何避免 jquery ajax 中使用 wcf 服务的跨域策略?

我需要在 web.config 中对跨域策略进行哪些更改?

how to avoid cross domain policy in jquery ajax for consuming wcf service??

What chages do i need to do in web.config for cross domain policy?

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

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

发布评论

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

评论(3

那请放手 2024-11-09 05:30:57

如果您希望从 javascript 到 WCF 进行跨域调用,则必须使用 JSONP。要向 WCF 添加 JSONP 支持,您必须在 WebHttpBinding 中定义它。配置应如下所示:

<bindings>
  <webHttpBinding>
    <binding name="crossDomain" crossDomainScriptAccessEnabled="true" />
  </webHttpBinding>
</binding>
<behaviors>
  <endpointBehavior>
    <behavior name="restBehavior">
      <webHttp />
    </behavior>
  </endpointBehavior>
</behaviors>
<services>
  <service name="...">
    <endpoint address="" binding="webHttpBinding" bindingConfiguration="crossDomain"
              contract="..." behaviorConfigurations="restBehavior" /> 
  </service>
</services>

对于 jQuery 部分,请检查例如 本文

If you want cross domain calls from javascript to WCF you must use JSONP. To add JSONP support to WCF you must define it in WebHttpBinding. The configuration should look like:

<bindings>
  <webHttpBinding>
    <binding name="crossDomain" crossDomainScriptAccessEnabled="true" />
  </webHttpBinding>
</binding>
<behaviors>
  <endpointBehavior>
    <behavior name="restBehavior">
      <webHttp />
    </behavior>
  </endpointBehavior>
</behaviors>
<services>
  <service name="...">
    <endpoint address="" binding="webHttpBinding" bindingConfiguration="crossDomain"
              contract="..." behaviorConfigurations="restBehavior" /> 
  </service>
</services>

For jQuery part check for example this article.

时光无声 2024-11-09 05:30:57

我使用 JQuery (1.5.1) $.ajax CrossDomain 设置设置为 true 使其工作。

我还不明白的是,为什么在 WCF (.NET4) 服务上使用属性 [ScriptMethod(ResponseFormat = ResponseFormat.Json)] 时,在没有跨域设置(到 web.config 和 $. ajax),当使用属性 [WebGet(ResponseFormat = WebMessageFormat.Json)] 时,它需要 webconfig 和 $.ajax 调用中的跨域设置。如果我在没有跨域设置的情况下使用 WebGet 属性,我将收到“不允许使用方法”错误。

使用WCF代码:

[OperationContract]
[WebGet(ResponseFormat = WebMessageFormat.Json)] // requires crossdomain settings 
//[ScriptMethod(ResponseFormat = ResponseFormat.Json)] // no crossdomain settings required
public string GetNumber(string id)
{
    return "query response on id: " + id;
}

有什么想法吗?

I got it to work using the JQuery (1.5.1) $.ajax CrossDomain setting set to true.

What I don't understand yet is why it is that when using the attribute [ScriptMethod(ResponseFormat = ResponseFormat.Json)] on the WCF (.NET4) service, the call succeeds without the crossdomain setting (to web.config and $.ajax) and when using the attribute [WebGet(ResponseFormat = WebMessageFormat.Json)] it requires the crossdomain settings in webconfig and $.ajax call. If I use WebGet attribute without the crossdomain settings I'll get an "Method Not Allowed" error.

WCF code is used:

[OperationContract]
[WebGet(ResponseFormat = WebMessageFormat.Json)] // requires crossdomain settings 
//[ScriptMethod(ResponseFormat = ResponseFormat.Json)] // no crossdomain settings required
public string GetNumber(string id)
{
    return "query response on id: " + id;
}

any ideas?

[旋木] 2024-11-09 05:30:57

chrome/firefox 不会让我这样做,直到我

HttpContext.Current.Response.AddHeader("Access-Control-Allow-Origin", "*");

在通话中明确设置

chrome/firefox wouldn't let me do this until i explicitly set

HttpContext.Current.Response.AddHeader("Access-Control-Allow-Origin", "*");

in my calls

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