Tagged Questions
1
vote
0answers
30 views
How to filter web service results based on multiple parameters?
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
0answers
60 views
Use SharePoint web service to return a People/Group column value
When I call a SharePoint web service in a .Net ASPX website, the people column returns null (Instance of the object not found).
using System;
using System.Collections.Generic;
using System.Linq;
...
0
votes
0answers
33 views
sharepoint add page programmatically using services
i m trying to transfer pages from my sp 2010 site to sp2013 site.. using sharepoint services..
when i save changes i get error..
context.AddToPages(page);
context.SetSaveStream(page, ...
0
votes
0answers
24 views
How to store external RSS feeds as documents into SharePoint Document library? [closed]
I want to save BBC RSS feed data in the form of documents within my SharePoint website.I want to save data on daily bases.So that if i search for any news after a month i find that inside those stored ...
-1
votes
0answers
44 views
Is there a way to restrict WebService access to SharePoint 2010 while allowing the users to access the site with browsers [closed]
I need to block the web-service calls (soap calls) to SharePoint Site. However, at the same time I need to allow the users to access the site with browsers.
I know one option is "Use Remote ...
1
vote
1answer
38 views
2 methods in Web Service, one works, one returns with 400 Bad Request
I have two methods in an svc web service, one takes no arguments and returns all Active Directory users. This one works. I have another method that receives a user ID and returns all of the groups ...
0
votes
1answer
516 views
Exception of type 'Microsoft.SharePoint.SoapServer.SoapServerException' was thrown. Only on CAML Query
I am working with sharepoint webservice. If I call the GetListItems method with "Query" parameter as null. It works. But if I provide a Caml query as parameter its getting an exception like "Exception ...
0
votes
1answer
51 views
List column is deleted when updating Content Type using web services
I have a large collection of sites that all use the copies of the same content type. I'm using the web service and calling the updateContentType methods from either webs.asmx or lists.asmx. Code ...
0
votes
1answer
67 views
401 error accessing web service
I am trying to consume a web service from SharePoint Foundation 2010 using asp.net.
I am getting a 401 unauthorised error.
I know this means missing or invalid credentials but I can't seem to find ...
0
votes
0answers
114 views
SharePoint 2010 Web Service (.Net 4.0) does not able to Load the Namespace Administration and WebControls
We are migrating Web Service(.Net 3.5) - Sharepoint 2007 (Microsoft.SharePoint 12.0 DLL) to WebService (.Net 4.0) - SharePoint 2010 (Microsoft.Sharepoint 14.0 DLL). There is an Error in Loading 2 ...
0
votes
1answer
26 views
How do I disable ECMAScript _vit_bin/services for Sharepoint 2010
Currently we are not using the ECMAScript client OM and we don't want to for our implementation. Is there a way to turn it off globally?
0
votes
1answer
296 views
Placeholder URL for SharePoint web services
tl;dr
Below is the app.config from my class library which simplifies file manipulation in SharePoint. The endpoint addresses point at an arbitrary site but are set dynamically to the correct site ...
0
votes
0answers
391 views
Insert, Update and Delete item in sharepoint list using web service
I have a list called detail myContacts. I want to add contacts here and their detail information. I can easily insert item in SharePoint list. But i can update item using the column linked to edit ...
0
votes
2answers
129 views
Failure by working with webservice
for days I testing a little Application, which shall be read a SPList by webservice and show the content. Unfortunately it don“t work. I get always the same failure:
...
0
votes
0answers
73 views
Need to deserialize SharePointPortalServer/UserProfileService returned XML to type PropertyData[]
The xml below was obtained by calling GetUserProfileByName(username) in SharePointPortalServer/UserProfileService (without using web services reference) and reading the returned stream. responseStream ...