The REST (Representational State Transfer) interface in Microsoft SharePoint Foundation 2010 provides access to lists and libraries as a relational data service. A core concept of any RESTful interface is the resource, and in SharePoint Foundation, lists and items are represented as HTTP resources ...
-1
votes
1answer
406 views
Consume a WCF REST Service with webHttpBinding in Sharepoint 2010 WebPart
I have developed a custom WCF REST service with webHttpBinding in VS2010 and trying to consume in SharePoint 2010 WebPart developed in VS2010. I don't know how to do the settings. Please help!
Please ...
1
vote
1answer
233 views
Using the value from a lookup column, obtained with REST, as a dataview parameter
I was wondering if you could help me with something.
I have a list called Site Configuration. One of the columns is called Package Level (Package_x0020_Level) and is a lookup that looks at the ...
1
vote
2answers
205 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 ...
0
votes
2answers
1k views
Public facing website with SharePoint 2013
I'm just getting started with Sharepoint and my assignment is to create a public facing website based on Sharepoint 2013.
If I get it correctly, the new way of buildning things in 2013 is the app ...
1
vote
1answer
190 views
Windows Phone 8 with Sharepoint 2010 Connectivity
How we connect Windows Phone 8 to Sharepoint 2010 and get list data using web services
I found connectivity for Windows phone 7 with Sharepoint 2010 but not found with windows phone 8.Is it same for ...
0
votes
1answer
822 views
Help with parameters, REST and listdata.svc
I'm calling listdata.svc a few times with different URL's depending in what is selected, I have some issues with the parameters/filters.
First URL:
var listUrl = siteUrl + ...
0
votes
3answers
691 views
REST service $filter Date column
Using the REST services, I'm trying to filter by the Created column, which is a Date data type. When trying to $filter on that column, I passed in the same date format that comes back in the JSON ...
0
votes
1answer
557 views
How to get PublishingRollupImage for page in Page library with REST and jQuery?
I have a repeater in a user control and I databind it in code behind like so:
var items = list.Items.Cast<SPListItem>()
.OrderByDescending(a => ...
1
vote
0answers
47 views
REST services - Flag to force PUT and POST to return the record instead of nothing?
I'm updating a record in a list via a PUT to the '_vti_bin/listdata.svc' service.
When I initially POST the data, I get the list item I posted back from SharePoint, with a timestamp, etc.
When I PUT ...
2
votes
1answer
70 views
Deleting a SharePoint User Profile remotely
Can anyone tell me how to delete a SharePoint user profile remotely? I don't see a way to do this using SharePoint Web Services or User Profile Services. The following code works fine when run on ...
0
votes
0answers
81 views
Download documents form document library using the REST API
How to download a document form a document library using the REST Api off SharePoint?
0
votes
2answers
761 views
Retrieving a lookup Value from a List using jquery and REST
I would like to get the lookup Value from a List item depending on it's Title.
My List is set up similar to the following example:
ColumnA : a | b | c
lookupB : 1 | 1 | 2
The jquery:
function ...
0
votes
0answers
178 views
Authenticating to sharepoint with kerberos from a java HttpClient
I have a linux\java6 client that will authenticate to sharepoint2010 with NTLM and then send HTTP REST web services using Apache Commons HttpClient.
I can do this with NTLM , but I want to use the ...
1
vote
2answers
444 views
Accessing list data from another site collection or web application using REST services?
I have a list (Links template) of URLs that is on a site collection and I was wondering if it is possible to include this list as a jQuery megamenu on another site - ideally another web application on ...
1
vote
2answers
381 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 ...
0
votes
0answers
321 views
Cannot set SharePoint Multi-Choice field values using WCF RESTful client
I'm having very specific trouble using the SharePoint 2010 REST interfaces with a multi-choice column (e.g. a set of checkboxes). Single choice columns work fine (e.g. radio buttons or dropdown, and ...
2
votes
0answers
198 views
Order field not available in a ListData.svc query
I want to query a links list using ListData.svc and have this ordered, using the query string $orderby, by Sharepoint's own internal order field.
By internal order field I specifically mean the field ...
1
vote
0answers
258 views
Rules for Transforming List Column Names into XML Element Names
I am using the ListData.svc service to pull data from several lists. Many of the column names have punctuation and spaces, so their names are transformed as they're rendered as Atom in the ListData ...
1
vote
1answer
195 views
Use REST to sum a column?
I want to retrieve items from a SharePoint list using REST, and then sum one of the columns. I'm brand new to REST, and didn't see a way to do this on MSDN. Is it possible to sum a column in a REST ...
1
vote
0answers
523 views
How do I call SharePoint 2010 REST API from C# if that site has claims based auth?
For example, this site is secured via Claims Auth (It has both FBA and Windows Auth). My guess my issue is security. I ultimately want to use the credentials that my IIS app pool is running under. ...
5
votes
2answers
1k views
How to avoid _metadata in a REST response (listData.svc)
I am pulling data from a SharePoint list with listData.svc, and _metadata represent more than half of the response content.
Is there a way to return list fields only, without the metadata?
Below an ...
3
votes
2answers
3k views
How to get lookup value only via REST (listdata.svc)
I am trying to retrieve a list of items including lookup fields via listdata.svc. My lookup points to a list of companies which has the following fields: Title, Address, Phone.
By default, listdata ...
2
votes
1answer
404 views
Sharepoint Online and custom BDC models
Hello I hope somebody can help.
I need to access an external timesheet from Sharepoint Online.
The Timesheet site uses a REST api to provide the data, not a WCF or traditional ASPX webservice. So ...
