|
Project Information
Featured
Links
|
This is a project to explore the POH (Plain Old Http) aspects of Windows Azure services. Focused first on storage (tables, blobs, & queues), the project will also explore workflow services and Mesh. 2008-12-14 Azure.exe Update- Azure.exe - updated to support continuation headers for Table queries
- misc - added several sample feed documents for compliance testing
2008-12-13 Initial Release- CreateTable - simple example for creating a new table in Azure Storage
- AzureTest - simple GET example for reading Azure Table Data
- Azure.exe - full CLI (command-line interface) for Azure Tables & Entities
Azure.exe CLI SyntaxTables:
/{tid} [[g]et]
ex: /my-table
/{tid} [p]ost
ex: /my-new-table p
Entities:
/{tid}/ [[g]et]
ex: /my-table/
/{tid}/{pid},{rid} [[g]et]
ex: /my-table/my-partition,my-row
/{tid}/{pid},{rid} [p]ost "{xml}|{filename}"
ex: /my-table/my-partition,myrow p c:\new-properties.xml
/{tid}/{pid},{rid} p[u]t "{xml|filename}"
ex: /my-table/my-partition,my-row u c:\modified-properties.xml
/{tid}/{pid},{rid} [m]erge "{xml|filename}"
ex: /my-table/my-partition,my-row m "<d:new-property>my-value</d:new-property>"
/{tid}/{pid},{rid} [d]elete
ex: /my-table/my-partition,my-row d
Queries:
/{tid}/? "{query}" [[g]et]
ex: "?Customers()?$filter=(InvoiceDue eq true)$top=10"
|