Ask a Question related to ASP.NET General, Design and Development.
-
Rosie Chua #1
Uploading files up to 150MB onto server
Dear all,
I am running an online file management server that allows web clients to
upload files from a webform to the web server.
Using the code
"filename.PostedFile.SaveAs(fullPath);"
I have no problem uploading file with size up to 25MB, but the page starts
to create problem with any size above 25 MB - the error message displayed is
"Server Unavailable" or occasionally it just dies off.
I am running the web server using ASP.net framework 1.0 developed using C#
In the Application Log of the machine's event viewer, I get these message:
Event Type: Error
Event Source: ASP.NET 1.0.3705.288
Event Category: None
Event ID: 1003
Date: 6/26/2003
Time: 10:45:47 AM
User: N/A
Computer: ROSIE
Description:
aspnet_wp.exe (PID: 2108) was recycled because it was suspected to be in a
deadlocked state. It did not send any responses for pending requests in the
last 180 seconds.
Event Type: Error
Event Source: ASP.NET 1.0.3705.288
Event Category: None
Event ID: 1001
Date: 6/26/2003
Time: 9:54:35 AM
User: N/A
Computer: ROSIE
Description:
aspnet_wp.exe (PID: 1532) was recycled because memory consumption exceeded
the 306 MB (60 percent of available RAM).
I'd set the following value on Web.Config, but it still doesn't work:
<httpRuntime maxRequestLength="153600" />
Anyone know how to go around this problem? The uploaded file size could be
up to 150MB in size.
Cheers
Rosie Chua
Rosie Chua Guest
-
Web Service: Uploading files and setting file security on a file server
I have written a web service that provides the following methods: UploadFile SetNTFSSecurity Their purpose is to allow a user to Upload a file... -
Problems: uploading files have Chinese named files
Hi everyone, I try to upload file by using asp.net, code like that: <script language="VB" runat="server"> Sub Upload(Source As Object, e As... -
Uploading files to server from Flash using php
Hi. We have an Flash-application, running as exe-file. It uses a lot og php pages to get/send some information to server. The user can enter some... -
uploading fiels from one unix server to another server usin perl cgi script.
Hi all, I have a task at hand , that of uplaoding file from server to another server and also pass 6 paramteres along with the file. ... -
Ken Cox [Microsoft MVP] #2
Re: Uploading files up to 150MB onto server
I suspect that the upload is gobbling up the server's memory because the
content isn't being flushed to disk as it streams. You might want to
investigate a commercial upload component for this kind of task:
[url]http://www.asp.net/ControlGallery/default.aspx?Category=40&tabindex=2[/url]
Ken
"Rosie Chua" <rchua@learningfast.com.au> wrote in message
news:bddhc4$pi0$1@towncrier.its.monash.edu.au...
Dear all,
I am running an online file management server that allows web clients to
upload files from a webform to the web server.
Using the code
"filename.PostedFile.SaveAs(fullPath);"
I have no problem uploading file with size up to 25MB, but the page starts
to create problem with any size above 25 MB - the error message displayed is
"Server Unavailable" or occasionally it just dies off.
I am running the web server using ASP.net framework 1.0 developed using C#
In the Application Log of the machine's event viewer, I get these message:
Event Type: Error
Event Source: ASP.NET 1.0.3705.288
Event Category: None
Event ID: 1003
Date: 6/26/2003
Time: 10:45:47 AM
User: N/A
Computer: ROSIE
Description:
aspnet_wp.exe (PID: 2108) was recycled because it was suspected to be in a
deadlocked state. It did not send any responses for pending requests in the
last 180 seconds.
Event Type: Error
Event Source: ASP.NET 1.0.3705.288
Event Category: None
Event ID: 1001
Date: 6/26/2003
Time: 9:54:35 AM
User: N/A
Computer: ROSIE
Description:
aspnet_wp.exe (PID: 1532) was recycled because memory consumption exceeded
the 306 MB (60 percent of available RAM).
I'd set the following value on Web.Config, but it still doesn't work:
<httpRuntime maxRequestLength="153600" />
Anyone know how to go around this problem? The uploaded file size could be
up to 150MB in size.
Cheers
Rosie Chua
Ken Cox [Microsoft MVP] Guest
-
Russ Bishop #3
Re: Uploading files up to 150MB onto server
You need a script or component that accepts the uploaded file and streams it
to disk, rather than holding it in memory first. It would be fairly easy to
write such a thing, using basic TCP sockets to accept the HTTP request, then
the IO stuff to write it to disk.
-- russ
"Rosie Chua" <rchua@learningfast.com.au> wrote in message
news:bddhc4$pi0$1@towncrier.its.monash.edu.au...is> Dear all,
>
> I am running an online file management server that allows web clients to
> upload files from a webform to the web server.
>
> Using the code
> "filename.PostedFile.SaveAs(fullPath);"
> I have no problem uploading file with size up to 25MB, but the page starts
> to create problem with any size above 25 MB - the error message displayeda> "Server Unavailable" or occasionally it just dies off.
>
> I am running the web server using ASP.net framework 1.0 developed using C#
>
> In the Application Log of the machine's event viewer, I get these message:
>
> Event Type: Error
> Event Source: ASP.NET 1.0.3705.288
> Event Category: None
> Event ID: 1003
> Date: 6/26/2003
> Time: 10:45:47 AM
> User: N/A
> Computer: ROSIE
> Description:
> aspnet_wp.exe (PID: 2108) was recycled because it was suspected to be inthe> deadlocked state. It did not send any responses for pending requests inexceeded> last 180 seconds.
>
> Event Type: Error
> Event Source: ASP.NET 1.0.3705.288
> Event Category: None
> Event ID: 1001
> Date: 6/26/2003
> Time: 9:54:35 AM
> User: N/A
> Computer: ROSIE
> Description:
> aspnet_wp.exe (PID: 1532) was recycled because memory consumption> the 306 MB (60 percent of available RAM).
>
> I'd set the following value on Web.Config, but it still doesn't work:
> <httpRuntime maxRequestLength="153600" />
>
> Anyone know how to go around this problem? The uploaded file size could be
> up to 150MB in size.
>
> Cheers
> Rosie Chua
>
>
Russ Bishop Guest
-
Russ Bishop #4
Re: Uploading files up to 150MB onto server
Sorry, I don't have the time to write the component for free. Besides, you'd
learn a lot more by doing it yourself. I suggest doing some tutorials for
socket programming on the web, then some for writing files. Combine the two.
-- russ
"Rosie Chua" <rchua@learningfast.com.au> wrote in message
news:bddqm4$u6k$1@towncrier.its.monash.edu.au...streams> Russ,
>
> Thanks heaps for your reply. Can you please provide more details, or the
> sample code? Thanks again.
>
> Rosie
>
> "Russ Bishop" <nowhere> wrote in message
> news:%23wAGJR5ODHA.1364@TK2MSFTNGP10.phx.gbl...> > You need a script or component that accepts the uploaded file andto> it> to> > to disk, rather than holding it in memory first. It would be fairly easy> then> > write such a thing, using basic TCP sockets to accept the HTTP request,> > the IO stuff to write it to disk.
> >
> > -- russ
> >
> > "Rosie Chua" <rchua@learningfast.com.au> wrote in message
> > news:bddhc4$pi0$1@towncrier.its.monash.edu.au...> > > Dear all,
> > >
> > > I am running an online file management server that allows web clientsusing> starts> > > upload files from a webform to the web server.
> > >
> > > Using the code
> > > "filename.PostedFile.SaveAs(fullPath);"
> > > I have no problem uploading file with size up to 25MB, but the page> displayed> > > to create problem with any size above 25 MB - the error message> > is> > > "Server Unavailable" or occasionally it just dies off.
> > >
> > > I am running the web server using ASP.net framework 1.0 developedin> C#> message:> > >
> > > In the Application Log of the machine's event viewer, I get these> in> > >
> > > Event Type: Error
> > > Event Source: ASP.NET 1.0.3705.288
> > > Event Category: None
> > > Event ID: 1003
> > > Date: 6/26/2003
> > > Time: 10:45:47 AM
> > > User: N/A
> > > Computer: ROSIE
> > > Description:
> > > aspnet_wp.exe (PID: 2108) was recycled because it was suspected to be> > a> > > deadlocked state. It did not send any responses for pending requestscould> > the> > exceeded> > > last 180 seconds.
> > >
> > > Event Type: Error
> > > Event Source: ASP.NET 1.0.3705.288
> > > Event Category: None
> > > Event ID: 1001
> > > Date: 6/26/2003
> > > Time: 9:54:35 AM
> > > User: N/A
> > > Computer: ROSIE
> > > Description:
> > > aspnet_wp.exe (PID: 1532) was recycled because memory consumption> > > the 306 MB (60 percent of available RAM).
> > >
> > > I'd set the following value on Web.Config, but it still doesn't work:
> > > <httpRuntime maxRequestLength="153600" />
> > >
> > > Anyone know how to go around this problem? The uploaded file size> be>> >> > > up to 150MB in size.
> > >
> > > Cheers
> > > Rosie Chua
> > >
> > >
> >
>
Russ Bishop Guest



Reply With Quote

