Ich meine mich irgendwie zu erinnern, dass man etweder in einer .config,
oder direkt unter dem IIS einstellen kann, wieviel Speicher der WP-Account
benutzen darf bevor er abgeschossen wird.

Weiss da jemand mehr??

Kai

> -----Original Message-----
> From: Joerg Uth [mailto:[EMAIL PROTECTED] 
> Sent: Tuesday, December 09, 2003 5:21 PM
> To: [EMAIL PROTECTED]
> Subject: RE: [Asp.net] Worker Process schmiert beim Download
> 
> 
> Hmmh, 1GB ist schon drin ...
> 
> -----Original Message-----
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] On Behalf Of Kai Ruebke
> Sent: Tuesday, December 09, 2003 5:03 PM
> To: '[EMAIL PROTECTED]'
> Subject: RE: [Asp.net] Worker Process schmiert beim Download
> 
> 
> Jupp, das Problem ist bekannt.
> Die Ursache liegt darin, dass die gesamte Datei, die Du 
> downloaden willst vom .net Framework behandelt wird. Schau 
> Dir mal im Task-Manager den Speicher zuwachs an, wenn Du eine 
> Datei runterl�dst, die von .net Framework verwaltet wird. die 
> gesamte Datei wird praktisch in dem Speicher gepumpt.
> 
> Eine L�sung daf�r hab ich nicht, au�er vielleicht die 
> Maschine mit mehr Speicher ausstatten *g*
> 
> Kai
> 
> > -----Original Message-----
> > From: Joerg Uth [mailto:[EMAIL PROTECTED]
> > Sent: Tuesday, December 09, 2003 4:39 PM
> > To: [EMAIL PROTECTED]
> > Subject: [Asp.net] Worker Process schmiert beim Download
> > 
> > 
> > Hallo,
> > 
> > ich verwende folgendes um eine Datei zum Download anzubieten:
> > 
> > System.IO.FileInfo DownloadFile = new 
> > System.IO.FileInfo(Config.UploadFolder
> > + SessionTools.WantedDownloadFile.FileName);
> > if(DownloadFile.Exists)
> > {
> >     Response.Clear();
> > 
> >     Response.AddHeader("Content-Disposition","attachment;
> > filename="+Server.UrlEncode(SessionTools.WantedDownloadFile.Or
> > iginalFileName
> > ));
> >     
> > Response.AddHeader("Content-Length",DownloadFile.Length.ToString());
> > 
> >     Response.ContentType = "application/octet-stream";
> >     Response.WriteFile(DownloadFile.FullName,0,DownloadFile.Length);
> > 
> > }
> > 
> > Klappt auch soweit wunderbar, bis ich eine Datei mit �ber 
> 120 MB zum 
> > Download anbiete, dann scmiert mit der ASP WorkerProcess ab. Im 
> > Application Log steht nur "aspnet_wp.exe
> >  (PID: 564) stopped unexpectedly. "
> > 
> > Kennt jemand das Problem besser noch eine L�sung?
> > 
> > Danke J�rg
> > 
> > 
> > _______________________________________________
> > Asp.net mailing list
> > [EMAIL PROTECTED] 
> http://www.glengamoi.com/mailman/listinfo/asp.> > 
> > net
> > 
> 
> _______________________________________________
> 
> Asp.net mailing list
> [EMAIL PROTECTED] 
> http://www.glengamoi.com/mailman/listinfo/asp.> net
> 
> 
> 
> _______________________________________________
> 
> Asp.net mailing list
> [EMAIL PROTECTED] 
> http://www.glengamoi.com/mailman/listinfo/asp.> net
> 
_______________________________________________
Asp.net mailing list
[EMAIL PROTECTED]
http://www.glengamoi.com/mailman/listinfo/asp.net

Antwort per Email an