Forgot to include the list on the response... sorry!

-james

----- Original Message -----
From: "JD" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Sunday, May 20, 2001 8:19 PM
Subject: Re: File Transfers Over HTTP


> Here is something I found... don't remember where but it works pretty well
> on my IIS box.
>
>
> Everything is under D:\INETPUB (UPLOAD and FTP). I forget the IIS
> permissions you need-maybe scripting...?
>
> The way I work it is that when customers have to upload a file for the
> engineers to look at, they go to http://www.mycompany.com/upload (don't
have
> to specify upload.htm since I made that the deault page) and can upload up
> to four files at a time. It's easy to add more of course. The engineers
then
> go to \\SERVER\FTP and grab the files the customer has uploaded and do
their
> thing. The same thing works in reverse, the engineers put up a piece of
code
> in the \\SERVER\FTP directory and give the URL to the customer:
> http://www.mycompany.com/upload/filename.zip to go get. I don't allow
> browsing so the customer must know the exact filename.
>
> I'm not a coder so I'm not a good one to ask questions of about this but
> I'll try if things aren't clear.
>
> -james
>
>
> ============================
> D:\INETPUB\UPLOAD\UPLOAD.HTM
>
> <HTML>
> <BODY BGCOLOR="white">
>
> <H1>My Upload Utility</H1>
> <HR>
>
> <FORM METHOD="POST" ACTION="upload.asp" ENCTYPE="multipart/form-data">
>    <INPUT TYPE="FILE" NAME="FILE1" SIZE="50"><BR>
>    <INPUT TYPE="FILE" NAME="FILE2" SIZE="50"><BR>
>    <INPUT TYPE="FILE" NAME="FILE3" SIZE="50"><BR>
>    <INPUT TYPE="FILE" NAME="FILE4" SIZE="50"><BR>
>    <INPUT TYPE="SUBMIT" VALUE="Upload">
> </FORM>
>
> </BODY>
> </HTML>
>
> ============================
>
> D:\INETPUB\UPLOAD\UPLOAD.ASP
>
> <HTML>
> <BODY BGCOLOR="white">
>
> <H1>MyUpload Utility</H1>
> <HR>
>
> <%
> '  Variables
> '  *********
>    Dim mySmartUpload
>    Dim intCount
>
> '  Object creation
> '  ***************
>    Set mySmartUpload = Server.CreateObject("aspSmartUpload.SmartUpload")
>
> '  Upload
> '  ******
>    mySmartUpload.Upload
>
> '  Save the files with their original names in a virtual path of the web
> server
> '
>
****************************************************************************
>    intCount = mySmartUpload.Save("/Upload/ftp")
>    ' intCount = mySmartUpload.Save("/aspSmartUpload/Upload")
>    ' sample with a physical path
>    ' intCount = mySmartUpload.Save("d:\inetpub\ftp\")
>
> '  Display the number of files uploaded
> '  ************************************
>    Response.Write(intCount & " file(s) uploaded.")
> %>
> </BODY>
> </HTML>
>
> ============================
>
> -james
>
>
> ----- Original Message -----
> From: <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Sunday, May 20, 2001 3:31 PM
> Subject: File Transfers Over HTTP
>
>
> > Guys and Girls,
> >
> > Just a quick on.  I want to establish an easy to use FTP service for our
> > site but I am not happy with the use of FTP as it stands.  I know about
> > SSH, Open SSL etc but it is too time consuming to implement at this
time.
> > My other thought is to utilise file transfers over HTTP so SSL certs can
> be
> > implemented to provide the encryption.
> >
> > So my question is, does anyone know how to do this exactly.  The certs,
> > protocol etc I am happy with it is just getting HTTP to conduct the
> > transfers.  Is there an exe that has to be put in place, if so has
someone
> > got some code that I can use or point me in the right direction?
> >
> > anything would be really appreciated,
> >
> > thanks in advance,
> >
> >
> > John Taylor
> >
> >
> >
> >
> > -
> > [To unsubscribe, send mail to [EMAIL PROTECTED] with
> > "unsubscribe firewalls" in the body of the message.]
> >
>

-
[To unsubscribe, send mail to [EMAIL PROTECTED] with
"unsubscribe firewalls" in the body of the message.]

Reply via email to