P2P messaging and file sharing
C#
3
Posts
2
Posters
0
Views
1
Watching
-
im working on a P2P messaging and file sharing app with C#. i want to use HTTP between peers in case the packets might be dropped by firewalls. how can i do this? wht technologies should i use? :confused: thanks... asamay
-
You could emulate a very simple Web server. Use a
TcpListener
to listen on Port 80 and handle some very basic HTTP requests. On the client side you can use aHttpWebRequest
do send/read the data you need. regards