Código:
Cuando corro el proyecto en el IDE, EMBED no encuentra el archivo, o no puede abrirlo por alguna razón. Estuve viendo que la petición GET se hace correctamente, en la carpeta donde se acaba de generar el archivo de sonido. Me suena a que el servidor no se entera de la existencia de ese archivo de sonido, puesto que recién se genera... estoy bastante confundido cualquier ayuda me viene muy bien..protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { // TODO Auto-generated method stub String p1 = request.getParameter("texto"); if(p1!=null) { Text2Sound ts = new Text2Sound(p1); response.setContentType("text/html"); File file = ts.getSound(); PrintWriter out = response.getWriter(); String s = "<body>"+ "<EMBED SRC=\"+file.getName()+" \" AUTOSTART=TRUE ></EMBED>"+ "</body>"; System.out.println("Path:"+s); out.print(s); } }
Gracias!