1
vote
0answers
14 views

How to filter web service results based on multiple parameters? [migrated]

To filter on multiple parameter I use this web service call : http://mysite/sites/test/_vti_bin/listdata.svc/Values?$filter=param1%20eq%20'test1'%20and%20param2%20eq%20'test2' But how can I use ...
0
votes
1answer
8 views

How to amend output of List web service call

I've configured a 'List' and one of its types is 'Hyperlink or Picture'. As I'm populating this List type I'm required to enter the 'Web address' & 'description' : When I access this List ...
0
votes
0answers
18 views

Searching in entire SharePoint site using REST API URI

I am making a WPF application in which I require to retrieve the search results from the SharePoint site. The search should display results from the entire site including the subsites for that item. ...
2
votes
0answers
34 views

Updating a wiki page with the REST API

How do you correctly update a SharePoint 2013 wiki page using the REST API? Three basic capabilities I am interested in: Reading an existing page (content only) Updating an existing page Creating a ...
1
vote
0answers
42 views

Find all lists that look up a Contacts list

I have a Contacts list in my site collection, and it is used in lookup columns by multiple other lists. Is there an easy way to get all the lists that have a lookup column pointing to the Contacts ...
3
votes
1answer
138 views

Updating a Property w/ 2013 REST Api

I have a sharepoint hosted app that is succesfully able to add Read and Create files on the Host site (using the REST Api and SP.RequestExecutor). Now I am trying to figure out how to update ...
2
votes
1answer
411 views

How can I authenticate SharePoint REST calls from JavaScript?

I have been banging my head against a wall on this problem for weeks now Warning and Disclaimer .. I have very little JavaScript experience when it comes to REST / Web Services I have an on ...
11
votes
2answers
287 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 ...
2
votes
1answer
293 views

How to perform rowcount with a web service in Sharepoint 2010

Pagination loses some of it's luster with no knowledge of the total number of results. Is it possible to perform a "row count" with either REST or SOAP (getListItems) without getting back all of the ...
1
vote
1answer
197 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 ...
1
vote
1answer
824 views

Custom Rest Service in Sharepoint 2010

I'm currently developing a custom wcf rest webservice on sharepoint 2010, but I keep getting the message Endpoint not configured Im deploying the webservice on a _ISAPI solution folder. Here's the ...
6
votes
2answers
1k views

Phone-Gap Claims Authentication against SharePoint in Office365 fails, probably because of HTTPOnly flag in cookie

I am coding an application using Phone Gap to connect to a Sharepoint in Office365. I need to use the REST services in Sharepoint Office 365 to add items to a list, but before that I need to ...
1
vote
2answers
400 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 ...
1
vote
0answers
259 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 ...
0
votes
1answer
282 views

How to identify change to the “Modified By”, “Created By” , “CheckOutTo” column title through REST API

I am an iOS developer. In one of my application, I need to make modified by, created by and checkoutto user's information along with the document/list item information from SharePoint server through ...
1
vote
0answers
530 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. ...