Hello,
I try to realize a Streaming Plugin for the Tomcat Server 4.
In my opinion there are tow ways to do that:
1. To use the Generic Servlet and realize all RTSP Messages with the Request, Response Objects. The Servlet which handles the RTSP Requests is set as a new Connector in the Server.xml file.(Port, Clients etc) Does the Server parse the incoming Messages for me ? Will it work this way ? Can Requests in the form "rtsp://serverort/file" send to the server?
2. The second way is, to realize the RTSP Plugin as a Bean(I use Spring), which creates a new Socket for RTSP communication. Every request will be sent to the Plugin Socket without the use of Tomcat. The Requests are handled and parsed only by the Plugin.
Whats the better way to do it?!?!?! Any Ideas?
RTP is doen with the JMF.
Robert
I try to realize a Streaming Plugin for the Tomcat Server 4.
In my opinion there are tow ways to do that:
1. To use the Generic Servlet and realize all RTSP Messages with the Request, Response Objects. The Servlet which handles the RTSP Requests is set as a new Connector in the Server.xml file.(Port, Clients etc) Does the Server parse the incoming Messages for me ? Will it work this way ? Can Requests in the form "rtsp://serverort/file" send to the server?
2. The second way is, to realize the RTSP Plugin as a Bean(I use Spring), which creates a new Socket for RTSP communication. Every request will be sent to the Plugin Socket without the use of Tomcat. The Requests are handled and parsed only by the Plugin.
Whats the better way to do it?!?!?! Any Ideas?
RTP is doen with the JMF.
Robert