etag

How do I extract "eTag" or "x-ms-request-id" from my Azure Storage response?

The Azure table whitepaper mentions that the x-ms-request-id is useful to send to Microsoft in the event there is an error working with the data. If I do have such an error, I'd like my try...catch block to take this and save it somewhere for future analysis. How do I extract this information and have it available when the Exception co...

why is etags generating a corrupted TAGS file?

I have the following minimal source file: $ cat path/xx/yy/fooBar.c void this_is_a_test(void) { } If I run etags like this it works ok: $ etags path/xx/yy/fooBar.c $ cat TAGS path/xx/yy/fooBar.c,25 void this_is_a_test(1,0 But if I run etags via find/xargs the TAGS file is corrupted: $ find . -name fooBar.c ./path/xx/yy/fooBar...

Remove Etag and Last-Modified headers from IIS

Did you know you can prevent the revalidation of files in browser cache and subsequent 304 response by completely removing both the ETag and Last-Modifed response headers? Of course, this is easy in Apache, but as clear as mud in IIS 6. Does anyone know how to remove both of these headers in IIS? ...

Yslow performance improvements in the web.config

Running my site on IIS7 and looking to improve my Yslow rating. Working with asp.net. I am able to cache static resources in the web.config but is it possible to the following also: Set the etag on the resources eg. javascript, images, css files etc Add expires header to the above static resources Set gzipping on components Previously...