0

I'm looking for a starting point and I know my solution has to incorporate MSMQ as part of it.

I have a server that users drop a file into a directory. I have a client that listens to the directory and when something is dropped into that directory the client SFTP's it to a local directory.

Can some one give me a starting point of what technologies I may need to implement this?

A previous developer used Top Shelf and Mass Transit but we have been asked to create our own version as we won't need all the functionality that is available in these two projects. That and also those two open source projects haven't been to reliable.

Thanks.

gsirianni
  • 1,334
  • 2
  • 18
  • 35
  • I wrote an application that does something similar to this for my company I'd be happy to answer any specific questions that you have, but the System.IO.FileSystemWatcher is a good starting point. I woudl advise you to read-up on it first though, because there are caveats with its use and you will want to make sure that it fulfills your needs. – Paula Bean Jan 11 '11 at 20:44
  • 1
    What has MSMQ got to do with file watching? Are you mixing the two technologies? – Rob Jan 12 '11 at 07:33

1 Answers1

2

I think looking at System.IO.FileSystemWatcher will be good starting point if you are planning to implement in .net

KBBWrite
  • 4,373
  • 2
  • 20
  • 22