azure-webjobs-sdk-samples/BasicSamples
Michael Teper 723feb78ba Typo fix 2016-02-18 13:02:19 -08:00
..
BlobOperations Updating samples to target v1.1.1 RTM 2016-01-13 14:09:34 -08:00
HelloWorld Updating samples to target v1.1.1 RTM 2016-01-13 14:09:34 -08:00
MiscOperations Updating samples to target v1.1.1 RTM 2016-01-13 14:09:34 -08:00
QueueOperations Typo fix 2016-02-18 13:02:19 -08:00
ServiceBus Updating samples to target v1.1.1 RTM 2016-01-13 14:09:34 -08:00
TableOperations Updating samples to target v1.1.1 RTM 2016-01-13 14:09:34 -08:00
AzureWebJobsSdkSamples.sln Samples for 0.4.0-beta 2014-08-21 09:54:06 -07:00
ReadMe.txt Samples for 0.4.0-beta 2014-08-21 09:54:06 -07:00

ReadMe.txt

Microsoft Azure WebJobs SDK Samples
-----------------------------------

These samples demonstrate the most basic operations you can do with the SDK. Following are some of the examples
- How to bind to Microsoft Azure Tables
- How to use binding and triggers on Microsoft Azure Blobs
- How to use binding and triggers on Microsoft Azure Queues

-----------------------------------
In order to run the sample, you need to set the Microsoft Azure Storage connection strings in the
App.config file or environment variables.
Example (app.config):
  <add name="AzureWebJobsDashboard" connectionString="DefaultEndpointsProtocol=https;AccountName=NAME;AccountKey=KEY" />
  <add name="AzureWebJobsStorage" connectionString="DefaultEndpointsProtocol=https;AccountName=NAME;AccountKey=KEY" />
Example (environment variables):
  SET AzureWebJobsDashboard=DefaultEndpointsProtocol=https;AccountName=NAME;AccountKey=KEY
  SET AzureWebJobsStorage=DefaultEndpointsProtocol=https;AccountName=NAME;AccountKey=KEY

For more information about the WebJobs feature of Microsoft Azure Web Sites, 
see http://go.microsoft.com/fwlink/?LinkId=390226