开发者

SharePoint 2010 can't find or use ListData.svc

开发者 https://www.devze.com 2022-12-26 07:09 出处:网络
Can anyone lead开发者_运维知识库 me in the direction on how to access/enabled/use the ListData.svc in SharePoint 2010? When we try to access it via our web browser, we get a 404 error. Is there a serv

Can anyone lead开发者_运维知识库 me in the direction on how to access/enabled/use the ListData.svc in SharePoint 2010? When we try to access it via our web browser, we get a 404 error. Is there a service we need to enabled, or install a component, please help?


One way for this to happen is if a list doesn't actually work (in the browser it errors when you try to open it). Another symptom would be that Sharepoint designer doesn't show anything for lists and libraries.

I got this by following along a learning book. If there is a list that relies on a feature or something that is no longer installed this might happen.

One answer is to delete the offending list(s) using powershell;

$w = Get-SPWeb "http://localhost"<br />
$w.Lists.Delete([System.Guid]$w.Lists["MyListName"].ID)
0

精彩评论

暂无评论...
验证码 换一张
取 消