Follow @ServiceStack or view the docs, use StackOverflow or the Customer Forums for support.
ServiceStack.Azure
ServiceStack.Azure package provides support to Azure ServiceBus and Azure Blob Storage. All features are incapsulated in single ServiceStack.Azure package. To install package run from NuGet
PM> Install-Package ServiceStack.Azure
ServiceStack.Azure includes implementation of the following ServiceStack providers:
- ServiceBusMqServer - MQ Server for invoking ServiceStack Services via Azure ServiceBus
- AzureBlobVirtualFiles - Virtual file system based on Azure Blob Storage
- AzureAppendBlobVirtualFiles - Virtual file system based on Azure Blob Storage for appending scenarios
- AzureTableCacheClient - Cache client over Azure Table Storage
ServiceBusMqServer
The code to configure and start an ServiceBus MQ Server is similar to other MQ Servers:
container.Register<IMessageService>(c => new ServiceBusMqServer(ConnectionString));
var mqServer = container.Resolve<IMessageService>();
mqServer.RegisterHandler<ServiceDto>(ExecuteMessage);
mqServer.Start();Where ConnectionString is connection string to Service Bus, how to obtain it from Azure Portal you can find in Get Started with Service Bus queues article
When an MQ Server is registered, ServiceStack automatically publishes Requests accepted on the "One Way" pre-defined route to the registered MQ broker. The message is later picked up and executed by a Message Handler on a background Thread.
Virtual FileSystem backed by Azure Blob Storage
You can use an Azure Blob Storage Container to serve website content with the AzureBlobVirtualFiles.
public class AppHost : AppHostBase
{
public override void Configure(Container container)
{
//All Razor Views, Markdown Content, imgs, js, css, etc are served from an Azure Blob Storage container
//Use connection string to Azure Storage Emulator. For real application you should use connection string
//to your Azure Storage account
var azureBlobConnectionString = "UseDevelopmentStorage=true";
//Azure container which hold your files. If it does not exist it will be automatically created.
var containerName = "myazurecontainer";
VirtualFiles = new AzureBlobVirtualFiles(connectionString, containerName);
AddVirtualFileSources.Add(VirtualFiles);
}
}In addition you can use AzureAppendBlobVirtualFiles in scenarios that require appending such as logging.
public class AppHost : AppHostBase
{
public override void Configure(Container container)
{
Plugins.Add(new RequestLogsFeature
{
RequestLogger = new CsvRequestLogger(
files: new AzureAppendBlobVirtualFiles(AppSettings.Get<string>("storageConnection"), "logfiles"),
requestLogsPattern: "requestlogs/{year}-{month}/{year}-{month}-{day}.csv",
errorLogsPattern: "requestlogs/{year}-{month}/{year}-{month}-{day}-errors.csv",
appendEvery: TimeSpan.FromSeconds(30))
});
}
}Caching support with Azure Table Storage
The AzureTableCacheClient implements ICacheClientExteded and IRemoveByPattern using Azure Table Storage.
public class AppHost : AppHostBase
{
public override void Configure(Container container)
{
string cacheConnStr = "UseDevelopmentStorage=true;";
container.Register<ICacheClient>(new AzureTableCacheClient(cacheConnStr));
}
}
Formed in 2009, the Archive Team (not to be confused with the archive.org Archive-It Team) is a rogue archivist collective dedicated to saving copies of rapidly dying or deleted websites for the sake of history and digital heritage. The group is 100% composed of volunteers and interested parties, and has expanded into a large amount of related projects for saving online and digital history.
