How to delete Document Workspace sub folders with Sharepoint web services?
Posted
by pclem12
on Stack Overflow
See other posts from Stack Overflow
or by pclem12
Published on 2010-03-16T20:08:52Z
Indexed on
2010/03/16
20:11 UTC
Read the original article
Hit count: 202
sharepoint
|Silverlight
I'm trying to delete a sub folder in a dws.
This is the code I've got:
SharepointDocs.DwsSoapClient dws = new SharepointDocs.DwsSoapClient();
dws.DeleteFolderCompleted += dws_DeleteFolderCompleted;
dws.DeleteFolderAsync(DWSname+'/'+folderName);
In the call back for completion I get no error codes only the message
"<Results/>"
On the msdn site here, it says this empty message signals a success. However, the folder is still there.
Any ideas what could be the problem?
© Stack Overflow or respective owner