A "web service" is a software system designed to support interoperable machine-to-machine interaction over the World Wide Web.
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 ...
1
vote
2answers
211 views
Lists.GetListItems Query for items with a specific author
I am trying to query a list in SharePoint 2007 to get the items of the list that were created by a specified user. Here is my CAML:
<Query>
<Where>
<Eq>
...
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
2answers
113 views
develop sharepoint webservice and deploy it to sharepoint site
Recently I am developing a webservice which is used to upload document to a SharePoint doc library. I have deploy it to the _vti_bin directory and now I can successfully call it to upload a document. ...
0
votes
2answers
1k views
listdata.svc authentication issue
When I visit my local SP2010 instance on Windows 7 at localhost/_vti_bin/listdata.svc I get Internet Explorer cannot display the webpage. There's no details even though I've turned off Friendly ...
0
votes
0answers
54 views
Web Services and InfoPath - Advance Troubleshooting
I am experiencing a problem with InfoPath 2010 when when querying for information retrieved by a web service.
When ever creating a new form from scratch, setting up our data connections and ...
0
votes
0answers
36 views
Construct web service request dynamically based on URL and consumers
I'm designing a web page and web parts for showing some data that comes from a web service.
The web service is, for the purposes of this question, analogous to a SQL database. The request is to be ...
1
vote
1answer
930 views
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();
...
0
votes
1answer
104 views
Custom Poll Web Part
I am creating a custom poll webpart using the following two lists:
1) QuestionList : Stores questions of poll (QuestionId,QuestionDate,Votes,TakenBy)
2) OptionsList: Stores option pertaining to a ...
1
vote
1answer
135 views
SharePoint & Protocol-Relative URL's
A common web development trick is to use protocol-relative URL's, i.e. we drop the scheme part of the URL, e.g. http, and based on the scheme of the page the URL's take will use that scheme.
However ...
0
votes
0answers
67 views
When connecting to outlook, custom forms are missing
At work here we use a custom sharepoint. As in, we can add dates to the calender, but there are other fields we fill in on the webpage. Fields such as company name, time or arrival, departure, ...
0
votes
1answer
388 views
Taxonomy.asmx returns sometimes 'No credentials are available in the security package'
I've created a WCF WebService which connects to the Taxonomy service from SharePoint with a 'Service Reference' in Visual Studio 2010 to the ...
1
vote
1answer
170 views
How to Upload/Replace a Template in a Document Library
In my organization we have many Sharepoint sites for different products that basically mirror each other in structure. We have a document library in each of these sites with a custom template. The ...
0
votes
2answers
234 views
Using the AddList Method of Lists Webservice
I am trying to add a list using the addlist method of Lists webservice. I am not sure how actually I have to get that done.
But I have tried this taking MSDN as reference
1 Added the Lists ...
1
vote
2answers
2k views
How can I pass credentials to SharePoint 2010 people service?
I need to do a simple request against the People service in SharePoint 2010. Please tell me how I can do that. The following piece doesn't work.
public void Test()
{
var client = new ...
0
votes
1answer
19 views
Site creation in MOSS server which has SSL enabled?
Can one create sites/subsites in a sharepoint server (2010) using webservices if that server has SSL enabled? My web app is not SSL enabled.
Thanks,
Vijay
0
votes
0answers
83 views
service account - standalone server(WFE) in the DMZ
I have a standalone server(WFE) in the DMZ and my Application Server and DB are on the internal network (LAN). My service accounts are created on the local internal domain.
If one way trust has been ...
0
votes
0answers
52 views
long running query when uploading doc
we have an issue with a client where uploading a document to Sharepoint 2007 via the API/Web Service is taking in excess of a minute or more. we have narrowed it down to, what we think, is this SQL ...
0
votes
1answer
537 views
Microsoft SharePoint Foundation Workflow Timer Service documentation
I've been doing a series of scalability tests on some SharePoint server farms... in my report I've included some notes that in my testing, the Microsoft SharePoint Foundation Workflow Timer Service is ...
0
votes
2answers
260 views
Route a document to a Record Center using Client Object Model
I need to programatically upload a document and route to the record center with all content organizer rules. This should be a Client Object Model Solution. I have a solution in Server Object Model. ...
1
vote
3answers
819 views
jquery and javascript : can i get the last ID from document library?
Is there a way to get the last ID from a Document Library with javascript/jquery?
2
votes
3answers
4k views
How to debug “(500) Internal Server Error.” when calling web services?
I have an application where I am creating a SOAP request by hand and hitting a SharePoint instance. My problem is that the call returns the error: The remote server returned an error: (500) Internal ...
0
votes
1answer
189 views
Site Data web service requires “Site Collection Administrator” permissions
The Site Data web service requires "Site Collection Administrator" permissions. This seems to be a fairly far-reaching permission to grant. Is there a way to programmatically determine which sites the ...
1
vote
1answer
567 views
How to get results from listdata.svc from a certain folder
I'm looking to get a certain set of data from my list using the listdata.svc service with AJAX. The problem is inside the list I have folders, and I'd like to only receive elements inside a certain ...
1
vote
1answer
253 views
Which SharePoint web service would I use to upload an image from <input type=“file”… />?
The copy service seems to want to take an item from one source url to another. I looked in the list service but nothing jumped out at me as an option. Can someone point me in the right direction?
0
votes
0answers
129 views
Getting 403 Error when accessing lists.asmx
I'm using this simple program:
http://www.codeproject.com/Articles/24244/Access-a-Forms-Based-SharePoint-Site-s-Web-Service
to get the services from my sharepoint 2007 site.
The authentication ...
0
votes
0answers
128 views
Sharepoint webservices authentication
I am scratching my head over this problem.
I am accessing a sharepoint list and trying to recursively get all the items authorized to me.
Below is the source code
Public Function ...
2
votes
0answers
221 views
Getting item level security on SharePoint online through standard web services
SharePoint 2010 and 2007 have a known limitation where you can't access item level security metadata (for example permissions assigned at folders and list items) using the standard web services ...
0
votes
1answer
81 views
Pass an SPListItem into an external web service as a parameter?
Can you pass an SPListItem object as a parameter into a custom [WebMethod] deployed into SharePoint? I understand that it would be essentially disconnected from the the SharePoint context if it was, ...
1
vote
1answer
1k views
Users can't access the Web services from an InfoPath form
I have an InfoPath 2010 form that is published to a form library in SPS 2010 foundation and set to load in the thick client. When a user tries to open the form it prompts them for their user ...
1
vote
2answers
407 views
How to create an external data source based on a Web Service?
Can you please advise me "How to create an external data source based on a Web Service"? Usually WCF can be a data source, but I am not strong on WCF. Could I use the existing web service as an ...
1
vote
1answer
878 views
Display a list of subsites?
Is it possible to display a clickable, self-updating list of subsites on the top-level site?
Also, is it possible to further sort the list according to the subsite category?
if it is, how can you ...
0
votes
0answers
33 views
Way to use AJAX for reading/writing to list in context of Site Definition?
I'm deploying a subsite to multiple SharePoint site collections which has a voting aspect based on Lists.
I'm trying to keep vote fraud to a minimum by attaching identity to a vote.
I can use ...
3
votes
2answers
1k views
SharePoint 2010 - Strange errors starting this morning
A few hours ago, one of the site owners sent me an email saying that they "couldn't click on anything". Upon more inspection, it turns out that they do not have access to the ribbon bar, cannot click ...
1
vote
2answers
202 views
Pushing data from a classic ASP site to SharePoint
We have a publicly facing classic ASP site and I need to capture some data from that site and push it to SharePoint and vice versa.
There are a few options as far as I know;
Writing a custom web ...
1
vote
1answer
206 views
Developing an intermediate Web-Service : using client object model or sharepoint model?
I need to develop a C# Web Service running on the SharePoint 2010 server which acts as an intermediate service between a Java system and this Sharepoint system.
Which technology would this Web ...
0
votes
3answers
388 views
What is the difference between CamlQuery and SPQuery
Maybe a simple question, when to use CamlQuery and when to use SPQuery ?
I think that SPQuery is used inside a WebPart running on the SharePoint server, and that CamlQuery is part of the Client ...
0
votes
1answer
211 views
Access document meta data through webservice
When I access a document through the Lists.GetListItems web service, I get meta data in the ows_* attributes. These, however are encoded in a strange way ("[RowID];#[data]"). I'm fairly confident I ...
1
vote
1answer
371 views
SPWeb is undefined
I am a newbie in sharepoint and only for 1 month. I am using sharepoint 2007,.aspx. and doing for an email form with some validation, after user pass the validation the email send.
But I'm getting the ...
6
votes
2answers
1k views
Phone-Gap Claims Authentication against SharePoint in Office365 fails, probably because of HTTPOnly flag in cookie
I am coding an application using Phone Gap to connect to a Sharepoint in Office365.
I need to use the REST services in Sharepoint Office 365 to add items to a list, but before that I need to ...
1
vote
0answers
366 views
SP 2010 Windows Authentication Default Login
I want to be able to use a simple HttpModule to catch visits to a sharepoint site that don't automaticly pass windows authentication and log them in as a default windows account.
I want it to be so ...
0
votes
0answers
37 views
Monitoring web services
I am building an app that uses Sharepoint's web services. I was curious about what kind of monitoring and analytics are in place for web service calls. For example, users viewing list items for a ...
0
votes
1answer
152 views
Error when adding new external content type from azure hosted service
trying to set-up and consume a web service within SP using azure hosted services. I have written really simple code which compiles and deploys as a package. Followed this excellent walkthough... ...
1
vote
2answers
525 views
Get the All Infromation of SharePoint Server using Client Object Model
I want to Create a Windows Application that
Displays all Web Applications
Sites Collection of Each web Application
Sites of Each Site Collection
Sub-Sites of Each Site
All lists-Libraries of Each ...
1
vote
3answers
180 views
WCF service request limit
I have setup a WCf service in my project using this tutorial: http://msdn.microsoft.com/en-us/library/ff521581.aspx
However, I'm POSTing lots of byte[] data to the service tocreate a file. I ...
0
votes
1answer
42 views
What is UpdateListCompleted and why isn't it documented?
I've been messing around with the SharePoint List web service and I came across an event called UpdateListCompleted.
I thought this might be of some use for the project I am working on so I ...
1
vote
1answer
233 views
Online sharepoint file uploader
I'm planning to create an web file upload to sharepoint for a web application currently under development . The idea is the user would provide the endpoint to his sharepoint server, provide ...
0
votes
0answers
91 views
How to set Page Layout when using the Copy web service?
I am trying to use the Copy web service to add a document to my pages library. So far I have come up with the code below:
CopyService.FieldInformation fiPage = new CopyService.FieldInformation();
...
0
votes
1answer
75 views
Possible to add a page to the Page library using the List service?
I've seen a few posts out there that say you need to use the Copy Service to do this. I have been partially successful using the List service, but I'm wondering if the list service is intended to be ...
0
votes
2answers
40 views
Sending file from SP2010 to WSS using Work Flow
I would like to send a file from one document library in SP 2010 to another document library in WSS 3.0. I was thinking web services would be the best way to do this. Can anyone point me to the right ...
