I have coded an addressbook program, which manages a list of contacts and so on. Now I want to be able to send one contact to another computer on the same local network. I am pretty new to C# (I started some months ago) and I have already read a lot about WCF, but it seems like I always would need some kind of server (like IIS) to host a service, where my client program would listen at. But what if I don't have anything like a server to host that service?
All I want to do is enter the IP of the computer who should receive the contact and then it will get the contact.
How can i achieve that on an "easy" way? I dont know much about TCP/Ip stuff yet.
The contact should be sent as string in XML format or as object (or whatever is possible).