473,387 Members | 1,504 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

uploading huge files

HI people, there is an alternative way to upload files than the ASP.NET
native way? Is OK for small files but It doesn't seems to be convenient for
an application where there is a lot of paralell uploadings of huge files
(50MB-100MB)

Any idea? open source components ?

thanks
Jul 21 '05 #1
10 1770
ftp an option for you?

--
William Stacey, MVP

"Mario Rodriguez" <mr********@avantica.net> wrote in message
news:#z**************@TK2MSFTNGP10.phx.gbl...
HI people, there is an alternative way to upload files than the ASP.NET
native way? Is OK for small files but It doesn't seems to be convenient for an application where there is a lot of paralell uploadings of huge files
(50MB-100MB)

Any idea? open source components ?

thanks


Jul 21 '05 #2
ftp an option for you?

--
William Stacey, MVP

"Mario Rodriguez" <mr********@avantica.net> wrote in message
news:#z**************@TK2MSFTNGP10.phx.gbl...
HI people, there is an alternative way to upload files than the ASP.NET
native way? Is OK for small files but It doesn't seems to be convenient for an application where there is a lot of paralell uploadings of huge files
(50MB-100MB)

Any idea? open source components ?

thanks


Jul 21 '05 #3
FTP is an "totally unsafe" protocol and my application have strong security
requirements
"William Stacey [MVP]" <st***********@mvps.org> wrote in message
news:eA*************@TK2MSFTNGP11.phx.gbl...
ftp an option for you?

--
William Stacey, MVP

"Mario Rodriguez" <mr********@avantica.net> wrote in message
news:#z**************@TK2MSFTNGP10.phx.gbl...
HI people, there is an alternative way to upload files than the ASP.NET
native way? Is OK for small files but It doesn't seems to be convenient

for
an application where there is a lot of paralell uploadings of huge files
(50MB-100MB)

Any idea? open source components ?

thanks

Jul 21 '05 #4
FTP is an "totally unsafe" protocol and my application have strong security
requirements
"William Stacey [MVP]" <st***********@mvps.org> wrote in message
news:eA*************@TK2MSFTNGP11.phx.gbl...
ftp an option for you?

--
William Stacey, MVP

"Mario Rodriguez" <mr********@avantica.net> wrote in message
news:#z**************@TK2MSFTNGP10.phx.gbl...
HI people, there is an alternative way to upload files than the ASP.NET
native way? Is OK for small files but It doesn't seems to be convenient

for
an application where there is a lot of paralell uploadings of huge files
(50MB-100MB)

Any idea? open source components ?

thanks

Jul 21 '05 #5
You can still make it "safe". The process that looks at files can look at
the file header. The file header must have a certain security code or key -
what ever you come up with. If it does not, delete the file. You can also
block ftp at the front door using proxy/firewalls so people can't even get
as far as sending a file. If it is really secure, you probably have a
firewall anyway to filter access to the port - right? Naturally, you can
always create a socket app and code the transfer and security yourself.
Remoting would also work, but not sure how much faster it would be over your
http transfer and you would still need to prog the security.

--
William Stacey, MVP

"Mario Rodriguez" <mr********@avantica.net> wrote in message
news:uG**************@TK2MSFTNGP11.phx.gbl...
FTP is an "totally unsafe" protocol and my application have strong security requirements
"William Stacey [MVP]" <st***********@mvps.org> wrote in message
news:eA*************@TK2MSFTNGP11.phx.gbl...
ftp an option for you?

--
William Stacey, MVP

"Mario Rodriguez" <mr********@avantica.net> wrote in message
news:#z**************@TK2MSFTNGP10.phx.gbl...
HI people, there is an alternative way to upload files than the ASP.NET native way? Is OK for small files but It doesn't seems to be convenient
for
an application where there is a lot of paralell uploadings of huge

files (50MB-100MB)

Any idea? open source components ?

thanks



Jul 21 '05 #6
You can still make it "safe". The process that looks at files can look at
the file header. The file header must have a certain security code or key -
what ever you come up with. If it does not, delete the file. You can also
block ftp at the front door using proxy/firewalls so people can't even get
as far as sending a file. If it is really secure, you probably have a
firewall anyway to filter access to the port - right? Naturally, you can
always create a socket app and code the transfer and security yourself.
Remoting would also work, but not sure how much faster it would be over your
http transfer and you would still need to prog the security.

