Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Sharepoint ?wsdl does not return WSDL file, returns the normal page instead

Try this URL:

http://sharepoint.iceweb.com/sites/demo/default.aspx?wsdl

(user: [email protected], pass: demo)

As far as I remember this used to return the WSDL file for this, but it just returns the normal page instead. How do I get the WSDL for a Sharepoint service? I'm actually looking for the WSDL for the Sharepoint 2007 List service, so if anyone has a link for that, it's appreciated.

like image 459
Francis Upton IV Avatar asked Sep 28 '09 12:09

Francis Upton IV


People also ask

How do I get the WSDL from my website?

Generating a WSDL From a Web Service ClassOn the Project Explorer or Navigator tab, right-click the web service class and select Web Services > Generate WSDL.


2 Answers

You can only get WSDL from a webservice. You are trying to get a WSDL from a web page. The URL corresponding to the list service is {weburl}/_vti_bin/Lists.asmx

Here is a list af webservices available for SharePoint: http://msdn.microsoft.com/en-us/library/ms479390.aspx

like image 176
Nico Avatar answered Oct 23 '22 22:10

Nico


Your URL is a little wrong. Try this:

http://sharepoint.iceweb.com/sites/demo/_vti_bin/Lists.asmx?wsdl

like image 36
Alex Angas Avatar answered Oct 23 '22 21:10

Alex Angas