Re: [ADVANCED-DOTNET] Bulk data transfer of xml-based data: Best methods

2005-03-26 Thread saad rehmani
anything over http (including webservices) might / should support http compression. i.e., it be able to uncompress streams with a 'Content-Encoding: gzip' before passing it onto the web service. its worth a test :) -saad --- Philip Nelson <[EMAIL PROTECTED]> wrote: > --- Julia Lerman <[EMAIL PR

Re: [ADVANCED-DOTNET] Bulk data transfer of xml-based data: Best methods

2005-03-26 Thread Philip Nelson
--- Julia Lerman <[EMAIL PROTECTED]> wrote: > Beware that the webclient class, which has fileupload and filedownload > methods currently does not support FTP, though it will in Whidbey. Good point. I'll just add a couple of points I thought of while skimming the posts. FTP is almost always a poo

Re: [ADVANCED-DOTNET] Bulk data transfer of xml-based data: Best methods

2005-03-26 Thread Julia Lerman
26, 2005 9:50 AM To: ADVANCED-DOTNET@DISCUSS.DEVELOP.COM Subject: Re: [ADVANCED-DOTNET] Bulk data transfer of xml-based data: Best methods I think there are some classes in .net which wrap wininet which is a windows api which supports ftp and a few other things. -Original Message- From

Re: [ADVANCED-DOTNET] Bulk data transfer of xml-based data: Best methods

2005-03-26 Thread Alex Smotritsky
: ADVANCED-DOTNET@DISCUSS.DEVELOP.COM Subject: Re: [ADVANCED-DOTNET] Bulk data transfer of xml-based data: Best methods Another con for using FTP: No native facilities in .NET to complete the transfer. This third-party (unless you write it yourself of course, but I'm assuming that's not th

Re: [ADVANCED-DOTNET] Bulk data transfer of xml-based data: Best methods

2005-03-25 Thread Bill Bassler
Absolutely. Thanks === This list is hosted by DevelopMentorĀ® http://www.develop.com View archives and manage your subscription(s) at http://discuss.develop.com

Re: [ADVANCED-DOTNET] Bulk data transfer of xml-based data: Best methods

2005-03-25 Thread Julia Lerman
ADVANCED-DOTNET@DISCUSS.DEVELOP.COM Subject: Re: [ADVANCED-DOTNET] Bulk data transfer of xml-based data: Best methods RE: I use xceed's streaming compression for .net component to return large (2-4 mb) xml docs from web services. Question: When you say you compress the xml document and retur

Re: [ADVANCED-DOTNET] Bulk data transfer of xml-based data: Best methods

2005-03-25 Thread Bill Bassler
RE: I use xceed's streaming compression for .net component to return large (2-4 mb) xml docs from web services. Question: When you say you compress the xml document and return from a web service ... can you elaborate. Are you saying that after compression a web service web method exposes/returns s

Re: [ADVANCED-DOTNET] Bulk data transfer of xml-based data: Best methods

2005-03-25 Thread Reich, Joe
e are courtesy of the Ar Jo Beaureau of Statistics (ArJo B.S.) > -Original Message- > From: Kamen Lilov > Sent: Friday, March 25, 2005 9:35 AM > To: ADVANCED-DOTNET@DISCUSS.DEVELOP.COM > Subject: Re: [ADVANCED-DOTNET] Bulk data transfer of > xml-based data: Best methods > &

Re: [ADVANCED-DOTNET] Bulk data transfer of xml-based data: Best methods

2005-03-25 Thread Julia Lerman
opics.' Subject: RE: [ADVANCED-DOTNET] Bulk data transfer of xml-based data: Best methods I use xceed's streaming compression for .net component to return large (2-4 mb) xml docs from web services. It does a fantastic job and was easier than writing my own soap extension . Also note that comp

Re: [ADVANCED-DOTNET] Bulk data transfer of xml-based data: Best methods

2005-03-25 Thread Julia Lerman
From: Unmoderated discussion of advanced .NET topics. [mailto:[EMAIL PROTECTED] On Behalf Of Kamen Lilov Sent: Friday, March 25, 2005 9:35 AM To: ADVANCED-DOTNET@DISCUSS.DEVELOP.COM Subject: Re: [ADVANCED-DOTNET] Bulk data transfer of xml-based data: Best methods Have you considered using a third-party comp

Re: [ADVANCED-DOTNET] Bulk data transfer of xml-based data: Best methods

2005-03-25 Thread Kamen Lilov
advanced .NET topics. [mailto:[EMAIL PROTECTED] On Behalf Of Bill Bassler Sent: Friday, March 25, 2005 2:44 PM To: ADVANCED-DOTNET@DISCUSS.DEVELOP.COM Subject: [ADVANCED-DOTNET] Bulk data transfer of xml-based data: Best methods I have a requirement to download fairly sizable blocks of xml (~3 MB

Re: [ADVANCED-DOTNET] Bulk data transfer of xml-based data: Best methods

2005-03-25 Thread Chad Osgood
Another con for using FTP: No native facilities in .NET to complete the transfer. This third-party (unless you write it yourself of course, but I'm assuming that's not the approach you wish to take) dependency might be another cause for concern. If your file were ~30MB instead of ~3MB I would pro

[ADVANCED-DOTNET] Bulk data transfer of xml-based data: Best methods

2005-03-25 Thread Bill Bassler
I have a requirement to download fairly sizable blocks of xml (~3 MB) to externally located client pcs machines(across the Internet). The received data will then be persisted to a small client side database by a local VB6 application. Plus, for some client sites, this amount of data would need to b