Link to home
Start Free TrialLog in
Avatar of fatihdi
fatihdi

asked on

Sharepoint Document Library access from silverlight application


I am trying to access a list in sharepoint 2010 from silverlight application and the code I am using for that is below:


 =======================================================================  
             clientContext = new ClientContext("http://sharepoint-one");

             clientContext.Load(clientContext.Web);

             clientContext.Load(clientContext.Web.Lists);

             _list = clientContext.Web.Lists.GetByTitle("Shared Documents");

             clientContext.Load(_list);

             clientContext.Load(_list.RootFolder);

             clientContext.Load(_list.RootFolder.Files);

           //  clientContext.ExecuteQuery();

              clientContext.ExecuteQueryAsync(OnRequestSucceeded, OnListDetailsRequestSucceeded);

             int n = _list.RootFolder.Files.Count;
================================================================================

I am trying to get for instance the count of the files inside a list in the last statement in the code above.... I am getting an exception in the first line in the code above :

clientContext = new ClientContext("http://sharepoint-one");

please see the exception in the attached files. why am i getting this why am i not able to access this list? what do you recommend?? My intention is silverlight application is a web gallery and the pictures I want it to get it from document library so i need to access this document library and give it to silverlight to show it as a web part in sharepoint ...i need help thnk you very much !!!






ServerVersionException.png
ASKER CERTIFIED SOLUTION
Avatar of Nasir Razzaq
Nasir Razzaq
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial