We have worked on a replacement script for the rmstreams/rastreams code in servdb. The code in servdb that handles this is pretty old.
We placed it in two jsp files, which we can configure to be called as if they are servlets, thus making it possible to remove the code in servdb (in 1.7, maybe>)
The two files are included as attachments. They produce smil code and can be called in a manner similar to the servdb servlet.
You can place them in your server, and configure them to be called as servlets using:
<!-- Servlet (jsps) for streams video) -->
<servlet>
<servlet-name>rmstream</servlet-name>
<jsp-file>/smil/rmstream.jsp</jsp-file>
</servlet>
<!-- Servlet (jsps) for streams (audio) -->
<servlet>
<servlet-name>rastream</servlet-name>
<jsp-file>/smil/rastream.jsp</jsp-file>
</servlet>
<servlet-mapping>
<servlet-name>rmstream</servlet-name>
<url-pattern>/rmstreams.db</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>rastream</servlet-name>
<url-pattern>/rastreams.db</url-pattern>
</servlet-mapping>
If you make use of rmstreams.db or rastreams.db, I would advise to replace these calls with the jsps and reconfigure your web xml.
Once this is done we can remove the then obsolete code in servdb (making us all a bit happier).
Pierre
rmstream.jsp
Description: Binary data
rastream.jsp
Description: Binary data
