File not being read by JSP
-
Here is my code of JSP
<% if(request.getParameter("txtTextInput")!=null && request.getParameter("LangGroup").equals("English") ) {
String file=CreateSoundFile( request.getParameter("txtTextInput"), "en");
%>
<embed src="<%=file%>" ></embed>while CreateSoundFile creates the sound file and give back its path but the sound file is not played on the client and if the program is being run 2nd time the previous text is being played on the client browser where as the file in the folder on server is changed. why the file is not downloaded at client when it exists on the serve :(( r
-
Here is my code of JSP
<% if(request.getParameter("txtTextInput")!=null && request.getParameter("LangGroup").equals("English") ) {
String file=CreateSoundFile( request.getParameter("txtTextInput"), "en");
%>
<embed src="<%=file%>" ></embed>while CreateSoundFile creates the sound file and give back its path but the sound file is not played on the client and if the program is being run 2nd time the previous text is being played on the client browser where as the file in the folder on server is changed. why the file is not downloaded at client when it exists on the serve :(( r