SignalR Hub-2-Hub Communication with SQL Backplane in ASP.NET Owin

I have an ASP.NET Owin Web Api which is load balanced, which means there are multiple instances of it which don´t know each other. The web api hosts a SignalR hub with an SQL Server Backplane (for synchronising between instances), so clients can exchange messages regardless of which instance of the web api they are connected to. Everything working so far.

How to upload a file directly to azure blob from the URL in c#?

I have a url which looks like following “https://XXXXXXXX-functions.azurewebsites.net/api/UploadedZIPFile?ticket=1234&code=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX” which contains the file. “UploadedZIPFile” is the file Name. In URL I don’t have the extension of filename. After downloading the file into my system it is showing the extension. I want to upload the file which came from the URL into Azure blob storage. How can I upload the file to azure blob storage from the given URL using c#? Please Added my code sample below

Route all URL’s to Home controller action C# MVC

I want to create a URL re-director in c#, so whenever my MVC application base url is hit with parameters i want to redirect it to other url based on parameters in the url (site, folder, file, id, etc)
Eg: http://localhost:8080/site/folder/file/id or http://localhost:8080/site/folder/file or http://localhost:8080/site/folder etc.
So request url can be of any type, only base url will be fixed.