Skip to content

Commit

Permalink
Merge pull request #1 from WindowsAzure/dev
Browse files Browse the repository at this point in the history
Update gcheng's dev fork.
  • Loading branch information
Albert Cheng committed Jul 16, 2012
2 parents da5f63a + 3106f96 commit 3868b4e
Show file tree
Hide file tree
Showing 187 changed files with 22,411 additions and 2,165 deletions.
13 changes: 13 additions & 0 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
2012.06.02 Version 0.3.0
* Added 1.7 Storage Support
* Added Javadocs for com.microsoft.windowsazure.services.table

2012.05.02 Version 0.2.2
* Added Javadoc comments to Azure Blob Service Layer
* Fixed a URL encoding issue in Table Client Layer
* Made CloudTableClient use Iterator instead of Iterable

2012.04.11 Version 0.2.1
* Added Service Layer support for Azure Table
* Added Javadoc comments to Azure Queue Service Layer

2012.02.28 Version 0.2.0
* Added Support for Azure Table in com.microsoft.windowsazure.services.table
* Added Client Tests for Table
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Windows Azure SDK for Java

This SDK allows you to build Windows Azure applications in Java that allow
This SDK allows you to build Windows Azure applications in Java that allow
you to take advantage of Azure scalable cloud computing resources: table and blob
storage, messaging through Service Bus.

Expand Down Expand Up @@ -41,7 +41,7 @@ within your project you can also have them installed by the Java package manager
<dependency>
<groupId>com.microsoft.windowsazure</groupId>
<artifactId>microsoft-windowsazure-api</artifactId>
<version>0.1.0</version>
<version>0.3.0</version>
</dependency>

##Minimum Requirements
Expand All @@ -68,9 +68,9 @@ and uploading a file to it. For additional information on using the client libr
public class BlobSample {

public static final String storageConnectionString =
"DefaultEndpointsProtocol=http;" +
"AccountName=your_account_name;" +
"AccountKey= your_account_name";
"DefaultEndpointsProtocol=http;" +
"AccountName=your_account_name;" +
"AccountKey= your_account_name";

public static void main(String[] args)
{
Expand Down

0 comments on commit 3868b4e

Please sign in to comment.