I am trying to create folder in sharepoint and using DWS.aspx Web Service CreateFolder() method.
Dws ds = new Dws();
ds.Credentials = new NetworkCredential(MyServerId,MyServerPassword,Domain);
ds.Url = "http://MyServerName/" + @"/_vti_bin/dws.asmx";
ds.PreAuthenticate = true;
strResult = ds.CreateFolder(FolderPath);
//Here My FolderPath is "Docs/Documents/Assets/NewFolderName
I am getting strResult value as "FolderNotFound".
I tried solution of below link:
But still not getting solution.