Retreiving Lista Përmbajtja përmes WebService në SharePoint 2003

Shto webreference në Lists.asmx në faqen SharePoint.

http://localhost / _vti_bin / Lists.asmx (SharePoint virtual Directory URL / _vti_bin / Lists.asmx

shkruaj metodat e mëposhtme në webservice tuaj.

privat data.DataTable GetDataTableFromWSS(bool onlySchema) { string WssSiteUrl = http://192.168.111.21; string WssSiteUrl = ConfigurationSettings.AppSettings[“WssSiteUrl”]; WssSite.Lists listat = WssSite.Lists reja(); lists.Url = WssSiteUrl + “_vti_bin / Lists.asmx”; lists.Credentials = System.Net.CredentialCache.DefaultCredentials;

lists.PreAuthenticate = true; //you have to pass the […]