So I want to have have some service with url example.com:4773/routerService .
I am gouing to have some wary simple client which will take some address and start streaming data to it, binary data like mp3 or pcm stream so no serialisation no special mesages just star streaming pure stream to URL.
So my client will go to URL like example.com:4773/routerService.svc?ID=Any_ID_string and start sending data to it (he will not care or what Router will respond to him) . Now my roter will filter that url and HERE WHERE MY Question starts.
Router vill be reciving TCP stream... theoreticaly... and will be able to send it forvard to other my WCF servises.
how to create such router? I need a code example.