Hello,
I think there is a bug in the RemoveFiles method of SharePoint Utility assembly (ListsServiceUtility.vb) :
At line 328-329 of ListsServiceUtility.vb file, the list name is not passed as parameter, but a hard coded value :
Dim data = listsProxy.GetSharePointListItemData( _
"Documents", viewName, New String() {"FileRef", "ID"}, , False, 300)
It should be
Dim data = listsProxy.GetSharePointListItemData( _
listName, viewName, New String() {"FileRef", "ID"}, , False, 300)