A "web service" is a software system designed to support interoperable machine-to-machine interaction over the World Wide Web.
0
votes
1answer
62 views
Feature activation Object Reference error with ConfigurationManager
I am writing a feature, on activation it must create an entry in a list for every entry in a document library. I am using a webservice to get to the list which is on another sharepoint site. I am ...
2
votes
2answers
647 views
Overwrite SharePoint document using CopyIntoItems service of Copy.asmx
I am doing SharePoint implementation at iPhone/iPad side. I use SOAP/REST api calls for implementing this. One of my functionalities is to upload contents to SharePoint document libraries. I use ...
0
votes
0answers
331 views
Exchange calendar overlay in SharePoint 2013
I'm trying to add Exchange 2010 calendar overlay to SharePoint 2013.
Everything is fine if i'm doing the same with Exchange 2010 and SharePoint 2010 versions. I can see my Exchange events on SP2010 ...
0
votes
1answer
188 views
User Profile Data Not AutoPopulated into SP Custom List created through InfoPath Designer 2010
I have created a custom list in sharepoint site and customzied the fields using the infopath designer 2010.I want the userprofile data to be loaded into SPList while click the new item after ...
0
votes
0answers
121 views
There was no endpoint listening - AppEventReceiver
I'm developing provider-hosted SharePoint 2013 App with Windows Azure as a backend. I created an app event receiver to fire when app is installed. When i publish my Web App (.NET MVC4) to Azure, ...
0
votes
3answers
168 views
Get the Top Level Site URL (when given a subsite URL)
I have been using this code to retrieve the URL of the top level site;
string result = String.Empty;
using (var service = GetSitesWebService())
{
result = service.GetSite(mySubSiteURL);
}
if ...
0
votes
2answers
405 views
Add users to SP Group
Is there a way to add bunch of users to a SP Group at once using web service?
http://msdn.microsoft.com/en-us/library/ms774538(v=office.12).aspx
I have several variables (varApprovers; varTeamLeads; ...
0
votes
0answers
28 views
Multiple web parts sourced from web service
I have a page within my sharepoint that will be populated by data from an external web service. There will be multiple web parts on the page, all of which will require data from the web service.
At ...
1
vote
1answer
56 views
How do I update or add field in a list item so that the value is a space character
I am building an event handler. When items in a library on one server farm are updated or deleted, I take that information and ammend a list that resides on another site. I require that one of the ...
4
votes
3answers
345 views
SharePoint 2010 Query service authentication problem
I am struggling with calling search.asmx service from asp.net page. I've created proxy class using svcutil.exe and run request using following code:
var binding = new BasicHttpBinding();
...
0
votes
1answer
66 views
Secured webservice: server did not recognize the value of http Header SOAP Action
It is possible to scan documents with some printer/scanner/copy device. Underwater there will executed some webserice which copied this scanned documents as a pdf to the sharepoint portal. The ...
1
vote
1answer
144 views
SharePoint Web Services: UpdateListItems and DeleteAttachment- What response to check for success?
We have a SharePoint that's hit quota and the admins are insisting that we will get no more quota increases. As a result, I have to move a bunch of attachments of the SharePoint server onto a file ...
3
votes
1answer
116 views
XML document in infopath Form
I have created a custom list. There are different types of columns like single line of text, number, DateTime. I want to submit data in this list using web service from Infopath form. So I have ...
0
votes
0answers
9 views
loading master datasources from webservice on application start in sharepoint
we want to load few datasources(from webservice) on application level start and use them across the application. we do not want to load for each request(E.g country list from webservice). If if it is ...
0
votes
2answers
29 views
Sorting direction: Views.GetView method
I use SharePoint Server through web-services.
To get View schema I use GetView method of Views.asmx. But it returns only FieldRefs with Names, without isAscending. How would I know if View's field ...
1
vote
5answers
8k views
how to upload file to sharepoint doc library via c# application?
I need to upload files with specific information(custom fields) into sharepoint document library via custom windows application.
I have no idea how to do it, anyone has any examples how to do it ...
0
votes
1answer
49 views
How to know if content was added to a SharePoint list or folder?
I'm using the GetListItemChangesSinceToken service in order to be notified for changes in a sharepoint list.
This works ok for deleted items since the ChangeType return Delete , but for added items, ...
1
vote
0answers
58 views
Sharepoint Webaprt
How to call sharepoint webpart usercontrol method in AJAX
$.ajax({
type: "POST",
url: "FundUserRegister2.asmx\validateEmail",
data: "{'strMailID': '" ...
0
votes
0answers
116 views
Lists.asmx GetListItems - where are end of line characters in “multiple lines of text” columns
In a custom list, if I create a "Multiple Lines of Text" column, and input this into the list:
one
two
three
When I retrieve the list items using the GetListItems method in Lists.asmx, I get this:
...
1
vote
2answers
262 views
SharePoint 2010 Webservice: URL could not be found
Always getting the following error while trying to create a spsite-object:
The Web application "http://myApplicationURL/" at could not be found.
Verify that you have typed the URL correctly. If ...
6
votes
2answers
549 views
Can I Use SharePoint's Web Services to Edit a Content Editor Web Part?
Is it possible for me to change both the properties & the HTML of a content editor web part on a publishing page using SharePoint 2010's web services? If so, would you mind pointing me in the ...
1
vote
1answer
199 views
accessing remote web services(cross domain applications) using jquery jsonp
Here is My code ..could anyone please solve this problem..I was struggling from morning..below code is not working.Actually i should get the data when we send jasondata as input..but i am getting ...
2
votes
1answer
92 views
Simple Way to Get Data from WSS 3.0 List to Excel via Web Services
Is there any simple way to get live data from a WSS 3.0 list into Excel via web services or am I going to need to write code?
I understand I can export the list data, that is far too manual.
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 ...
2
votes
1answer
81 views
How to debug sharepoint webservice?
I've followed Walkthrough: Creating a Custom ASP.NET Web Service and everything works fine.
I just want to know how to enable debugging for this web service over network. Could you help me?
0
votes
0answers
53 views
How can I manipulate sharepoint ajax calls into the pipe line?
I built a SP server code that , (I don't know why) make some trouble into the client side code.
When the page is loaded for the first time, I notice that every single item in the page, they are not ...
0
votes
1answer
637 views
UserProfile WebService understanding permission required to create user
I've currently written a proof of concept console application to add a single user to our user profile service, using the SharePoint web services
http://sharepoint/_vti_bin/userprofileservice.asmx.
...
0
votes
1answer
107 views
How to install and configure Sharepoint server 2010 in a workgroup
We are a team of 50 people and we are working in a workgroup (NO Active directory) connected via LAN. We are looking for an alternative for Google docs. I researched and found that we can use office ...
1
vote
0answers
73 views
Infopath Form with Password validation
we have a request from a client to add some type of password validation to one of their info path forms. This means that before the user could submit the form they would somehow be prompted for their ...
2
votes
1answer
261 views
How to perform rowcount with a web service in Sharepoint 2010
Pagination loses some of it's luster with no knowledge of the total number of results. Is it possible to perform a "row count" with either REST or SOAP (getListItems) without getting back all of the ...
1
vote
1answer
97 views
Update list item not retuning full item properties
I'm using SharePoint web services to update items by calling the UpdateListItems method, and the response is not providing me the attachment data of the item correctly as other services does, like ...
2
votes
2answers
108 views
How to make rest or soap queries on a large list in SP2010
I have a list which has exceeded the sp2010 list view threshold of 5000 items. Despite filtering the default view (or creating a new filtered view) with less than 5000 items, SOAP and REST queries ...
2
votes
1answer
81 views
Login into Sharepoint Site from Web service
Is this possible to login into the SharePoint site using the username and password from web service soap header?
Thanks
SR
2
votes
2answers
237 views
Share Point Client Object Model SAML token from STS
I am planning to use the share-point client object model to get the data(Lists etc) from share-point site ( Sharepoint site and mobile sites are hosted on two different machines/IIS servers).
I do ...
1
vote
1answer
62 views
Creating list from feature and modifying library content types using web services?
I am creating a CRM online plugin using the SharePoint web services. Both of these sites are hosted in Office 365, so I am stuck with SharePoint web services. I am trying to create new asset libraries ...
3
votes
1answer
54 views
Excel web access data ( graphs) is showing gray color on SharePoint 2007
I am using "Excel Web Access" Web Parts to show the excel graphs in my MOSS2007 setup. I have multiple team sites under one site-collection. Excel web access is fine for all the team sites but , its ...
1
vote
1answer
94 views
ViewFields: additional fields
I use SP web-services to fetch list items (rows). I want to be able to load all available fields for the list and pick some of them to be returned for each list item.
So I use Lists.asmx#GetList to ...
2
votes
0answers
53 views
Added a new wiki page to Sharepoint 2010 works but the pagelayout is null
The following code iterates through the pages in our wiki then tries to add a new one. It adds fine but the PageLayout is changed to null after the page is added. Is there any way to set the ...
0
votes
1answer
116 views
how to submit and query values from web service infopath2010
I have a web service that takes a string parameter.
In my infopath form I have a dropdown list that gets values from the webservice.
I have another dropdown list below it that I'm wanting to ...
1
vote
1answer
99 views
Do we have MySite details in webservice sharepoint 2010
Do we have My Site details available in web-service share point 2010.
@ David Lozzi: i want to fetch the data of "About me" using Web Service. I need to display the data in the DataView.
Is there ...
3
votes
0answers
62 views
Problems with External List and Creating New Item with Webservice
can anybody verify that inserting new Items through SharePoint Webservice Method Lists.UpdateListItems is errornous?
I always get the Error:
0x80070057Bad parameter passed to Web Server ...
1
vote
0answers
38 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 ...
1
vote
1answer
392 views
How to get JSON data from a remote service in a SharePoint 2013 app?
I am working on an App for SharePoint 2013 that is SharePoint-hosted and I can't get data from a remote web service using a jQuery.ajax call. The only two ways to get remote data documented by ...
2
votes
1answer
71 views
Steps to enable “Information Management Policy”
Kindly let me know the steps needed to enable the Information Mgmt Policy.
Is it enabled at the central admin level or at the site collection level.
thanks in advance.
1
vote
2answers
97 views
How can I create a subfolder in a documentset of a custom contenttype?
I have a custom contenttype which inherits from documentset. Further for the custom contenttype exists a custom docsethomepage.aspx (WelcomePage). Now the problem is, if I create a subfolder ...
0
votes
1answer
73 views
Cannot add local user present in SP server to SP group via UserGroup web service
I am trying to add user(s) to an existing group via the function AddUserCollectionToGroup() of webservice "Users and Groups" (Web Reference: http:///_vti_bin/usergroup.asmx).
I call this webservice ...
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 ...
1
vote
1answer
86 views
CheckOutFile() raises SoapException: “Your changes conflict with those made concurrently by another user.”
I'm trying to check out a file using the Lists web service. Here is my code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Soap = ...
0
votes
2answers
30 views
Reducing time required to login into sharepoint 2007 site
Can we reduce the time it takes after users enter their username and password into the dialog box that prompts up when we enter the website url?
For example, I try to enter a url in a sharepoint ...
1
vote
2answers
90 views
Web service endpoint error for a web part
I'm getting an error from a web part that calls a web service. I think I just need to add the endpoint XML to the web.config. Is there a better way to do this? Can I add the endpoint from Central ...





