Hi Ben,
Unfortunately, Stream Manager does not support RTSP at all. Rather, the Stream Manager HTTP interface works as follows:
When the first SIP request comes for the particular HTTP source, Stream Manager tries to open TCP/IP connection to the specified host and port
If the TCP/IP connection fails, Stream Manager responds with a 404 Not Found SIP message
If the TCP/IP connection is successful Stream Manager sends the following HTTP request on the opened connection:
GET /xxxxxxxx HTTP/1.1 \r\n
Host: xxxxxxx \r\n
Accept: text/html, audio/x-wav \r\n
Connection: close \r\n
User-Agent: StreamManager/7.2.001.00 \r\n
\r\n
In response, Stream Manager expects the following HTTP message (on receiving response with code different from 200 OK, it will translate the error code into correspondent SIP response code sent to requester and close TCP/IP to the media gateway):
HTTP/1.1 200 OK \r\n
…
Content-Type: audio/x-wav \r\n
…
\r\n
Raw audio stream or Audio in WAV format
Any other HTTP header lines present in the response is printed into the Stream Manager log file, but otherwise ignored
Stream Manager expects audio stream be either a header-less audio stream or a stream formed according to the WAV format standard, i.e. with standard WAV header, although Stream Manager ignores size fields of group header and data chunk in stream mode
After getting the initial response, Stream Manger expects audio data coming at the appropriate rate (8000 bytes per second for G.711 codec). Alignment between audio frames and TCP/IP packet are not required, as Stream Manager uses internal jitter buffer between HTTP connection and RTP stream generator
The only known media server which works with the Genesys Stream Manager HTTP protocol is the Mayah Centauri product line (http://www.mayah.com/products/cent2-4000-overview.htm).
To make Stream Manager work with other media servers such as Windows Media Services you need to write a piece of proxy code that accepts HTTP messages from Stream Manager and then send a SETUP followed by PLAY message to the RTSP server