Is there a way that I can retrieve the date in which a file was uploaded in a sharepoint list using sharepoint web services? I need to use web services because my app is going to be installed in a client computer.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can use Sharepoint
Lists.asmxWebservice (http://<Site>/_vti_bin/Lists.asmx) to check the created or modified date of uploaded file in SharePoint.This webservice will return the xml document similar like this:
The tedious part in working with sharepoint webservice is writing(with CAML) parameter to pass into the webservice and retrieving values from returned xml document. See the MSDN for the sample.
I also found some blog which using with LINQ to XML and it seems more easier to use. Please check below link.
http://blogs.msdn.com/b/ericwhite/archive/2009/01/06/getting-started-with-sharepoint-wss-web-services-using-linq-to-xml.aspx