"List does not exist" error using cfsharepoint
I am trying to retrieve the contents of a SharePoint list via the cfsharepoint tag. I used the following code:
<cfset p = structNew()>
<cfset p.listName = "{7A81F7A3-B6E9-4990-B54A-937F591A402B}">
<cfsharepoint
action="getlist"
params="#p#"
domain="www.mysite.com"
name ="SPList"
password="mypassword"
userName="myusername" />
The server returns
Cannot perform web service invocation getlist.
The fault returned when invoking the web service operation is:
AxisFault
faultCode: {http://www.w3.org/2003/05/soap-envelope}Receiver
faultSubcode:
faultString: Exception of type 'Microsoft.SharePoint.SoapServer.SoapServerException' was thrown.
faultActor:
faultNode:
faultDetail:
{http://schemas.microsoft.com/sharepoint/soap/}errorstring:
List does not exist.
The page you selected contains a list that does not exist. It may have been deleted by another user.
{http://schemas.microsoft.com/sharepoint/soap/}errorcode:0x82000006
''
The list does exist, and the user account has access to it. I can access the list data from an RSS feed using cfhttp, I just thought it might be easier to work with the data if I accessed it using cfsharepoint instead. Any suggestions are appreciated.
(On a side note, when I searched the Adobe Forums for "SharePoint getlist" it asked me if I meant to search for "harpoon gels." Harpoon gels!)
