Tagged Questions
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 ...
5
votes
2answers
341 views
How to specify file name using web services?
I have the following code which creates an item in the library I want:
string newPageXml = String.Format(@"<Batch OnError='Continue'>
<Method ID='1' Cmd='New'>
...
1
vote
1answer
161 views
How to specify content type when creating a list item using web services?
This is what I have tried so far:
string newPageXml = String.Format(@"<Batch OnError='Continue'>
<Method ID='1' Cmd='New'>
...
1
vote
2answers
172 views
Installing a custom webservice
I am trying to install some (old) bespoke software which contains Sharepoint webservices. Unfortunatly I don't have the documentation for this software, if there ever was any.
I have been reading up ...
1
vote
1answer
128 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 ...
2
votes
2answers
816 views
Custom Web Service in vti_bin folder does not show Service description
I've used the Walkthrough: Creating a Custom ASP.NET Web Service from MSDN to create my cusom WCF Service and deploy to my Sharepoint 2010 server.
http://myserver/_vti_bin/randomchatwebservice.asmx ...
1
vote
2answers
465 views
Unable to call the SharePoint Custom web service from another SharePoint Farm
I have deployed a custom SharePoint Web service on Farm A. I am trying to access this Web service from a SharePoint timer job on Farm B. On Farm B, I am creating Class Library project, packaging it ...
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
...