I've signed up fro the SQL Server Data Services (MSSDS) and have started to play around with the API.

It's quite nice and simple. Here's an example of how to get your data in the cloud with MSSDS.

  1. Add a Web Reference to any .NET 2.0+ project. I'll be calling it SitkaClient (Sitka is the code name for MSSDS).

    1. WSDL url is http://data.beta.mssds.com/soap/v1?wsdl but you'll need to sign up to get a username and password.

  2. Optionally change your Web.config/App.config to support SSL by doing the following

    image 

    image 
  3. Call the web service.

It's that easy.

Here's a few examples of what you can do.

  1. Define a few constants

    image
  2. Create an Authority

    image
  3. Create a Container

    image 
  4. Create an Entity

    image

These example use a few extension methods I created for the SitkaSoapServiceClient class.

Here's the code from the Extension class which is specific to a console application because it writes to the console output:

DOWNLOAD (ZIP): SQLServerDataServices.zip