0

我正在使用带有 jsonp 端点的 ria 服务。当我在服务文件中调用我的方法时,它在 ie 和 firefox 中运行良好,但有时在 chrome 中运行,有时我得到“经过身份验证的服务不支持跨域 javascript 回调”。错误。即使我不使用经过身份验证的服务。

这是一段关于我所拥有的代码。

jsonp服务

    [EnableClientAccess(RequiresSecureEndpoint = false)]
    public class PPolJsonService : LinqToEntitiesDomainService<PPolAdvEntities>
    {

       public IQueryable<QuestionEntity> GetCompleteSurvey()
       {
        ............
       }
    }

javascript代码

 function (data) {
                        var Params = {};
                        Params.type = 'GET';
                        Params.url = 'http://127.0.0.1:81/PPolSilverlight-Web-Services-PPolJsonService.svc/JSONP/GetCompleteSurvey;
                        Params.dataType = 'jsonp';

                        Params.data = { data:'somedata'};
                        Params.success = function (data) { };
                        Params.jsonpCallback = "ppolv2"
                        $.ajax(Params);
                    });

在 web.config 文件中,我的设置是<authentication mode="Forms">

如果我设置<authentication mode="None">了,我就能够解决 chrome 的所有问题。但是应用程序的其余部分需要身份验证。所以这就是为什么我必须将它用作“mode=Forms”。如您所见,我的服务不使用身份验证,

为什么我会收到此错误,是否有任何解决方案?

笔记:

顺便说一句,我在 web.config 中还有其他设置,例如

  <webHttpEndpoint>
        <standardEndpoint crossDomainScriptAccessEnabled="true"
                          automaticFormatSelectionEnabled="true"/>
      </webHttpEndpoint>

或clientaccesspolicy.xml中的这些

<?xml version="1.0" encoding="utf-8"?>
<access-policy>
  <cross-domain-access>
    <policy>
      <allow-from http-request-headers="*">
        <domain uri="http://*"/>
        <domain uri="https://*" />
      </allow-from>
      <grant-to>
        <resource path="/" include-subpaths="true"/>
      </grant-to>
    </policy>
  </cross-domain-access>
</access-policy>

但他们都没有帮助我。

提前致谢。

4

2 回答 2

1

您好尝试将此行添加到您的 web.config 文件中。它支持跨域 Ajax 请求。

<?xml version="1.0" encoding="utf-8"?>
<configuration>
 <system.webServer>
   <httpProtocol>
     <customHeaders>
       <add name="Access-Control-Allow-Origin" value="*" />
     </customHeaders>
   </httpProtocol>
 </system.webServer>
</configuration>
于 2012-06-13T11:25:48.463 回答
0

我没有对其进行足够的测试,但我想我找到了解决方案。

如果您在应用程序中使用安全端点,并且您不需要为 jsonp 服务使用安全端点,

你可以添加 requireSSL="true" 在

 <authentication mode="Forms">
  <forms name=".PPolSilverlight_ASPXAUTH" timeout="2880" requireSSL="true" />
</authentication>

使用这一小段代码,您的不安全 jsonp 服务将无需身份验证即可工作。

于 2012-06-13T14:46:51.457 回答