0

我已经构建了一个 WCF Web 应用程序,将它的方法公开到启用的方法中

[OperationContract]
[WebGet]
string getStatistics();


[OperationContract]
[WebGet]
string getVenues(string BrandName, int limit);

并编辑了配置文件:

<endpoint address="json" binding="webHttpBinding"  contract="foursquare2RDF.IVenue2rdf" behaviorConfiguration="restBehavior"/>

并在服务行为中:

 <endpointBehaviors>
<behavior name="restBehavior">
          <enableWebScript/>
        </behavior>
      </endpointBehaviors>

我在 IIS 上托管了该服务,它在浏览器上运行良好,所以当你点击时:

http://localhost:83/venue2rdf.svc/json/getStatistics

它返回了一个很好的结果

问题是如果显示这些错误,我无法使用这个宁静的服务:

OPTIONS http://localhost:83/venue2rdf.svc/json/getStatistics?{'venues':'100'} 405 (Method Not Allowed) 

XMLHttpRequest cannot load [http://localhost:83/venue2rdf.svc/json/getStatistics][1]. Origin null is not allowed by Access-Control-Allow-Origin.

我正在使用该代码来调用服务:

$.ajax({
    type: "get",
    url: statisticsURL,
    data: "{}",
    contentType: "application/json; charset=utf-8",
    dataType: "json",
    success: function (msg) {
        eval("var x = " + msg.d);

        console.log(x);
    }
});

到目前为止我达到了什么:

  • 我尝试用 $.getjson 替换 $.ajax,就像在类似问题中所述,错误 405 被删除,第二个错误刚刚出现
  • 我找到了一个名为 Ajax enabled WCF service project 的东西,但我仍然不想迁移到新项目中
  • 我知道有类似的问题,但都不适合,显示我的不同错误
4

2 回答 2

1

您可能应该将其设为JSONP请求,因为您要跨域,遇到相同的源策略

$.getJSON(stastatisticsURL + "?callback=?", success: function (msg) {
    eval("var x = " + msg.d);

    console.log(x);
});

?callback=?部分 tels jquery 使其成为 JSONP。我建议您阅读 JSONP 是什么,因为它不是灵丹妙药。要在 WCF 服务上启用 JSONP,请阅读:

C# WCF Web API + JSONP

于 2012-07-27T09:09:17.507 回答
0

为了让您使用 jQuery 使用跨域 WCF REST 服务,请在下面找到一个示例:

我的服务如下所示:

    [ServiceContract]
    public interface IJSONPService
    {
        [OperationContract]
        [WebGet]
        string GetDate();

        [OperationContract]
        [WebInvoke]
        string PostData(string name);
    }

现在我的上述服务的配置条目如下所示:

<services>
    <service name="Service.JSONPService">
        <endpoint address="" binding="webHttpBinding" behaviorConfiguration="json" bindingConfiguration="defaultRestJsonp" contract="Service.IJSONPService">
        </endpoint>
    </service>
</services>
<behaviors>
      <endpointBehaviors>
         <behavior name="json">
             <enableWebScript />
         </behavior>
   </behaviors>
</endpointBehaviors>
<webHttpBinding>
        <binding name="defaultRestJsonp" crossDomainScriptAccessEnabled="true">
          <readerQuotas maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxDepth="64" maxNameTableCharCount="2147483647" />
          <security mode="None" />
        </binding>
</webHttpBinding>

您需要注意crossDomainScriptAccessEnabled绑定元素“defaultRestJsonp”中的属性,该属性负责确定针对 JSONP 的请求并适当地将响应转换为来自作为查询字符串的 URL 的回调方法

现在从您的页面执行以下调用上述 WCF REST 服务的 JavaScript,如下所示:

function TestingWCFRestWithJsonp() {
                $.ajax({
                    url: "http://domain.com/Service/JSONPService.svc/GetDate",
                    dataType: "jsonp",
                    type: "GET",
                    timeout: 10000,
                    jsonpCallback: "MyCallback",
                    success: function (data, textStatus, jqXHR) {
                        alert(data);
                    },
                    error: function (jqXHR, textStatus, errorThrown) {alert('error');

                    },
                    complete: function (jqXHR, textStatus) {alert('complete');
                    }
                });
            }
            function MyCallback(data) {
                alert(data);
            }

查看 $.ajax 方法调用中的 jsonpCallback 属性。

对 Web 服务调用的原始请求如下所示:

GET http://localhost/Service/JSONPService.svc/GetDate?callback=MyCallback&_=1343391683779 HTTP/1.1
Host: localhost
Connection: keep-alive

WCF REST 服务的原始响应如下所示:

HTTP/1.1 200 OK
Cache-Control: private
Content-Type: application/x-javascript
Date: Fri, 27 Jul 2012 12:21:23 GMT
Content-Length: 27

MyCallback("27\/07\/2012");

注意:当您执行 JSONP 请求时,您的 $.ajax 方法错误/完成/成功不会被调用。

于 2012-07-27T12:23:54.960 回答