Anton Setiawan
Anton Setiawan

Reputation: 903

Remote Windows and Windows Mobile

I need to find a way to remote & communicate between windows pc and windows mobile via C#. What is the best way to do it via C# ?

Upvotes: 1

Views: 549

Answers (3)

t0mm13b
t0mm13b

Reputation: 34592

Check out dotnetremoting.com which you can do that, ok it's commercial and may do what you are looking for.

Hope this helps.

Upvotes: 0

Marcel
Marcel

Reputation: 15722

have a look on this: Windows Mobile (C#) - Communicating between phone and PC

I would recommend using WCF, since it is a recent technology and would enable talking to any compatible device, not only to a windows pc.

br, Marcel

Upvotes: 0

ctacke
ctacke

Reputation: 67168

We need a lot more info on exactly what you need to do. For example RAPI provides a communication interface and you can write custom RAPI libraries. That gives the PC the ability to call methods on the device, but it's a far, far cry from actual Remoting.

Upvotes: 2

Related Questions