A "web service" is a software system designed to support interoperable machine-to-machine interaction over the World Wide Web.
2
votes
1answer
373 views
How could I know the exact reason behind Check In/Check Out failure?
I am an iOS developer and implementing SharePoint integration in iPhone through one of my application. From the API information I got that there are 3 APIs related to Check In/Check Out/Undo Check Out ...
0
votes
1answer
150 views
How could I know the exact reason behind Check In/Check Out failure?
I am an iOS developer and implementing SharePoint integration in iPhone through one of my application. From the API information I got that there are 3 APIs related to Check In/Check Out/Undo Check Out ...
1
vote
2answers
91 views
Updating the Default View via Webservices
I am trying to find a good sample code on updating the fields that are displayed within the default view.
The current code creates a list on the fly and then adds the needed columns.
Once the ...
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 ...
5
votes
3answers
802 views
SharePoint Web Serivces Access Denied; Only From VS 2010
After not getting much help on the last question, I decided to blow away the VM and re-create it as I already lost a week on this issue. And of course still issues, btu a little different.
I am ...
1
vote
1answer
1k views
Programmatically update Recurrence parameters for calendar entry
I'm building a Sharepoint service, which allows users to book company's resources, such as conference rooms, etc. The back-end is implemented with standard Calendar list, the front-end uses JavaScript ...
6
votes
3answers
577 views
SharePoint Web service requests take 30-60 secs initially
When trying to access SharePoint WSS 3.0 server using the web services API, the software service we are developing will hang anywhere between 30-60 seconds when making any call (pick anyone of them, ...
1
vote
1answer
73 views
Creating Sites in MOSS 2007 Using Web Services
Can you create a SharePoint site (assuming the Site Collection was already there) with the SharePoint Web Services? I've been thumbing through the API reference on MSDN but didn't seem to get ...
2
votes
2answers
586 views
Does Sharepoint offer live editing?
I'm hoping someone can alleviate my confusion.
I'm trying to find out if any Sharepoint versions offer something like Google Docs' live-editing capability. What I mean is: Two people can edit a ...
2
votes
1answer
529 views
Can I use asp.net web service in Sharepoint project?
I had create .asmx webservice in asp.net projects. my doubts that is this able to use this webservice in sharepoint project?
suppose this is my code
source: function (request, response) {
...
1
vote
1answer
583 views
Uploading multiple files to custom lists through Web Service
What is the best way to upload multiple files through web service without causing the timeout?
I am using the following code:
ListProxy.Lists newListProxy = new ListProxy.Lists();
...
1
vote
2answers
259 views
Is there a difference between SharePoint 2003 standard web services and SharePoint 2007-2010 ones?
I implemented a tool for getting documents (Word files, PDFs, etc..) from a Document library in SharePoint 2007-2010 using SiteData.asmx and other standard web services basically.
Now I´m facing the ...
1
vote
1answer
371 views
How to upload a file and create a link in another library using SPServices?
How do I upload a document (PDF) to a library and create a link to it in another library?
I need to do this using SPServices specifically..
2
votes
1answer
4k views
Creating Custom Web Service on Sharepoint 2010
I'm new to web services and i've been trying to create a custom one using this tutorial:
http://msdn.microsoft.com/en-us/library/ms464040.aspx
I've named my service as Files and created a new method ...
4
votes
2answers
158 views
Using the Web Services to determine if a user has a document checked out
(Note I need a solution for this that works on 2007 and 2010)
We have a desktop application that we are adding Sharepoint Check in and out functionality to using the Web Services.
One issue we are ...
0
votes
0answers
196 views
404 Not Found error with Nintex web service [closed]
I can't access Nintex web service. I get 404 with the url: http://sharepoint/_vti_bin/NintexWorkflow/Worfklow.asmx
I can't see anything in the logs about the error.
Any ideas?
1
vote
1answer
680 views
List getListItems WebService SOAP to return folder contents not working
Its not working for me, I tried everything and Iam really confused:
This is my soap request :
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope ...
0
votes
2answers
211 views
Passing correct url but method still returns false… Any idea?
I verified url (http://portal.inhouse.dev/sites/promo/libray1/test.txt) but following method always returns false. It should return true per MS. Please suggest. I even tried it with ...
1
vote
1answer
784 views
Error code 0x81020073 when calling UpdateListItems of Lists.asmx web service
I am executing code in a program I have been working on that uploads files to sharepoint. I am uploading the file with HTTP PUT, then using the path to update the attributes. For a day or two I've ...
5
votes
2answers
4k views
How to fix credential issue?
I tried both default credential and user/pass but keep getting 401 unauthorized error. What's the fix?
Here is the error I am getting ....
New-WebServiceProxy : The request failed with HTTP status ...
1
vote
2answers
425 views
Getting the ID of a newly uploaded document
How to obtain the ID of a newly uploaded document using web services (c#, .net)? Is the following the best way to obtain Doc ID?
private string sGetID(string sURL, string sListGUID, string sFileName)
...
1
vote
1answer
70 views
Add or Update to sharepoint with .net code
Is there any ready-made code (c#, .net) to add/update documents in SP Library? I am sure using web services. Can anyone please suggest? Also, is there a way to get the Doc ID back after an item has ...
0
votes
2answers
1k views
Connecting to InfoPath with UserGroup web service - “Unable to create a schema”
Using: InfoPath 2003, SharePoint 2007 WSS
I've tried Googling the problem and got nothing helpful, and this is my first time trying to use a web service to connect InfoPath and SharePoint, so bear ...
1
vote
1answer
1k views
Setting User column value via Client Object Model
I'm trying and failing to set the value of a User column via the SharePoint client model:
int userID;
string displayName;
/*
Look up userID and displayName from Web Service here
*/
...
3
votes
1answer
104 views
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 ...
0
votes
3answers
701 views
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 ...
1
vote
1answer
127 views
Creating an asp.net page that calls on a SharePoint 2010 Service Application
I am trying to create a simple web page with three text boxes. I then pass the three values to a client for a SharePoint service application. However, when it calls on the SharePoint service ...
1
vote
1answer
140 views
Is it possible to find out what template was used to create a site using the SOAP service?
I am connecting to a SharePoint 2010 server(which I don't control) using the SOAP service (.asmx)
I need a list of sites which were created using a certain template.
Is it possible to create a CAML ...
2
votes
1answer
239 views
Content DB log files growing out of control when using Lists.asmx to update three fields on a library
I've created a console application to migrate files from legacy SharePoint servers to a new server utilizing SharePoint Foundation 2010. I'm using Lists.asmx to get list information and update three ...
3
votes
2answers
938 views
Web Service UpdateListItems User Permissions
I'm trying to do an AJAX SOAP call to the Lists web service, specifically UpdateListItems. The query isn't malformed, and is working appropriately when using a user with full permissions. When a ...
9
votes
2answers
3k views
How do I connect with SharePoint Online Web Services in order to access list and taxonomy data?
I am using the SharePoint SOAP web services to try collecting list and taxonomy data from a site on SharePoint Online.
The following code works nicely when connected to a standalone SharePoint farm. ...
1
vote
1answer
990 views
How do I set document metadata after upload via web services?
I am reading through this post Upload a file to SharePoint through the built-in web services where upload is done in WSS. I am using SP 2010. Is there a piece of code already posted here that will add ...
1
vote
1answer
766 views
WebHost failed to process a request for Lists web service
I get the following error when I try to access the SharePoint 2010 List web service in a web application. This error happens only when I have Kerberos as the authentication provider. If I change to ...
3
votes
1answer
406 views
SharePoint 2010 asmx Web Service throws 401 after 10 hours
We've recently upgraded our existing SharePoint 2007 site to SharePoint 2010. We have a couple of internal and external sites that make use of the asmx web services provided by SharePoint.
We ...
1
vote
1answer
1k views
Get meta data from a previous version of a document through webservice in MOSS 2007
Is it possible to get metadata information from a previous version of a document in a document library using a SharePoint webservice?
I know I can use the _vti_bin/Versions.asmx webservice to get ...
2
votes
1answer
732 views
Anonymous access to WSDL of custom web service
I developed and deployed a custom web service to "layouts" folder.
I can call it without problems from a .net application with NTLM validation.
But I need call it from a java application with ...
0
votes
1answer
178 views
How does Microsoft pull off metadata exchange with ListData.svc
I thought RESTful services could not expose metadata (at least not in a way I could create a service reference against and generate a proxy). Either I am incorrect in thinking this, or Microsoft ...
3
votes
2answers
434 views
Restricting access to certain out of the box SharePoint web services
As the title explains, I want to restrict access for certain web services in the SharePoint environment. Is this possible and how do you pull it off? Not finding much to support that it is. I do ...
0
votes
2answers
249 views
How can I get permissions of a document in sharepoint 2007 using web service?
I want to get permissions of a document in sharepoint 2007 using web service and export them to an excel file.
The result should be something like the following content:
document -> click "edit ...
0
votes
2answers
88 views
AddUserCollectionToGroup Web Service
I'm using MOSS 2007. Does anyone know if there is a limit to the number of user names that can be passed to the AddUserCollectionToGroup web service? I have around 300 and was wondering if I should ...
1
vote
1answer
667 views
401 Unauthorized when calling webservice provided by DUET Enterprise on Sharepoint 2010 [closed]
I'm trying to get the delivered content of DUET Enterprise working. (DUET Enterprise in the Sharepoint-SAP integration product developed jointly by Microsoft and SAP)
Web services on both the SAP ...
-2
votes
3answers
331 views
How can I update a list without having my code run on the SharePoint server?
I can reference Microsoft.SharePoint.dll in Visual Studio in order to compile my C# or VB.NET code. I've found that I will still need to copy the compiled code to the server and deploy it there.
From ...
0
votes
1answer
2k views
How to get Highest ID using CAML and JQuery
I am using a web service and am trying to return the highest ID number from the Posts list with viewname {B9212691-1AF1-41AF-9DA7-6073ADDB091B}. So far I have the following.
<script ...
1
vote
1answer
306 views
Getting the userinfo from specific sharepoint site using sharepoint web service
I am using /_vti_bin/usergroup.asmx service and getting the userinfo using GetAllUserCollectionFromWeb(). But i need to pass in the specific site and need to get the users info of that site alone. ...
1
vote
2answers
1k views
Get document id after uploading it to SharePoint using the same web service
Does any one knows how to get the document id after uploading it to sharepoint using a single web service? So by using one call i can upload the document and get it's id.
I looked at Copy.asmx web ...
1
vote
2answers
453 views
Creating item using SharePoint web services
I need to create an item in a SharePoint list using Lists.UpdateListItems web service.
I have created a batch method and populate it with these fields.
<Field ...
1
vote
3answers
485 views
Add to Lookup Column Values During Form Lifespan
Has anyone ever successfully added a new item to a list which is used as the source for a lookup column while using an EditForm (or NewForm, same mechanism) and been able to save the form successfully ...
0
votes
1answer
217 views
ContentTypes and Site Column migration in SharePoint using web service [closed]
This question was originally asked by Tom Tucker here: http://stackoverflow.com/users/668950/tom
I am trying to migrate a content type from a sharepoint site in one environment to another. For this ...
0
votes
1answer
733 views
SP2010 Web Services: GetUserInfo and FBA?
I'm trying to use the SharePoint 2010 SOAP web services to get/update User information, which seems to work OK when the user comes from Active Directory, but not when trying to find a user in Forms ...
0
votes
0answers
293 views
Sharepoint 2010 Search Webservice ERROR_SERVER after search re-index
I have an app that was correctly consuming sharepoint search data via the search webservice ( /_vti_bin/search.asmx?WSDL ). There was an issue with the search results that required me to do a full ...

