I am developing an Android app that should be capable of streaming video to a local server on my network without storing it on SD card.
For this I have made simple socke
There was problem in my server code.
I had to use TcpListener in place of TcpClient.
TcpListener
TcpClient
Following is the correct code:
TcpListener listener = new TcpListener(ipAddress, 8210); Socket s = listener.AcceptSocket(); NetworkStream ns = new NetworkStream(s); . . . //reading the data from stream . . .