Hi
I am trying to use a XML datasource to connect to a SharePoint library. I need to use the XML rather than the SharePoint list one. When I try and refresh the dataset that uses this, I get the following error;
The remote server returned an error: (500) Internal Server Error.
<?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="<soap:Body><soap:Fault><faultcode>soap:Server</faultcode><faultstring>Exception">http://www.w3.org/2001/XMLSchema"><soap:Body><soap:Fault><faultcode>soap:Server</faultcode><faultstring>Exception
of type 'Microsoft.SharePoint.SoapServer.SoapServerException' was thrown.</faultstring><detail><errorstring xmlns="Value">http://schemas.microsoft.com/sharepoint/soap/">Value
does not fall within the expected range.</errorstring></detail></soap:Fault></soap:Body></soap:Envelope>
----------------------------
Failed to execute web request for the specified URL.
Soap Fault:
Exception of type 'Microsoft.SharePoint.SoapServer.SoapServerException' was thrown.
I am using this query in the dataset;
<Query>
<Method Namespace="http://schemas.microsoft.com/sharepoint/soap/" Name="GetListItems"/>
<SoapAction>http://schemas.microsoft.com/sharepoint/soap/GetListItems</SoapAction>
</Query>
I have used this with SQL 2008 R2 before, we are using SQL 2012 this time around.
Please help!