Hi All,
I am trying to access the SharePoint List with web service and I need to update the same via web service accordingly. Following is the sample code that I am using
Lists Testlist = new Lists();
Testlist.Credentials = System.Net.CredentialCache.DefaultNetworkCredentials;
Testlist.PreAuthenticate = true;
XmlNode myNode = Testlist.GetList("sample list");
.
.
.
However I am getting Exception of type 'Microsoft.SharePoint.SoapServer.SoapServerException' when I try to use Testlist.getList() Method of web service.
I have goggled for it a lot but still not getting proper solution for the same.
Can any one help me out to solve this issue... :(