SMIL & JSP

webmasterbeta

New Member
HI,

I'm developing a SMIL presentation that contains a < text > sequency.
I need the src attributte calls a jsp page:

< text src=http://www.webdeveloper.com/forum/archive/index.php/"212.../lib.jsp?text=hello" >

I send a text parameter that the server process. I'm trying with the most simple example:

<%@page contentType="text/plain"%>
<% String text=request.getParameter("text");
text="data:,"+text;
out.println(text); %>

In this way the jsp page returns a http response header with the text to show in the smil ppt.

Something is wrong. When I play the content of the smil, the Real Player indicates that " the file has data imposible to recognize or maybe the file is damaged".Why?

Somebody knows how to do this or something similar? (Even with php)

How can we work with jsp and smil?.

Thanks in advance. Regards.
 
Back
Top