Best file transfer mechanism

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,
I want customers to be able to transfert files to my server (not forcefully
a Web server). What is the fastest solution ?
For the moment I see 3 possibilities: .NET remoting hosted by IIS using Http
transport and binary formatter, XML Web service using WSE 3 and a WebClient
sending the file to an ASP.NET page.
 
Hello zolof,

If your customer is inside the network the remoting is the fastest, in fact
EnterpriseServices faster rather then remoting.
But remoting/ES more appropriate to enterprise application, not for internet
one.
For external customers WS is more secure and perspective solution (WSE 3.0
offers u MTOM where you can zip your files and send them by parts

z> I want customers to be able to transfert files to my server (not
z> forcefully
z> a Web server). What is the fastest solution ?
z> For the moment I see 3 possibilities: .NET remoting hosted by IIS
z> using Http
z> transport and binary formatter, XML Web service using WSE 3 and a
z> WebClient
z> sending the file to an ASP.NET page.
---
WBR,
Michael Nemtsev :: blog: http://spaces.msn.com/laflour

"At times one remains faithful to a cause only because its opponents do not
cease to be insipid." (c) Friedrich Nietzsche
 
Thanls for your response. Do you know where I can get some samples about WSE
3.0 and file transfert ?
 
Back
Top