Tagged Questions
1
vote
1answer
29 views
Webservice consuming SP WebService - Authentication
Our SharePoint site is not accessible from outside. So I am working on a WebService (not hosted in SP) that will consume SP WebService (ListData Wcf). It's a kind of wrapper.
Anonymous access are not ...
0
votes
0answers
39 views
Hosting custom web services as a virtual directory under a SharePoint web site
I am developing custom web services that will be used in conjunction with a SharePoint site (WSS 3.0). No, before you ask, I am NOT talking about the built-in web services under the _vti_bin directory ...
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
1answer
229 views
Call to UpdateListItems not updating items?
I have the following code:
XmlNode newItemRes = ceoList.GetListItems("Pages", null, getItem, ndViewFields, null, null, null);
XDocument d = XDocument.Load(new XmlNodeReader(newItemRes));
XNamespace ...
1
vote
1answer
479 views
Getting a file not found error when I try to check in file using web services?
I am using the following code to create a file and then check it in:
//Some other code above. The following line works fine.
createdItem = ceoList.UpdateListItems("Pages", newItem);
//But this line ...
1
vote
1answer
257 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
1answer
521 views
listdata.svc does not respond in VS
I am trying to add list.svc to a project in VS 2010. Even though, the path http://server/site/_vti_bin/listdata.svc is accessible through internet browsers, when I attempt to add service to my ...
0
votes
1answer
153 views
Developing Webservices to for a sharepoint site without visual studio on the server
We are developing a ipad application for a client for managing the workflows of sharepoint site.
On the middleware i need to develop a .net webservice which will fetch the Tasks details from the ...
2
votes
1answer
122 views
Custom Interface vs SharePoint Interface
I am not a SharePoint Developer, but I have been assigned some tasks. Therefore, I have had to put my hands on it unfortunately(?). :)
We are currently evaluating SharePoint to retire 5-6 tools which ...
5
votes
3answers
807 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 ...
6
votes
3answers
579 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, ...
-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
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 ...