"Mini-streams" of data to Web app

I have one Web app doing some processing in realtime and another which ‘consumes’ that data for some more realtime processing before presenting to the browser. It’s a stateless environment without SSL so I don’t want to close the connection (i.e. Return True in handle URL of the server Web app. ) but want to keep on feeding the data through. It looks to me like I need to implement TCP sockets on both sides which I haven’t done before. Am I on the right track?

Thanks in advance…

I have found this post https://forum.xojo.com/34730-rtsp-in-web-edition/0 which indicates Web edition should not be the server… But there is nothing on http://www.zedalis.com/ more about this topic.

However the stream is not a lot of data only realtime so if I can limit the stream to bursts of 30 milliseconds (say enough for 300K @ 12MB/s) that should not interfere with Web app threading of up to 20 UI presentation users with not much business logic? (i.e. 30 x 20 = 600 milliseconds). However our load is probably only 50K max per burst = < 10ms.