Content Delivery Network for Windows Azure, used for serving content with high availability and high performance

learn more… | top users | synonyms

0
votes
2answers
63 views

Does CDN improve latency over plain Blob Storage for download-once blobs?

I am considering a solution for a high traffic website (millions of visits / day) where some content is served directly from the Windows Azure Blob Storage to visitors. The content to be served from ...
0
votes
1answer
38 views

Does CDN support video caching?

I am new Windows Azure and I uploaded all my images into CDN. It provides In-Memory Cache that can store my application's data in memory to improve application responsiveness, performance and scale. ...
0
votes
1answer
61 views

Is it possible to invalidate azure cdn by delete-ting a file and re-uploading it?

I am having azure storage and using as it as cdn for my web application,now i want to invalidate my cdn content every time when i upload files to the storage account. My question is that when i ...
1
vote
1answer
72 views

Windows Azure CDN doesn't serve gzipped assets, even after uploading assets twice, one is gzipped and the other one is plain

I have gone through a lot of questions on stackoverflow about windows azure CDN not being able to serve gzipped assets.I also had gone through certain links which say it could be done. I'm a li'l ...
1
vote
1answer
46 views

Place a WCF service in the CDN endpoint?

Is it any way of placing a WCF service in an Azure CDN Endopint? Or is it only valid to place static content? It would be useful becasue I have a web frontend that constantly communicates with the ...
1
vote
1answer
188 views

Table Storage Service (Azure's implementation of nosql) vs Windows Azure Caching (unstructured in memory cached)

We want to implement caching in Azure for two main reasons: Speed up repetive data access Reduce stress on the database Here are the characteristics of the data we are planning to cache: ...
7
votes
1answer
435 views

Azure, best way to store and deploy static content (e.g. images/css)?

We're about to deploy our .NET web application to an Azure Web Role. I'm just wondering how others have handled their static content, specifically images and css? At the moment our application package ...
0
votes
0answers
68 views

ASP.NET MVC Combres with Azure CDN

Are there any good ways to write the output of the Combres resourceSets to disk (or Azure storage container)? I'm trying to enable an application to use Azure CDN. Ideally there would be a way to ...
0
votes
2answers
126 views

Mapping custom domain to Windows Azure CDN does not working

I've created an Windows Azure Blob Storage and associated a Windows Azure CDN service.I map custom domain to Azure CDN. After veryfication is completed for my custom domain, I've created CNAME record ...
0
votes
0answers
67 views

Azure CDN Scripts are loaded twice

I've been searching for answers to this question for days on MSDN Forums but haven't found yet so I tought I would maybe find some more help here. Here's my issue: ...
0
votes
1answer
93 views

Azure CDN adds x-microsoft headers to response, What are they and how to remove?

Placing any content into blob storage within a container hosted on Microsoft Azure set to public blob appends various x-ms-... headers in the HTTP response to a standard GET request from a browser. ...
0
votes
0answers
149 views

Azure CDN edge nodes and dynamic content from origin server

I have a predominantly static site with one specific dynamic page that I have placed a cache header of max-age=7200 and an ETag equal to a new GUID every time the origin server is hit with a new ...
3
votes
1answer
162 views

Azure CDN not passing along Gzip files

I am not able to get Azure's CDN to pass along compressed files from the source. Original file (gzips just fine:) http://www.schooldigger.com/cdn/clientscript/SchoolDigger.1.45.min.js >curl -I ...
0
votes
0answers
85 views

Azure CDN revealing web role domain when accessing subfolder without trailling slash

Say a custom domain has been associated with my Azure CDN (web role). Let's assume its http://www.abcxyz.com. If I attempt to access content in the /en subfolder on this webrole via ...
2
votes
1answer
122 views

Cache busting a local browser cache but ensuring response from Azure CDN and not from origin server (Web Role)

I am trying to make a HEAD request to an item on Azure CDN (production site) but want to avoid the response coming from either my local browser cache, nor from the origin server (my web role). This ...
2
votes
2answers
211 views

How to use Windows Azure CDN with existing ASP.NET webforms application?

I have an ASP.NET Web Application on Azure and want to move my static content - images, CSS to the Azure CDN. I have over 100 image files being used throughout the application stored in a folder ...
2
votes
2answers
422 views

hosting fonts on azure cdn - CORS support

I cannot get azure blob storage hosted fonts exposed via azure cdn working in IE or Firefox. I believe this is because of @font-face cross-domain issues (CORS) and the normal solution is to add an ...
0
votes
1answer
221 views

Windows Azure CDN and *.woff fonts

I use CDN for my cloud services in Azure, but fonts (*.woff) does not work! When i use just iis for static files i solve this problem like <staticContent> <mimeMap ...
0
votes
1answer
265 views

Azure web role with cdn

I have a web role with 2 web application on it.( one is web application the other is wcf application). The static content in the web application is from azure cdn. I put my static content under cdn ...
7
votes
1answer
566 views

Azure CDN - Enabling HTTP 304 Caching with ETag - Hosted Web Role

We are trying to enable HTTP compression (gzip) and HTTP 304 Caching via ETags on Azure CDN. We already discovered an issue with enabling Azure CDN Compression, but now we can't get compression and ...
6
votes
2answers
1k views

Azure CDN - Enabling HTTP Compression - Hosted Web Role

Has anyone successfully configured Azure CDN for HTTP compression using their hosted web role? We are having trouble compressing HTTP content at the Azure edge servers. The CDN is only caching the ...
2
votes
1answer
759 views

Using VirtualPathProvider to put Themes in Azure CDN

I'm trying to implement storing an Azure web site's Themes in the Azure CDN. I've copied the files into the CDN retaining the folder structure as it was in the original App_Themes folder. I've ...