Tagged Questions
1
vote
2answers
35 views
Listdata.svc via REST refuses to return data
I'm trying to pull down some list data from listdata.svc using the standard method as documented in the msdn:
var listUrl = 'http://development.contoso.com/_vti_bin/ListData.svc/Contacts';
$.ajax({
...
1
vote
1answer
23 views
Sharepoint 2010: Approve Blogpost with REST
Is there a way to automatically approve Blogposts I created with a .Net Webrequest/REST?
I can currently add posts to the Blogs list just fine, but I can't get them to be approved/be published ...
2
votes
1answer
141 views
REST API update a muli-value user field
I have created a custom list and added a multi-value user field (no groups) called AssignedTo to the list's definition. Using the SharePoint interface I added an item with a value for Title and ...
11
votes
2answers
264 views
REST and CSOM much slower than List Web Service
lists.asmx = Web Service
listdata.svc = REST API
client.svc = CSOM
Using JavaScript to query a list using the 3 available APIs, I'm finding lists.asmx responds much faster than listdata.svc or ...
1
vote
1answer
189 views
ListData.svc with complex filters, Internet Explorer, 400 Bad HTTP request,
I have a problem understanding how ListData.svc can be debugged using IE8 and IE9.
I have a URL that looks like this:
...
1
vote
2answers
203 views
Which one is strongly typed the SharePoint Client Object Model or REST
I was researching about the SharePoint Client Object Model and REST but I am confused which one is strongly typed.
2
votes
1answer
350 views
REST API Filter by multilookup property
Having an Activities list with a column called Engineer of type lookup that allow multiple values. How to build a call to listdata.svc in order to get only activities that are asigned to an Engineer ...
1
vote
2answers
380 views
Creating new items containing lookup field with listdata.svc and json
I'm calling listdata.svc with xmlhttprequest and POST to pass json. The new item is being created, but a new item is being created on the lookup list when I do, even though I am passing an existing ...