Programming Tutorials

Comment on Tutorial - Embedding a QuickTime movie in a JSP By Bruce W. Perry



Comment Added by : arshad

Comment Added at : 2011-10-22 17:05:21

Comment on Tutorial : Embedding a QuickTime movie in a JSP By Bruce W. Perry
Respected sir,
I am trying to embed windows media player in my html,However there is no video shown when I click on play button , Here is my html & I have deployed my web application on tomcat .



<LINK REL=StyleSheet HREF="st.css" TYPE="text/css">
<html>
<LINK REL=StyleSheet HREF="st.css" TYPE="text/css">
<!-- jsp:include page="/pages/header_s.jsp" /-->
<body class="one">

<h6>The following files are available for viewing</h6>

<OBJECT id="VIDEO" classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6" type="application/x-oleobject"
width="320" height="240">

<param name="URL" value="http://localhost:8080/drmk/tracheostomy_in_emergency.avi">

<param name="AutoStart" value="false">
<param name="ShowControls" value="true">
<param name="BufferingTime" value="2">
<param name="ShowStatusBar" value="true">
<param name="AutoSize" value="true">
<param name="InvokeURLs" value="false">
>
</OBJECT>


</body>

<table>
<tr>
<td>

</td>
</tr>
<tr>
<td>

</td>
</tr>
<tr>
<td>

</td>
</tr>
</table>
</html>



I have already placed the file Tracheostomy_in_emergency.avi file in <tomcat_home>/webapps/drmk/ folder.

I am running tomcat on windows


View Tutorial