ActiveX EXE equivalent?
-
Hi, I'm new to .Net and very much need to know how I go about creating a server on a client PC that I can hook other applications into ?? I don't want to use remoting as its on the same client machine but I need to keep a stategull component that is instantiated by the first app to hook to it and avaialble to other apps to hook into ?? Thanks Chubby..
-
Hi, I'm new to .Net and very much need to know how I go about creating a server on a client PC that I can hook other applications into ?? I don't want to use remoting as its on the same client machine but I need to keep a stategull component that is instantiated by the first app to hook to it and avaialble to other apps to hook into ?? Thanks Chubby..
One possibility is to use Sockets, and listen only on the 127.0.0.1 interface. But, that's a lot of manual work, developing a basic protocol for the communication and then the code to transfer and respond to whatever you send or receive. John
"You said a whole sentence with no words in it, and I understood you!" -- my wife as she cries about slowly becoming a geek. -
One possibility is to use Sockets, and listen only on the 127.0.0.1 interface. But, that's a lot of manual work, developing a basic protocol for the communication and then the code to transfer and respond to whatever you send or receive. John
"You said a whole sentence with no words in it, and I understood you!" -- my wife as she cries about slowly becoming a geek.Thanks John. I've decided to look at Remoting, got the simple one working (MSDN)....Will post another thread more approriate to my problems now. Thanks again. Chubby..