Questions tagged [web-services]

A "web service" is a software system designed to support interoperable machine-to-machine interaction over the World Wide Web.

Web services can either be defined using Web Services Description Language (WSDL) and consumed via Simple Object Access Protocol (SOAP), or follow a Representational State Transfer (REST) model.

Useful Links:

  1. SharePoint 2010 Web Services.
  2. Web Service Guidelines.
972 questions
5
votes
1 answer

How to call GetChanges() method from SiteData.asmx web service (SharePoint 2010)?

I'm trying to run GetChanges method (sitedata.asmx) from a Java application. However I can't figure out the correct parameters I must pass. This is for SharePoint 2010. By checking on the service protocol specification, I saw this are the required…
Javier Méndez
  • 248
  • 1
  • 8
5
votes
2 answers

How can I have a web part that calls a web services that is on a different domain?

I want to create a web part that calls a .asmx from another domain. I know I can't do this client side only due to cross site scripting restrictions that browsers enforce, so it must be server side. How should I do this with a web part? Is it…
Shane
  • 842
  • 1
  • 10
  • 22
4
votes
4 answers

SharePoint webservice vs. custom webservice

I'm wondering what experienced SharePoint developer would advise me to use if I want to access SharePoint data remote, the SharePoint built in webservices or a custom webservice. What are the pros and cons for these both options?
Flo
  • 1,330
  • 12
  • 22
4
votes
1 answer

List getListItems WebService SOAP to return folder contents not working

It's not working for me, I tried everything and I am really confused: This is my soap request :
verklixt
  • 187
  • 1
  • 7
4
votes
3 answers

404 Not Found with custom web service

I created an ASP.Net Web service in SharePoint 2010 by completing the tutorial in the following address: http://msdn.microsoft.com/en-us/library/ms464040.aspx When I navigate to the service address which is located under ISAPI folder, I get a 404. I…
Élodie Petit
  • 1,267
  • 3
  • 22
  • 35
4
votes
1 answer

Problems with web service GetList. List not found!

I'm have some trouble using the GetList web service. It does work sometimes but not at the start of the day!?! Here is my code: public static void ListSurveys(string serverName) { EndpointAddress endpoint = new…
paul
  • 1,013
  • 3
  • 17
  • 33
4
votes
2 answers

Custom Sharepoint webservice requires web.config to be “touched” regularly

We have a site running on MOSS 2007 which makes calls to custom web service asmx methods on the same domain from the client. At first everything works fine, but after a bit of time has passed the service will start to fail…
Gavin
  • 153
  • 1
  • 8
4
votes
2 answers

GetListItems queryoptions - How to filter?

I have following code but I need to make sure that CurrentStatus=true is part of the code so I dont get the entire list. Is it possible?
Brittany Lean
  • 41
  • 1
  • 2
3
votes
1 answer

Biztalk 2010 not posting messages to Sharepoint 2010 with claims based authentication

I'm using the Windows SharePoint Services adapter and I'm receiving the following error message on the BizTalk 2010 Server: The Windows SharePoint Services adapter runtime does not have permissions to invoke the adapter Web service. In order to fix…
Dips
3
votes
1 answer

HTTP401 when access sharepoint web service using Java HttpClient

the code are as follows: private static EndpointReference targetEPR = new EndpointReference( "http://sharepoint01/_vti_bin/lists.asmx"); ServiceClient sender = new ServiceClient(); List authSchema = new ArrayList();…
user10510
  • 31
  • 1
  • 2
3
votes
1 answer

Sharepoint Webservice 401 error

I have asked this question on stackoverflow as well but no answer. I'm trying to call sharepoint webservices in a C# console application. The code works fine when I use my local system's WSS as target application but it doesn't work with another…
Mujtaba Hassan
  • 171
  • 1
  • 3
3
votes
1 answer

How do I detect whether a URL resides in SharePoint?

I am looking to replicate the same SharePoint integration behaviour as seen in MS Office e.g. in Word, if you open a file stored in SharePoint it will automatically detect whether the file is currently checked out, or whether it requires checking…
James
  • 133
  • 4
3
votes
1 answer

How to generate the timeZoneInformation parameter to a CreateWorkspace method of the Meetings.asmx web service ... in javascript

I want to call the CreateWorkspace method of the Meetings web service to create a subsite but I find no simple information on how to create the timeZoneInformation parameter in javascript which according to the WSDL is not optional. there are…
None
2
votes
2 answers

Create ASMX Webservice on Sharepoint 2013

How can I write an ASMX Webservice on SharePoint 2013, for example http://Sample/myWebService.asmx??
user3506959
  • 21
  • 1
  • 1
  • 2
2
votes
1 answer

Create a list instance of a custom list using the web service api (Lists.asmx)

I've been looking a lot at the AddList and AddListFromFeature methods (http://msdn.microsoft.com/en-us/library/lists.lists.addlistfromfeature(v=office.12).aspx) but can't really see if it is possible to create a list instance from a custom list…
Eric Herlitz
  • 523
  • 7
  • 21
1
2 3 4 5