Hi,
I've develoved a web application. One of the options of this application is to play audio files that have previously uploaded to the server. I'm trying to do that using the following code:
<object id="MediaPlayer"
type="application/x-oleobject" height="42" standby="Installing Windows Media Player..." width="138" align="absMiddle" classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95">
<param name="FileName" value=path>
</param><param name="AutoStart" value="true">
</param><param name="volume" value="3">
</param><param name="EnableContextMenu" value="1">
</param><param name="TransparentAtStart" value="false">
</param><param name="AnimationatStart" value="false">
</param><param name="ShowControls" value="true">
</param><param name="ShowDisplay" value="false">
</param><param name="ShowStatusBar" value="false">
</param><param name="autoSize" value="false">
</param><param name="displaySize" value="true">
</param></object>
Where 'path' is the path of the audio file that must be played. When I run my application in the server PC I can play audio files. However, when I run my application on a client PC everything works correctly, but when I try to play an audio file I have a problem: the web page is correctly loaded, I can see the player, but it never plays the audio file.
Do you have any idea about how to solve this issue? Thanks in advance.