Tell me more ×
SharePoint Stack Exchange is a question and answer site for SharePoint enthusiasts. It's 100% free, no registration required.

I have a custom list called "Custom" with Title, Description and Date Site columns. I want to access this custom list using Web Services. Can anyone provide the solution with step by step .

Thanks, John.

share|improve this question
John, we need some more information to answer your question. How are you trying to access the custom list? Using a console application? – Kit Menke Jan 25 '12 at 22:33

2 Answers

Is it SharePoint 2007 or 2010?

For 2010, use the REST interface http://msdn.microsoft.com/en-us/library/ff798339.aspx

For 2007, you will need to use list.asmx

What will you be using to access the list? C#, Java, Javascript, InfoPath, ... ?

Some examples:

share|improve this answer

Just read article on MSDN:

Lists.GetListItems Method

Scroll to bottom an you can find working example (Console application written in C# and VB). If you need more info write 'sharepoint list.asmx getlistitems' in Google (or Bing) and you can easily find ton of other articles.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.