Welcome to MSDN Blogs Sign in | Join | Help

Are the Sharepoint Web Services too complex? Looking for something better?

I'm looking for a few people to help beta-test an alternative to Sharepoint's web services.  The solution allows a simple "object modelish" approach to working with WSS, as shown by the following sample code snippets:

// display all fields of all items of all lists
ListsClient ListClient = new ListsClient();

foreach (ListDescriptor list in ListClient.GetLists("http://WssSite"))
{
     Console.WriteLine("List {0} has {1} items",list.ListName,list.ListItems.Length.ToString()); 
     foreach(ListItem item in list.ListItems)
     {
           Console.WriteLine("item {0} fields:",item["Title"]); 
           foreach(Field f in item.Fields)
                Console.WriteLine("{0} = {1}",f.Name,f.Value); 
     }
}

 

// update all list items in the "Tasks" list which are due today 

ListDescriptor tasks = ListClient.GetListItemsByFieldValue("http://WssSite","Tasks","DueDate",strToday);

foreach(ListItem task in tasks.ListItems)

{

     task["Description"] += " <-- DUE TODAY!!";

     ListClient.UpdateListItem("http://WssSite","Tasks",task);

}

It also solves some of the WSS web service pain-points, such as download/upload, checkin/checkout, etc. 

Drop me a mail if you are interested.  3/3/2005 Update: The source is now available for download, more details here

Published Thursday, December 30, 2004 8:50 PM by Addys
Filed under: ,

Comments

# re: Are the Sharepoint Web Services too complex? Looking for something better?

Friday, December 31, 2004 12:35 AM by SBC
Sounds very interestin & I'll like to check it out. I have WSS servers up and running.

# re: Are the Sharepoint Web Services too complex? Looking for something better?

Sunday, January 02, 2005 10:22 AM by Michael Reinhart
I'd love to help and to check it out... we have WSS servers in deployment and can use it in a quasi-production environment.

m

# re: Are the Sharepoint Web Services too complex? Looking for something better?

Monday, January 03, 2005 6:03 AM by Joris
Nice, I definitely want to try it out....

# re: Are the Sharepoint Web Services too complex? Looking for something better?

Monday, January 03, 2005 1:14 PM by Ed Richard
Very interested, am currently doing similar work.

Ed@wss-ed.nl

# re: Are the Sharepoint Web Services too complex? Looking for something better?

Friday, January 07, 2005 10:15 AM by Arno Nel
Hi would be keen to put some details on my blog when its ready,... i could get some more people to help you out

# re: Are the Sharepoint Web Services too complex? Looking for something better?

Thursday, January 13, 2005 8:50 AM by Radrizzi Gilles
I'd really like to try that out as I absolutely do not like Sharepoint Web Services. They are a pain in the a** to use.

I'll drop you an e-Mail so you can send them to me for testing

# re: SharePoint Wrappers 0.10

Monday, February 21, 2005 11:26 AM by Fear and Loathing

# Wrapping SharePoint API calls for easier development

Monday, February 21, 2005 11:37 AM by SBC DotNet Weblog

# Santomania Are the Sharepoint Web Services too complex Looking for | Wood TV Stand

New Comments to this post are disabled
 
Page view tracker