0

I'm a newb in this thing. I want to send files from a few client systems to a server over static IP. They're connected via a LAN. The files are created on a WPF app on clients and should be sent to the server which also has a WPF app.

a_rahmanshah
  • 1,636
  • 2
  • 22
  • 35
  • 2
    the fact that it's a static IP should be meaningless. You could use a custom WCF service, FTP, or even a simple copy over UNC path since they're on the same LAN – Jason Jun 26 '12 at 15:35
  • This isn't a question. Are you asking about protocols? What have you considered? – bmm6o Jun 27 '12 at 03:13
  • @bmm6o Yes, I need information about protocols. I've considered WCF. I want it to be simple coz I've never done stuff like this before. – a_rahmanshah Jun 28 '12 at 05:12

1 Answers1

1

The easiest protocols to you will be the ones you don't have to implement yourself. Can you use shared network drives, ftp or http? WCF would also be easy to implement, even if it's overkill.

bmm6o
  • 6,187
  • 3
  • 28
  • 55
  • I dunno buddy. All the computers are connected via a LAN, so what's the best thing to send files and streams of data? – a_rahmanshah Jul 03 '12 at 16:54
  • There's not enough information to give a real answer. If you can share a directory on the server, that would be simple. Can you do it, I don't know. – bmm6o Jul 05 '12 at 00:14