context = new TestingDataContext(new Uri(SPContext.Current.Web.Url + "/_vti_bin/listdata.svc"));
我们正在获取经典模式身份验证SharePoint
站点的上下文,但是对于FBA
(基于声明的身份验证)配置,我们无法访问列表并导致超时错误。
试图传递默认凭据:
context.Credentials = System.Net.CredentialCache.DefaultCredentials;
访问列表时会出现错误。
答案 0 :(得分:1)
根据网络的说法,REST服务不具备匿名访问权限。有一些讨论,您可以使用Secure Store Service解决它,但我没有具体细节。