From: Jerry Spence1 on
I want to read a stream in from an Axis IP Camera and serve it out to a
number of connected PCs.
I can get the stream as follows:

Dim MyWebResponse As WebResponse = Nothing

Dim myWebRequest As WebRequest =
WebRequest.Create("http://x.x.x.x/axis-cgi/mjpg/video.cgi")

MyWebResponse = myWebRequest.GetResponse()

Dim ReceiveStream As Stream = MyWebResponse.GetResponseStream()

Dim fs As New StreamReader(ReceiveStream)

But then I get stuck (its a continuous stream). I then need to stream it out
to a number of IP addresses and I haven't a clue how to do that!

Any ideas? Thanks.

-Jerry