--
William Stacey, MVP

"Mario Rodriguez" <mr********@avantica.net> wrote in message
news:uG**************@TK2MSFTNGP11.phx.gbl...
FTP is an "totally unsafe" protocol and my application have strong security requirements
"William Stacey [MVP]" <st***********@mvps.org> wrote in message
news:eA*************@TK2MSFTNGP11.phx.gbl...
ftp an option for you?

--
William Stacey, MVP

"Mario Rodriguez" <mr********@avantica.net> wrote in message
news:#z**************@TK2MSFTNGP10.phx.gbl...
HI people, there is an alternative way to upload files than the ASP.NET native way? Is OK for small files but It doesn't seems to be convenient
for
an application where there is a lot of paralell uploadings of huge

files (50MB-100MB)

Any idea? open source components ?

thanks



Jul 21 '05 #7
In article <eu**************@TK2MSFTNGP11.phx.gbl>, William Stacey [MVP] wrote:
You can still make it "safe". The process that looks at files can look at
the file header. The file header must have a certain security code or key -
what ever you come up with. If it does not, delete the file. You can also
block ftp at the front door using proxy/firewalls so people can't even get
as far as sending a file. If it is really secure, you probably have a
firewall anyway to filter access to the port - right? Naturally, you can
always create a socket app and code the transfer and security yourself.
Remoting would also work, but not sure how much faster it would be over your
http transfer and you would still need to prog the security.


How safe is safe? :)

Another way to make ftp safe is to use tunneling via ssh (for
example). There is information on the net how to do that.
Jul 21 '05 #8
In article <eu**************@TK2MSFTNGP11.phx.gbl>, William Stacey [MVP] wrote:
You can still make it "safe". The process that looks at files can look at
the file header. The file header must have a certain security code or key -
what ever you come up with. If it does not, delete the file. You can also
block ftp at the front door using proxy/firewalls so people can't even get
as far as sending a file. If it is really secure, you probably have a
firewall anyway to filter access to the port - right? Naturally, you can
always create a socket app and code the transfer and security yourself.
Remoting would also work, but not sure how much faster it would be over your
http transfer and you would still need to prog the security.


How safe is safe? :)

Another way to make ftp safe is to use tunneling via ssh (for
example). There is information on the net how to do that.
Jul 21 '05 #9
Another way to make ftp safe is to use tunneling via ssh (for
example).


true. forgot about ssh. Cheers!
Jul 21 '05 #10
Another way to make ftp safe is to use tunneling via ssh (for
example).


true. forgot about ssh. Cheers!
Jul 21 '05 #11

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: ok | last post by:
Hello, Q: How do I get image width and height before uploading an image? This because, I want to restrict people uploading huge files. Thanks in advance
4
by: dickiedyce | last post by:
Hi there. I've spent the weekend getting ever more frustrated, trying to get an upload file function working on a website. The site is hosted by a company called oneandone. They're using PHP...
9
by: R. Rajesh Jeba Anbiah | last post by:
Q: How should I handle file upload? A: File uploading requires HTML form of content type "multipart/form-data". The file content has to be POSTed/submitted via the form and once the file is...
5
by: Ron Brennan | last post by:
Good afternoon. The entire task that I'm trying to achieve is to allow a user to browse and upload multiple files simultaneously, hiding the Browse button of <input> tags of type="file" and...
2
by: Mario Rodriguez | last post by:
HI people, there is an alternative way to upload files than the ASP.NET native way? Is OK for small files but It doesn't seems to be convenient for an application where there is a lot of paralell...
13
by: Sky Sigal | last post by:
I have created an IHttpHandler that waits for uploads as attachments for a webmail interface, and saves it to a directory that is defined in config.xml. My question is the following: assuming...
3
by: detrox | last post by:
Hi, all I have two questions about uploading files using php & html: 1. How can i add a `file type' in the pop window when i click `browse' button of the `<input type=file>'. 2. How can i get...
221
Atli
by: Atli | last post by:
You may be wondering why you would want to put your files “into” the database, rather than just onto the file-system. Well, most of the time, you wouldn’t. In situations where your PHP application...
3
by: muziburrehaman | last post by:
i am looking for code in php to upload the 1 gb files. any one can please help me by sending the code....
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.