Redirect an HTTP or RTSP session through server-side code with the Wowza Streaming Engine Java API

You can redirect an RTSP or HTTP streaming session using the Wowza Streaming Engine™ Java API.

To redirect an HTTP session the code looks like this:

public void onHTTPSessionCreate(IHTTPStreamerSession httpSession)
{
	httpSession.redirectSession("http://192.168.1.22:1935/myApplication/mp4:sample.mp4/playlist.m3u8");
}

To redirect an RTSPsession the code looks like this:

public void onRTPSessionCreate(RTPSession rtpSession)
{
	rtpSession.redirectSession("rtsp://192.168.1.22:1935/myApplication/mp4:sample.mp4");
}

The above methods will send a 302 redirect. There are additional APIs to control the response code. See the server-side API documentation for IHTTPStreamerSession and RTPSession.

Note: Not all RTSP and HTTP players support redirects.