TFTP Programming

  • Thread starter Thread starter Jason
  • Start date Start date
J

Jason

Hello

I'm going to be doing some programming to communicate to a piece of hardware
using TFTP. I'm not familiar with TFTP at all, and I was wondering if there
is any help or C# classes or example programming that will help me out.

Thanks
 
Jason said:
Hello

I'm going to be doing some programming to communicate to a piece of hardware
using TFTP. I'm not familiar with TFTP at all, and I was wondering if there
is any help or C# classes or example programming that will help me out.

There is no support specifically in .NET for TFTP. On the .NET side,
you'll probably want to learn about the System.Net.Sockets namespace,
where you can find various classes to support network i/o. For the
TFTP-specific information, you should look for a forum or other
reference that is specific to TFTP.

Pete
 
I'm going to be doing some programming to communicate to a piece of
hardware using TFTP. I'm not familiar with TFTP at all, and I was
wondering if there is any help or C# classes or example programming
that will help me out.

There's a TFTP client included in WinXP (...\WINDOWS\system32\tftp.exe).

If all you need to do is move files between a PC and a piece of
hardware, maybe you could get away with just spawning a process.
 
Back
Top