Now that the Windows Live ID SDK (alpha) is available can it be used to authenticate a client application that will allow me to connect to the Office Live web services I want to be able to programmatically connect to an Office Live site and manipulate ListItems via the Lists web service from my client. What do I need to do to set the credentials on the Lists web service from the Windows Live Identity information.
A simple test app would be as follows:
Lists listService;
listService = new Lists();
// Set the listService credentials here to allow connection with Office Live
XmlNode nodeCollection = listService.GetListCollection();
// Loop through XML response
foreach (System.Xml.XmlNode node in nodeCollection)
{
Console.WriteLine("{0,-20} {1}",
node.Attributes["Title"].Value,
node.Attributes["ID"].Value
);
}

Client connectivity to Office Live
Mitch5713
We will soon publish an MSDN sample to demonstrate exactly this scenario.
Stay tuned :-)
Chad Ludwig
We 've just posted the sample code to do exactly that! Enjoy it on http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=1386954&SiteID=1
You will need to install Windows Live ID SDK (alpha) first.
herbfl
I too am really keen to understand how to do this ... we have a live project requirement to be able to integrate our software application with Office Live!