A "web service" is a software system designed to support interoperable machine-to-machine interaction over the World Wide Web.
1
vote
1answer
129 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
2answers
260 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
376 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..
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
*/
...
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 ...
0
votes
0answers
197 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?
0
votes
1answer
434 views
PreSaveAction and CAMLQuery
I'm cross posting this from Stump the Panel for some more visibility from a wider developer base.
I'm trying to create a script I'll eventually adapt into a PreSaveAction, but I'm running into a ...
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 ...
3
votes
1answer
1k views
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 ...
0
votes
1answer
323 views
Using GetChanges in Sharepoint SiteData web service
I am trying to use this code to get changes in a site collection. But i don't know how to get the databaseId.
SiteData.SiteData siteData = new SiteData.SiteData();
...
1
vote
1answer
785 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 ...
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 ...
1
vote
3answers
490 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 ...
1
vote
1answer
141 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 ...
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 ...
3
votes
2answers
3k views
WCF service in SP2010
I want to use WCF service in SharePoint 2010 but have problem.
First, in mapped Sp2010 folder(ISAPI) I created newfolder/myfile.svc and in that file I put a reference to my DLL:
<%@ServiceHost
...
3
votes
2answers
940 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 ...
2
votes
1answer
240 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 ...
1
vote
1answer
998 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
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 ...
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
437 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
250 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 ...
1
vote
3answers
636 views
Deploying webservice SVC file NOT to ISAPI?
Is it possible to deploy the SVC file to something other then the ISAPI folder of SharePoint. Basically I'd like my solution to be webapplication scoped, so that the webservice cannot be called from ...
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 ...
-2
votes
3answers
332 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 ...
1
vote
1answer
668 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
2answers
187 views
401 IIS Error for SearchAdmin.asmx
I have a three server SharePoint 2007 MOSS environment where my IIS logs continue to get pounded with 401.1 and 401.2. These logs are filling up so much that they consume my HDD. I can tell from ...
0
votes
0answers
298 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 ...
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
308 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
459 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
2k views
SiteData service: some methods give Access Denied
We recently migrated some applications from SharePoint 2007 to SharePoint 2010.
The application uses the SiteData.asmx web service.
After the migration there are Access Denied errors, withtout any ...
0
votes
1answer
808 views
How to inherit parent site permissions when creating subSite using webservice
Using Sharepoint 2007 webservices from a .Net web application I create a subSite (CreateDWS method). I was originally hoping that the parent permissions would be inherited but no such luck.
...
0
votes
1answer
219 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 ...
1
vote
2answers
923 views
Sharepoint Web services: How to get permissions for a Document Library for the current user programmatically
I have to use web services to get current users permissions for document libraries in sharepoint. I tried using Permissions.asmx:"GetPermissionCollection" but it only works when the user has Full ...
1
vote
3answers
699 views
How can I display SharePoint document library items including folders on company non-SharePoint Internet site
I would like to create a document library on an internal SharePoint farm either, on wss 3.0 or SharePoint Foundation, and display the library items/folders on an Internet site which is hosted on a ...
2
votes
6answers
3k views
How to update multiple ListItems with a “Where Clause” using SPServices?
I've searched the jQuery SPServices code examples and MSDN references for an simple example how to update several ListItems using a Where-Clause.
Code for updating a single ListItem with ID = 500, ...
1
vote
1answer
982 views
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 ...
3
votes
1answer
684 views
Is it possible to create a Document Set via Web Services
Is it possible to create a SharePoint document set via Web Services only. I have been looking into List.UpdateListItem method and Copy but could not find a way to do it. Is this even possible with Web ...
1
vote
1answer
1k views
WSDL and DISCO file from webservice
Not so long ago, I've tried creating a webservice for sharepoint.
I followed this tutorial. In this tutorial you can see that you also need to
create a wsdl and disco file. I didn't do this, and ...
9
votes
3answers
2k views
How to do sharepoint people search via webservice?
I need to access search for people in SharePoint 2010 from a webservice.
I have tried this querypacket:
sb.Append("<QueryPacket xmlns='urn:Microsoft.Search.Query'>");
...
0
votes
1answer
211 views
Building an aspx form to submit data to SharePoint web service to get data into list
Can someone point me at a good step by step tutorial that will show us how to build an aspx webform that will submit data to the sharepoint webservice to get data into a sharepoint list?
We want ...
0
votes
1answer
64 views
Sharepoint 2007 UserProfileService iterate CHOICE fields?
Is there any way to view all available Choice fields for Sharepoint 2007 UserProfile Web Service?
Thanks,
Hank
1
vote
2answers
447 views
Anonymous Access to custom webservices (403 error)
I am trying to add some ajax functionality to a public facing site and have added a custom web service both into the layouts fodler and also into _vti_bin.
I can browse to the asmx file OK however am ...
1
vote
2answers
578 views
Copy a list from one SharePoint site to another using web services (no Object Model)
How can I copy a list (including fields, views or Schema) from one SharePoint web site and create an equivalent list instance on another SharePoint web site (which can be in a different site ...
6
votes
2answers
173 views
Choosing between API and web services
We are designing a system where we will have a service facade, behind this facade will be functionality to update SharePoint. For example to move an item from one list to another.
What we are ...
4
votes
1answer
251 views
How to identify the question fields when fetching survey information from the Lists web service?
I am wanting to access survey information via the Lists web service and display the questions contained in the survey.
The result contains a large number of Field nodes some of which are the ...
2
votes
3answers
2k views
Problem using viewFields to return more fields
Do I have to put a prefix of ows before retrieving fields? because I am trying to obtain additional fields and not being able to?
soapEnv += "<listName>My SP List</listName>";
...
