vote up 0 vote down star

I have Virtual PC 2007. I am writing a C# program that will run on the Host and Virtual. It needs to communicate both ways.

What is the best way to do this?

Can it be done in a way that does not require changing Virtual settings?

(the OSs will be XP, Vista, Server 2000 / 2003)

flag

48% accept rate

3 Answers

vote up 3 vote down check

WCF. .NET Remoting without the calls to the suicide prevention hotline.

link|flag
Good to know, suicide prevention hotline calls should be prevented if possible :) – GavinCattell Oct 27 '08 at 13:15
vote up 4 vote down

Via TCP. Simple client/server setup.

or

.NET Remoting

link|flag
vote up 1 vote down

WCF is definitely the way to go. Whether or not is requires changing the virtual settings depends on how your virtual machine is set up.

The most secure way would be to create a new private network that just the host and guest can access. That way you don't have to worry about changing any firewall settings on your main network interface to allow the server and client to communicate.

OTOH if security isn't a concern then the standard bridged networking options for the guest will work fine.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.