tags:

views:

30

answers:

2

I'm trying to use the HTML5 tag on the iPad. It works fine if the source is set to a hard-coded file:

<audio src="http://...../myFile.wav"&gt;&lt;/audio&gt;

...but if I set the URL to a servlet or ASP.net page it refuses to play it!

<audio src="http://...../myDynamicHandler.ashx?audioId=123"&gt;&lt;/audio&gt;

Any ideas?

+2  A: 

Are you setting the correct contentType header before sending the wav data?

John Boker
Yes and it works in Safari
A: 

I'm having the same problem. Did you find answer?

TJH