P2P file sharing and messaging
-
hi im working on an application P2P file sharing (like eDonkey) and instant messaging. what tecnologies should i use? Web Services, RPC, XML or something like that. i know C++ and Delphi and Multithreaded, Socket programming but im new at C# and Microsoft .NET technologies. please help me, really i don't know where to start! thank you. asamay
-
hi im working on an application P2P file sharing (like eDonkey) and instant messaging. what tecnologies should i use? Web Services, RPC, XML or something like that. i know C++ and Delphi and Multithreaded, Socket programming but im new at C# and Microsoft .NET technologies. please help me, really i don't know where to start! thank you. asamay
You might want to put your knowledge into developing a C++/CLI application then. It's C++ with .NET.
ROFLOLMFAO
-
hi im working on an application P2P file sharing (like eDonkey) and instant messaging. what tecnologies should i use? Web Services, RPC, XML or something like that. i know C++ and Delphi and Multithreaded, Socket programming but im new at C# and Microsoft .NET technologies. please help me, really i don't know where to start! thank you. asamay
Hello Even P2P programs need servers to organize all those peers. Make a Socket application that would act as a listner server to accept peers and synchronize between them. Then make you client app that would get the ips of other peers from that server, then directly contact those peers by ip.
System.Net.Sockets
namespacce has all that you need.Regards:rose:
-
Hello Even P2P programs need servers to organize all those peers. Make a Socket application that would act as a listner server to accept peers and synchronize between them. Then make you client app that would get the ips of other peers from that server, then directly contact those peers by ip.
System.Net.Sockets
namespacce has all that you need.Regards:rose:
thanks, its not a pure P2P application as u told, there is a discovery server for authorizing and locating sharing file list and some permissions about them. i found an article about P2P programming with .NET technologies, here it is http://msdn.microsoft.com/msdnmag/issues/01/02/netpeers/default.aspx it will be very useful for developing P2P app with .NET thanks again. asamay