A "web service" is a software system designed to support interoperable machine-to-machine interaction over the World Wide Web.
0
votes
0answers
36 views
Can I restrict the FieldRefs that Lists.getListItems returns to specified ones only?
I am using the Lists web-service interface to SharePoint 2010 to get the items in a list. I want each returned row to have the ID FieldRef of the item but no other FieldRefs.
I specify a view fields ...
1
vote
1answer
92 views
Listing values for managed properties
I want to build an advanced search inside a web application. To do that, I connect to a Sharepoint 2010 instance running FAST and use the query web service.
I've tried to retrieve the search metadata ...
0
votes
1answer
253 views
How to get server datetime without postback using JSOM or services
My application page may be long time without reloading, and user changed system date and time. And I need to know datetime from server, not from client.
0
votes
1answer
352 views
The HTTP request is unauthorized with client authentication scheme 'Ntlm'. The authentication header received from the server was 'NTLM
I have created a bdc model using .net custom connector which connects to the External system via a custom built webservice. It works when I open the external lists locally from the SharePoint server ...
1
vote
1answer
249 views
Authentication using Web Services and BPOS
The SOAP web service API for SharePoint is documented by Microsoft, however there is no explicit mention of BPOS / Office 365 / Microsoft's cloud offering. Google isn't helping much, so I thought I'd ...
2
votes
1answer
59 views
can User profile synchronization be started from a web service?
I'm trying to kick off the user profile syc using a web service. Here is what i've tried :
[WebMethod]
public string runUserProfileService()
{
var message = "";
...
1
vote
0answers
75 views
SharePoint Online External Sharing Feature - Available through API?
I have a case where we would like to create a web part for use in SharePoint Online where users can request to share a site with an external vendor. We would like to automate the process of Sharing to ...
0
votes
0answers
33 views
Web serive API code calls are working fine on debug mode. But from the direct browsing the sitepage its giving error
I am facing a strange issue. It looks like silly but it took lot of time to figure it out.But still i do not find solution.
I am fetching few of few data sources(connecting to 3rd party web service) ...
0
votes
0answers
124 views
UPS Sync started from powershell script / web service
I have a web service that is kicked off from a workflow. The web service runs a powershell script that kicks off the User Profile Synchronization job.
The powershell script works perfectly if I run ...
1
vote
1answer
104 views
Windows 8 App using COM dlls of Sharepoint gives error “Cannot resolve Assembly or Windows Metadata file 'System.Web.Services.dll'”?
I have created a sample app using Windows 8 C# XAML to get site info of SharePoint 2010 using COM Dlls. I have added reference of:
C:\Program Files\Common Files\microsoft shared\SharePoint ...
0
votes
1answer
64 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
661 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
339 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
198 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
125 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
170 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
410 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
358 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
67 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
147 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
10 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
9k 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
54 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
61 views
Sharepoint Webaprt
How to call sharepoint webpart usercontrol method in AJAX
$.ajax({
type: "POST",
url: "FundUserRegister2.asmx\validateEmail",
data: "{'strMailID': '" ...
0
votes
0answers
117 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
274 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
557 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
203 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
94 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
736 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
85 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
649 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
110 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
267 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
101 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
110 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
85 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
246 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
97 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
120 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
101 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 ...





