passing an object from one application to another..

M

Michael J. Ryan

can anyone point out some examples of this?

essentially, I want to have a service application that controls inbound
connections, and a console/control application that communicates with it
to view current connections, and stats etc...

Was thinking of running a service on a given tcp port, and passing a
"request" object serialized, and the server returning a serialized response
object... are there any examples anyone can show me on this?

might be easiest to do the above, and only allow one request per connection,
but there will probably be 8-10 requests needed for the controller app.

was thinking of using windows messages, but wasn't sure how to do this in .net,
and wanted to stay out of the windows api if possible.
 
J

J.Marsch

Check out a topic called "Remoting". This should let you do what you're
after, and it will not require that you get down into the win API.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top