I have a database in MS SQL Server'08 with mp3 files as BLOB objects (I use filestream for storing).
There's a WCF service which works with database (linq).
There's a client application on html+javascript (and nothing more).
How to play one of the audio files from server on the client?I tried to send a byte array which represents mp3 file, but it's a problem how to play this array as sound using javascript.
Thanks