I have an ASP.NET MVC3 app with Forms authentication and it's been working fine for some time. I'm in the process of trying out html5 audio tags where the src attribute of the audio files, be they mp3 or ogg, points to an MVC3 GET action that accepts a guid id for some audio content. The action method returns a FileStreamResult and quite happily allows playing of the audio in MSIE9 (mp3), FireFox 9+ (oga) and Chrome 18 (oga). In Safari 5.1.4 the mp3 that it is supposed to support does not playout.
Further investigation shows that the request to the action method in the case of safari is unauthenticated and so upon checking the request headers I can see that the .aspxauth cookie is not on the request. Other action links selected before and after the audio tag's attempt at its request all send the .aspxauth cookie.
Is there a way to force safari to send the authentication cookies? I should point out that disabling authorization on this action is not an option.
I've since tried this in the latest Safari 5.1.5 with no luck.