Ok so this is the first time I'm playing with .net remoting but seems fun so far.
Creating a server that exposes a remoting object and then consuming it from a client is a piece of cake and works like a charm. (I'm using a TcpChannel btw)
What I wanna do now is reverse the connection. Currently the server opens a port and listens for the client, the client connects and gets the reference of the object and has fun with it. The only thing I want changed is that the client will wait for the connection instead of the server. The object should be still created on the server and used from the client.
Does this make sense to anyone?! And if so, is this possible?