Re: [ADVANCED-DOTNET] Automatic synchronisation

2008-04-07 Thread Mont Rothstein
I've also successfully used BITS. The wrapper I've used is SharpBITS located here: http://www.codeplex.com/sharpbits -Mont === This list is hosted by DevelopMentorĀ® http://www.develop.com View archives and manage your subscription(s) at http://discuss.develop.c

Re: [ADVANCED-DOTNET] Automatic synchronisation

2008-04-07 Thread Wilson, Phil
I've used BITS for uploading to IIS servers. It has some useful attributes - it's restartable, has a programmatic interface, uses HTTP to help relieve firewall port issues (with AD support for minimizing the load), proxy server support. There are some .NET interop C# examples around - http://ww

Re: [ADVANCED-DOTNET] Automatic synchronisation

2008-04-07 Thread Howard Hoffman
Neither FTP nor WCF/MTOM will give you File-Watcher semantics. However, if you are not within a local area network, then File-Watcher is out anyway. I've been using WSE3/MTOM for a couple of years now, and it's very good. FTP is also very very good. I've never profiled them side-by-side but I wo

Re: [ADVANCED-DOTNET] Automatic synchronisation

2008-04-07 Thread Paul Cowan
SAP is just one potential source. What I am looking for is a better solution than FTP to get me the migration file.Would WCF and MTOM be a better solution.I tried DIME before and it was a bit flakey to say the [EMAIL PROTECTED]> Date: Mon, 7 Apr 2008 07:35:38 -0400> From: [EMAIL PROTECTED]> Sub

Re: [ADVANCED-DOTNET] Automatic synchronisation

2008-04-07 Thread Phil Sayers
Does this help you? .Net/SAP connector http://help.sap.com/saphelp_nw2004s/helpdata/en/e9/23c80d66d08c4c8c044a3ea11 ca90f/content.htm -Original Message- From: Discussion of advanced .NET topics. [mailto:[EMAIL PROTECTED] Behalf Of Paul Cowan Sent: Sunday, April 06, 2008 5:59 AM To: ADV

Re: [ADVANCED-DOTNET] Automatic synchronisation

2008-04-06 Thread John Warner
Is the goal to do this when the 'user' alters the local xls file, then take a look at the System.IO.FileSystemWatcher class? It fires an event when a 'watched' file or folder is altered. It saves you writing the polling loop. But this depends on the process that occurs at the remote locations. Joh