Tagged Questions
0
votes
1answer
18 views
Return TreeView from WCF Service in SP2010
How to return TreeView from WCF Service ? Its giving error when we set return type as TreeView
0
votes
0answers
15 views
new to WCF: when will i need to write web services in SP2010 SBS?
what are some drawbacks with sandbox solutions where one might need to write custom web services as a work around?
appreciate any advice. there is a lot out there on getting started but little on ...
0
votes
1answer
38 views
Problem when migrating SP2010 solution with WCF service to SP2013
I have a VS2010 solution that has a few projects inside. One of them is a Sharepoint 2010 project that contains a WCF service generated from the CKS template.
I needed to migrate this solution to ...
1
vote
0answers
40 views
Override a WCF Data Services CSDL
I'm dealing with an issue with a SharePoint 2010 Hosted WCF Data Services. So Keep in mind that i'm restricted to work with .NET 3.5.
In order to generate the CSDL endpoint for descripting my ...
5
votes
6answers
2k views
How to consume custom WCF service hosted in Sharepoint 2010 from outside in C#?
I've this WCF web service hosted inside a Sharepoint 2010 web application.
This service is created using the following factory:
...
3
votes
1answer
2k views
WCF Service Endpoint not found (but service operations work OK)
Here is my problem:
Does anybody know how to configure a WCF service hosted in Sharepoint to show standard WCF welcome page (the one with description and a link to wsdl)?
I want to underline that I ...
0
votes
2answers
1k views
listdata.svc authentication issue
When I visit my local SP2010 instance on Windows 7 at localhost/_vti_bin/listdata.svc I get Internet Explorer cannot display the webpage. There's no details even though I've turned off Friendly ...
1
vote
2answers
407 views
How to create an external data source based on a Web Service?
Can you please advise me "How to create an external data source based on a Web Service"? Usually WCF can be a data source, but I am not strong on WCF. Could I use the existing web service as an ...
1
vote
3answers
180 views
WCF service request limit
I have setup a WCf service in my project using this tutorial: http://msdn.microsoft.com/en-us/library/ff521581.aspx
However, I'm POSTing lots of byte[] data to the service tocreate a file. I ...
0
votes
0answers
324 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 ...
6
votes
4answers
8k views
How to submit data from repeatable table in infopath form to a sharepoint list?
I have a infopath form created from a sharepoint list content type. In this form I need to add a repeatable table to send data to another sharepoint list. So when people submit this form the original ...
1
vote
1answer
65 views
Ideal way to Secure Custom Application
We are developing an application which is going to do some CRUD operations for a couple lists and offer our customers to download files.
We are using REST services as well as Sharepoint Web Services.
...
0
votes
1answer
521 views
listdata.svc does not respond in VS
I am trying to add list.svc to a project in VS 2010. Even though, the path http://server/site/_vti_bin/listdata.svc is accessible through internet browsers, when I attempt to add service to my ...
3
votes
1answer
384 views
Get content of Multi-Line text field in Sharepoint 2010 Data Services
I am using listdata.svc service to retrieve data from Sharepoint 2010
I have a List and it has a Multi-Line text field which has append option on.
when you append text to multi-line text field, it ...
1
vote
1answer
176 views
Create an item (with Choice/User Fields) using Sharepoint Data Services
I am using Sharepoint 2010 Data Services to create items on a table.
My table has a column called Priority which has High, Medium, and Low items in it.
When I try to create an item in this table ...
0
votes
1answer
764 views
Custom WCF service in Sharepoint 2010 returns 401 Unauthorized
I've followed this guide to create and deploy a custom WCF service in Sharepoint 2010 to be consumed in a Visual Web Part using jQuery.
The WCF service's method does several things:
Make use of ...
2
votes
2answers
921 views
Custom WCF service - namespace location problem
I created a custom web service in my sharepoint using CSKDev template. Everything looks good when I'm testing my service locally. But problems came up when I decided to test it on our sample farm with ...
2
votes
2answers
1k views
Problem with WCF Web Service in SP2010
I've followed this tutorial and also this one (tried every possible combination of those) to deploy a custom WCF service in Sharepoint 2010.
But I'm not having any luck. Once the service is deployed, ...
3
votes
3answers
3k views
Posting JSON to a REST WCF endpoint in Sharepoint using cksdev
http://ranaictiu-technicalblog.blogspot.com/2011/09/sharepoint-2010-access-wcf-service-with.html?showComment=1323864446083#c4340503928745769810 has an example of using JQuery Ajax to GET or POST to ...
4
votes
4answers
1k views
Call SharePoint WCF web service protected by claims based authentication
I'm using SharePoint 2010 as a document store for a front-end .NET application. The SharePoint farm is using Claims Based Authentication. I want to call a WCF web service on the farm with a ...
0
votes
1answer
2k views
BasicHttpBinding WCF services don't get NTLM challenge when hosted on a Claims enabled server
The service is hosted in /_vti_bin, and uses SharePoint's own BasicHttpBinding service host factory (MultipleBaseAddressBasicHttpBindingServiceHostFactory). According to Microsoft's guidance, three ...
0
votes
1answer
555 views
What is the difference between 'ServiceReference' and 'WebReference'? [closed]
I have been trying to use web services to create a new survey. I initially used a ServiceReference and then tried a WebReference.
try
{
srv.Lists client = new srv.Lists();
...
0
votes
2answers
670 views
WCF service in claims-enabled SharePoint app
I have a WCF service hosted in a Claims-enabled SharePoint 2010 webapp.
Using wsHttpBinding I can get a console client to use Windows (Kerberos) authentication against the service. Within the ...
1
vote
2answers
410 views
Server-Related problem when using WCF to communicate with sharepoint
I have a simple get list method for sharepoint
/// <summary>
/// Returns a list of sharepoint lists
/// </summary>
/// <returns>A list of sharepoint ...