You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by aswath satrasala <as...@hotmail.com> on 2001/05/26 18:53:55 UTC

uploading 1 GB files using FTP from my website

I don't want to do it through URLs.
I would like to do it with in my webapplication, using HTML form

-Aswath

>From: Kris Gonzalez <ji...@softhome.net>
>Reply-To: tomcat-user@jakarta.apache.org
>To: tomcat-user@jakarta.apache.org
>Subject: Re: uploading 1 GB files using FTP
>Date: Sat, 26 May 2001 04:30:54 -0500
>
>current versions of netscape and ie allow for ftp access, so your main
>trial would be dynamically constructing ftp urls which allow for
>access...
>
>and this is really no problem at all:  just have your user go through
>some sort of login mechanism, which dynamically constructs a link in the
>form of:
>
>ftp://username:password@ftp.server.com
>
>the user clicks, they have access to the ftp server, and can use thier
>browser to perform the uploads
>
>-kg
>
>
>
>aswath satrasala wrote:
> >
> > Hello,
> > I had posted this message earlier.
> > I am posting again for more information.
> >
> > How can the user upload 1GB file using FTP.
> >
> > I am currently planning to use multipart form posting and using
> > JSPSmart free download.
> > I heard from the userlist, that this will be very slow, and
> > should think of using FTP.
> >
> > How can I give FTP upload to the user from my web site
> >
> > Thanks
> > -Aswath
> > _________________________________________________________________
> > Get your FREE download of MSN Explorer at http://explorer.msn.com

_________________________________________________________________
Get your FREE download of MSN Explorer at http://explorer.msn.com


Re: uploading 1 GB files using FTP from my website

Posted by Steve Ruby <st...@rubysolutions.com>.
If you want to do it with an HTML form, then that isn't ftp, that
is a multi-part mime encoded form post.  I wouldn't do that
with a 1 gig file if I were you. It isn't as robust as FTP
and the mime-encoding will add size to thie file and time to
the upload.

But if you want to try all you need is a servlet to accept
the post and decide it. The package at
http://servlets.com/cos/index.html
has some functionality for handling multi-part mime data.



aswath satrasala wrote:
> 
> I don't want to do it through URLs.
> I would like to do it with in my webapplication, using HTML form
> 
> -Aswath
> 
> >From: Kris Gonzalez <ji...@softhome.net>
> >Reply-To: tomcat-user@jakarta.apache.org
> >To: tomcat-user@jakarta.apache.org
> >Subject: Re: uploading 1 GB files using FTP
> >Date: Sat, 26 May 2001 04:30:54 -0500
> >
> >current versions of netscape and ie allow for ftp access, so your main
> >trial would be dynamically constructing ftp urls which allow for
> >access...
> >
> >and this is really no problem at all:  just have your user go through
> >some sort of login mechanism, which dynamically constructs a link in the
> >form of:
> >
> >ftp://username:password@ftp.server.com
> >
> >the user clicks, they have access to the ftp server, and can use thier
> >browser to perform the uploads
> >
> >-kg
> >
> >
> >
> >aswath satrasala wrote:
> > >
> > > Hello,
> > > I had posted this message earlier.
> > > I am posting again for more information.
> > >
> > > How can the user upload 1GB file using FTP.
> > >
> > > I am currently planning to use multipart form posting and using
> > > JSPSmart free download.
> > > I heard from the userlist, that this will be very slow, and
> > > should think of using FTP.
> > >
> > > How can I give FTP upload to the user from my web site
> > >
> > > Thanks
> > > -Aswath
> > > _________________________________________________________________
> > > Get your FREE download of MSN Explorer at http://explorer.msn.com
> 
> _________________________________________________________________
> Get your FREE download of MSN Explorer at http://explorer.msn.com