Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > aspnet_wp.exe (PID: 500) was recycled because memory consumption e

Reply
Thread Tools

aspnet_wp.exe (PID: 500) was recycled because memory consumption e

 
 
=?Utf-8?B?UmFqdQ==?=
Guest
Posts: n/a
 
      10-31-2004
Hi ,

We are develoed the .net application(asp.net, vb.net and sql server ). Till
yesterday there was no problem with the application. Is was working fine.
In our application we have one Lock and Unlock Button. When you click on
Lock button, the page will turn into ReadOnly mode. When you click on Unlock
the page will turn into Edit Mode.
Now When I press the Lock or Unlock Button after 2 to 3 minutes in the
Browser iam getting the below error message.
--------
Server Application Unavailable
The web application you are attempting to access on this web server is
currently unavailable. Please hit the "Refresh" button in your web browser to
retry your request.

Administrator Note: An error message detailing the cause of this specific
request failure can be found in the application event log of the web server.
Please review this log entry to discover what caused this error to occur.
--------

In the Event Logs the error description is:
Event ID: 1001
aspnet_wp.exe (PID: 500) was recycled because memory consumption exceeded
the 305 MB (60 percent of available RAM).

We are using .Net framework version1.1. Iam not able to figure it out this
problem.
Can anyone please help on this issue.
You help is much appriciated.


Regards,
Bhaskar.
 
Reply With Quote
 
 
 
 
Alexander Bosch
Guest
Posts: n/a
 
      10-31-2004
Do you have Service Pack 1 of .NET 1.1 by any chance?
Are you doing a Server.Transfer("SamePage.aspx",true) with this bool value
as true to preserve the Forms Collections?
I'm asking all this questions because I have a similar problem and I'm
trying to see if it's a bug.
thanks,
Alexander
"Raju" <> wrote in message
news:95F258F2-11D8-4566-8EEE-...
> Hi ,
>
> We are develoed the .net application(asp.net, vb.net and sql server ).

Till
> yesterday there was no problem with the application. Is was working fine.
> In our application we have one Lock and Unlock Button. When you click on
> Lock button, the page will turn into ReadOnly mode. When you click on

Unlock
> the page will turn into Edit Mode.
> Now When I press the Lock or Unlock Button after 2 to 3 minutes in the
> Browser iam getting the below error message.
> --------
> Server Application Unavailable
> The web application you are attempting to access on this web server is
> currently unavailable. Please hit the "Refresh" button in your web browser

to
> retry your request.
>
> Administrator Note: An error message detailing the cause of this specific
> request failure can be found in the application event log of the web

server.
> Please review this log entry to discover what caused this error to occur.
> --------
>
> In the Event Logs the error description is:
> Event ID: 1001
> aspnet_wp.exe (PID: 500) was recycled because memory consumption exceeded
> the 305 MB (60 percent of available RAM).
>
> We are using .Net framework version1.1. Iam not able to figure it out this
> problem.
> Can anyone please help on this issue.
> You help is much appriciated.
>
>
> Regards,
> Bhaskar.



 
Reply With Quote
 
 
 
 
=?Utf-8?B?UmFqdQ==?=
Guest
Posts: n/a
 
      11-01-2004
Hi Alexander,

Thanks for your response. Yes,I have Service pack 1 of .NET 1.1.And also iam
doing Server.Transfer("SamePage.aspx",true) with this bool value
as true to preserve the Forms Collections.
You also facing the same problem?.
Please let me know if you have solution for this Issue.

Regards,
Bhaskar.


"Alexander Bosch" wrote:

> Do you have Service Pack 1 of .NET 1.1 by any chance?
> Are you doing a Server.Transfer("SamePage.aspx",true) with this bool value
> as true to preserve the Forms Collections?
> I'm asking all this questions because I have a similar problem and I'm
> trying to see if it's a bug.
> thanks,
> Alexander
> "Raju" <> wrote in message
> news:95F258F2-11D8-4566-8EEE-...
> > Hi ,
> >
> > We are develoed the .net application(asp.net, vb.net and sql server ).

> Till
> > yesterday there was no problem with the application. Is was working fine.
> > In our application we have one Lock and Unlock Button. When you click on
> > Lock button, the page will turn into ReadOnly mode. When you click on

> Unlock
> > the page will turn into Edit Mode.
> > Now When I press the Lock or Unlock Button after 2 to 3 minutes in the
> > Browser iam getting the below error message.
> > --------
> > Server Application Unavailable
> > The web application you are attempting to access on this web server is
> > currently unavailable. Please hit the "Refresh" button in your web browser

> to
> > retry your request.
> >
> > Administrator Note: An error message detailing the cause of this specific
> > request failure can be found in the application event log of the web

> server.
> > Please review this log entry to discover what caused this error to occur.
> > --------
> >
> > In the Event Logs the error description is:
> > Event ID: 1001
> > aspnet_wp.exe (PID: 500) was recycled because memory consumption exceeded
> > the 305 MB (60 percent of available RAM).
> >
> > We are using .Net framework version1.1. Iam not able to figure it out this
> > problem.
> > Can anyone please help on this issue.
> > You help is much appriciated.
> >
> >
> > Regards,
> > Bhaskar.

>
>
>

 
Reply With Quote
 
Alexander Bosch
Guest
Posts: n/a
 
      11-01-2004
Hey Bhaskar,
take a look at this article on Microsoft's KB:
http://support.microsoft.com/default...b;en-us;839521

In this article they say that this issue has been solved with the Service
Pack 1 and it hasn't! In my opinion it was created by the Service Pack,
because if you remove it, everything it's going to work. I guess that's your
short term solution, remove the ServicePack...on a long term, I'm still
loooking for answers.
Hopefully one of the Microsoft support guys or a Microsoft MVP will put more
light into this issue.
Regards,
Alexander

"Raju" <> wrote in message
news78991F9-1356-4FA5-803A-...
> Hi Alexander,
>
> Thanks for your response. Yes,I have Service pack 1 of .NET 1.1.And also

iam
> doing Server.Transfer("SamePage.aspx",true) with this bool value
> as true to preserve the Forms Collections.
> You also facing the same problem?.
> Please let me know if you have solution for this Issue.
>
> Regards,
> Bhaskar.
>
>
> "Alexander Bosch" wrote:
>
> > Do you have Service Pack 1 of .NET 1.1 by any chance?
> > Are you doing a Server.Transfer("SamePage.aspx",true) with this bool

value
> > as true to preserve the Forms Collections?
> > I'm asking all this questions because I have a similar problem and I'm
> > trying to see if it's a bug.
> > thanks,
> > Alexander
> > "Raju" <> wrote in message
> > news:95F258F2-11D8-4566-8EEE-...
> > > Hi ,
> > >
> > > We are develoed the .net application(asp.net, vb.net and sql server ).

> > Till
> > > yesterday there was no problem with the application. Is was working

fine.
> > > In our application we have one Lock and Unlock Button. When you click

on
> > > Lock button, the page will turn into ReadOnly mode. When you click on

> > Unlock
> > > the page will turn into Edit Mode.
> > > Now When I press the Lock or Unlock Button after 2 to 3 minutes in the
> > > Browser iam getting the below error message.
> > > --------
> > > Server Application Unavailable
> > > The web application you are attempting to access on this web server is
> > > currently unavailable. Please hit the "Refresh" button in your web

browser
> > to
> > > retry your request.
> > >
> > > Administrator Note: An error message detailing the cause of this

specific
> > > request failure can be found in the application event log of the web

> > server.
> > > Please review this log entry to discover what caused this error to

occur.
> > > --------
> > >
> > > In the Event Logs the error description is:
> > > Event ID: 1001
> > > aspnet_wp.exe (PID: 500) was recycled because memory consumption

exceeded
> > > the 305 MB (60 percent of available RAM).
> > >
> > > We are using .Net framework version1.1. Iam not able to figure it out

this
> > > problem.
> > > Can anyone please help on this issue.
> > > You help is much appriciated.
> > >
> > >
> > > Regards,
> > > Bhaskar.

> >
> >
> >



 
Reply With Quote
 
=?Utf-8?B?UmFqdQ==?=
Guest
Posts: n/a
 
      11-01-2004
Hi Alexander,
I have already have the service pack 1 in my system. And also the error
message in the Microsoft's KB is different than my error message. Did you get
the solution after installing this hotfix?.

Regards,
Bhaskar.

"Alexander Bosch" wrote:

> Hey Bhaskar,
> take a look at this article on Microsoft's KB:
> http://support.microsoft.com/default...b;en-us;839521
>
> In this article they say that this issue has been solved with the Service
> Pack 1 and it hasn't! In my opinion it was created by the Service Pack,
> because if you remove it, everything it's going to work. I guess that's your
> short term solution, remove the ServicePack...on a long term, I'm still
> loooking for answers.
> Hopefully one of the Microsoft support guys or a Microsoft MVP will put more
> light into this issue.
> Regards,
> Alexander
>
> "Raju" <> wrote in message
> news78991F9-1356-4FA5-803A-...
> > Hi Alexander,
> >
> > Thanks for your response. Yes,I have Service pack 1 of .NET 1.1.And also

> iam
> > doing Server.Transfer("SamePage.aspx",true) with this bool value
> > as true to preserve the Forms Collections.
> > You also facing the same problem?.
> > Please let me know if you have solution for this Issue.
> >
> > Regards,
> > Bhaskar.
> >
> >
> > "Alexander Bosch" wrote:
> >
> > > Do you have Service Pack 1 of .NET 1.1 by any chance?
> > > Are you doing a Server.Transfer("SamePage.aspx",true) with this bool

> value
> > > as true to preserve the Forms Collections?
> > > I'm asking all this questions because I have a similar problem and I'm
> > > trying to see if it's a bug.
> > > thanks,
> > > Alexander
> > > "Raju" <> wrote in message
> > > news:95F258F2-11D8-4566-8EEE-...
> > > > Hi ,
> > > >
> > > > We are develoed the .net application(asp.net, vb.net and sql server ).
> > > Till
> > > > yesterday there was no problem with the application. Is was working

> fine.
> > > > In our application we have one Lock and Unlock Button. When you click

> on
> > > > Lock button, the page will turn into ReadOnly mode. When you click on
> > > Unlock
> > > > the page will turn into Edit Mode.
> > > > Now When I press the Lock or Unlock Button after 2 to 3 minutes in the
> > > > Browser iam getting the below error message.
> > > > --------
> > > > Server Application Unavailable
> > > > The web application you are attempting to access on this web server is
> > > > currently unavailable. Please hit the "Refresh" button in your web

> browser
> > > to
> > > > retry your request.
> > > >
> > > > Administrator Note: An error message detailing the cause of this

> specific
> > > > request failure can be found in the application event log of the web
> > > server.
> > > > Please review this log entry to discover what caused this error to

> occur.
> > > > --------
> > > >
> > > > In the Event Logs the error description is:
> > > > Event ID: 1001
> > > > aspnet_wp.exe (PID: 500) was recycled because memory consumption

> exceeded
> > > > the 305 MB (60 percent of available RAM).
> > > >
> > > > We are using .Net framework version1.1. Iam not able to figure it out

> this
> > > > problem.
> > > > Can anyone please help on this issue.
> > > > You help is much appriciated.
> > > >
> > > >
> > > > Regards,
> > > > Bhaskar.
> > >
> > >
> > >

>
>
>

 
Reply With Quote
 
Alexander Bosch
Guest
Posts: n/a
 
      11-01-2004
Hey Rahu, there are to Kbs that are similar.
http://support.microsoft.com/default...b;en-us;839521 which is the
one I mentioned before
and this one
http://support.microsoft.com/kb/821758/EN-US/


I know you have SP 1, that's why I'm saying that if you remove it, your
problem will be solved (i.e no Infinite loop, no Stack overflow, No Server
Application Unavailable after 2 min or so)
I have not found a solution with the Service Pack...that's my point, I think
this articles are saying that you have to install a Hot Fix that's included
on the SPack, but the problem does not get solved.

Again,...Hopefully one of the Microsoft support guys or a Microsoft MVP will
put more light into this issue

Alexander


"Raju" <> wrote in message
news:17CC24FA-9B68-4BBC-9027-...
> Hi Alexander,
> I have already have the service pack 1 in my system. And also the error
> message in the Microsoft's KB is different than my error message. Did you

get
> the solution after installing this hotfix?.
>
> Regards,
> Bhaskar.
>
> "Alexander Bosch" wrote:
>
> > Hey Bhaskar,
> > take a look at this article on Microsoft's KB:
> > http://support.microsoft.com/default...b;en-us;839521
> >
> > In this article they say that this issue has been solved with the

Service
> > Pack 1 and it hasn't! In my opinion it was created by the Service Pack,
> > because if you remove it, everything it's going to work. I guess that's

your
> > short term solution, remove the ServicePack...on a long term, I'm still
> > loooking for answers.
> > Hopefully one of the Microsoft support guys or a Microsoft MVP will put

more
> > light into this issue.
> > Regards,
> > Alexander
> >
> > "Raju" <> wrote in message
> > news78991F9-1356-4FA5-803A-...
> > > Hi Alexander,
> > >
> > > Thanks for your response. Yes,I have Service pack 1 of .NET 1.1.And

also
> > iam
> > > doing Server.Transfer("SamePage.aspx",true) with this bool value
> > > as true to preserve the Forms Collections.
> > > You also facing the same problem?.
> > > Please let me know if you have solution for this Issue.
> > >
> > > Regards,
> > > Bhaskar.
> > >
> > >
> > > "Alexander Bosch" wrote:
> > >
> > > > Do you have Service Pack 1 of .NET 1.1 by any chance?
> > > > Are you doing a Server.Transfer("SamePage.aspx",true) with this bool

> > value
> > > > as true to preserve the Forms Collections?
> > > > I'm asking all this questions because I have a similar problem and

I'm
> > > > trying to see if it's a bug.
> > > > thanks,
> > > > Alexander
> > > > "Raju" <> wrote in message
> > > > news:95F258F2-11D8-4566-8EEE-...
> > > > > Hi ,
> > > > >
> > > > > We are develoed the .net application(asp.net, vb.net and sql

server ).
> > > > Till
> > > > > yesterday there was no problem with the application. Is was

working
> > fine.
> > > > > In our application we have one Lock and Unlock Button. When you

click
> > on
> > > > > Lock button, the page will turn into ReadOnly mode. When you click

on
> > > > Unlock
> > > > > the page will turn into Edit Mode.
> > > > > Now When I press the Lock or Unlock Button after 2 to 3 minutes in

the
> > > > > Browser iam getting the below error message.
> > > > > --------
> > > > > Server Application Unavailable
> > > > > The web application you are attempting to access on this web

server is
> > > > > currently unavailable. Please hit the "Refresh" button in your web

> > browser
> > > > to
> > > > > retry your request.
> > > > >
> > > > > Administrator Note: An error message detailing the cause of this

> > specific
> > > > > request failure can be found in the application event log of the

web
> > > > server.
> > > > > Please review this log entry to discover what caused this error to

> > occur.
> > > > > --------
> > > > >
> > > > > In the Event Logs the error description is:
> > > > > Event ID: 1001
> > > > > aspnet_wp.exe (PID: 500) was recycled because memory consumption

> > exceeded
> > > > > the 305 MB (60 percent of available RAM).
> > > > >
> > > > > We are using .Net framework version1.1. Iam not able to figure it

out
> > this
> > > > > problem.
> > > > > Can anyone please help on this issue.
> > > > > You help is much appriciated.
> > > > >
> > > > >
> > > > > Regards,
> > > > > Bhaskar.
> > > >
> > > >
> > > >

> >
> >
> >



 
Reply With Quote
 
Saravana
Guest
Posts: n/a
 
      11-01-2004
Check out these articles
http://support.microsoft.com/default...;en-us;Q315158
http://support.microsoft.com/default...b;en-us;326366
http://www.aspalliance.com/kenc/faq2.aspx

--
Saravana
http://dotnetjunkies.com/WebLog/saravana/
www.ExtremeExperts.com


"Alexander Bosch" <> wrote in message
news:Hhhhd.11487$. ..
> Hey Rahu, there are to Kbs that are similar.
> http://support.microsoft.com/default...b;en-us;839521 which is

the
> one I mentioned before
> and this one
> http://support.microsoft.com/kb/821758/EN-US/
>
>
> I know you have SP 1, that's why I'm saying that if you remove it, your
> problem will be solved (i.e no Infinite loop, no Stack overflow, No Server
> Application Unavailable after 2 min or so)
> I have not found a solution with the Service Pack...that's my point, I

think
> this articles are saying that you have to install a Hot Fix that's

included
> on the SPack, but the problem does not get solved.
>
> Again,...Hopefully one of the Microsoft support guys or a Microsoft MVP

will
> put more light into this issue
>
> Alexander
>
>
> "Raju" <> wrote in message
> news:17CC24FA-9B68-4BBC-9027-...
> > Hi Alexander,
> > I have already have the service pack 1 in my system. And also the error
> > message in the Microsoft's KB is different than my error message. Did

you
> get
> > the solution after installing this hotfix?.
> >
> > Regards,
> > Bhaskar.
> >
> > "Alexander Bosch" wrote:
> >
> > > Hey Bhaskar,
> > > take a look at this article on Microsoft's KB:
> > > http://support.microsoft.com/default...b;en-us;839521
> > >
> > > In this article they say that this issue has been solved with the

> Service
> > > Pack 1 and it hasn't! In my opinion it was created by the Service

Pack,
> > > because if you remove it, everything it's going to work. I guess

that's
> your
> > > short term solution, remove the ServicePack...on a long term, I'm

still
> > > loooking for answers.
> > > Hopefully one of the Microsoft support guys or a Microsoft MVP will

put
> more
> > > light into this issue.
> > > Regards,
> > > Alexander
> > >
> > > "Raju" <> wrote in message
> > > news78991F9-1356-4FA5-803A-...
> > > > Hi Alexander,
> > > >
> > > > Thanks for your response. Yes,I have Service pack 1 of .NET 1.1.And

> also
> > > iam
> > > > doing Server.Transfer("SamePage.aspx",true) with this bool value
> > > > as true to preserve the Forms Collections.
> > > > You also facing the same problem?.
> > > > Please let me know if you have solution for this Issue.
> > > >
> > > > Regards,
> > > > Bhaskar.
> > > >
> > > >
> > > > "Alexander Bosch" wrote:
> > > >
> > > > > Do you have Service Pack 1 of .NET 1.1 by any chance?
> > > > > Are you doing a Server.Transfer("SamePage.aspx",true) with this

bool
> > > value
> > > > > as true to preserve the Forms Collections?
> > > > > I'm asking all this questions because I have a similar problem and

> I'm
> > > > > trying to see if it's a bug.
> > > > > thanks,
> > > > > Alexander
> > > > > "Raju" <> wrote in message
> > > > > news:95F258F2-11D8-4566-8EEE-...
> > > > > > Hi ,
> > > > > >
> > > > > > We are develoed the .net application(asp.net, vb.net and sql

> server ).
> > > > > Till
> > > > > > yesterday there was no problem with the application. Is was

> working
> > > fine.
> > > > > > In our application we have one Lock and Unlock Button. When you

> click
> > > on
> > > > > > Lock button, the page will turn into ReadOnly mode. When you

click
> on
> > > > > Unlock
> > > > > > the page will turn into Edit Mode.
> > > > > > Now When I press the Lock or Unlock Button after 2 to 3 minutes

in
> the
> > > > > > Browser iam getting the below error message.
> > > > > > --------
> > > > > > Server Application Unavailable
> > > > > > The web application you are attempting to access on this web

> server is
> > > > > > currently unavailable. Please hit the "Refresh" button in your

web
> > > browser
> > > > > to
> > > > > > retry your request.
> > > > > >
> > > > > > Administrator Note: An error message detailing the cause of this
> > > specific
> > > > > > request failure can be found in the application event log of the

> web
> > > > > server.
> > > > > > Please review this log entry to discover what caused this error

to
> > > occur.
> > > > > > --------
> > > > > >
> > > > > > In the Event Logs the error description is:
> > > > > > Event ID: 1001
> > > > > > aspnet_wp.exe (PID: 500) was recycled because memory consumption
> > > exceeded
> > > > > > the 305 MB (60 percent of available RAM).
> > > > > >
> > > > > > We are using .Net framework version1.1. Iam not able to figure

it
> out
> > > this
> > > > > > problem.
> > > > > > Can anyone please help on this issue.
> > > > > > You help is much appriciated.
> > > > > >
> > > > > >
> > > > > > Regards,
> > > > > > Bhaskar.
> > > > >
> > > > >
> > > > >
> > >
> > >
> > >

>
>



 
Reply With Quote
 
=?Utf-8?B?UmFqdQ==?=
Guest
Posts: n/a
 
      11-01-2004
Hi,

After changing the server.transfer() to Response.Redirect() its working
fine.

Thanks,
Bhaskar.


"Saravana" wrote:

> Check out these articles
> http://support.microsoft.com/default...;en-us;Q315158
> http://support.microsoft.com/default...b;en-us;326366
> http://www.aspalliance.com/kenc/faq2.aspx
>
> --
> Saravana
> http://dotnetjunkies.com/WebLog/saravana/
> www.ExtremeExperts.com
>
>
> "Alexander Bosch" <> wrote in message
> news:Hhhhd.11487$. ..
> > Hey Rahu, there are to Kbs that are similar.
> > http://support.microsoft.com/default...b;en-us;839521 which is

> the
> > one I mentioned before
> > and this one
> > http://support.microsoft.com/kb/821758/EN-US/
> >
> >
> > I know you have SP 1, that's why I'm saying that if you remove it, your
> > problem will be solved (i.e no Infinite loop, no Stack overflow, No Server
> > Application Unavailable after 2 min or so)
> > I have not found a solution with the Service Pack...that's my point, I

> think
> > this articles are saying that you have to install a Hot Fix that's

> included
> > on the SPack, but the problem does not get solved.
> >
> > Again,...Hopefully one of the Microsoft support guys or a Microsoft MVP

> will
> > put more light into this issue
> >
> > Alexander
> >
> >
> > "Raju" <> wrote in message
> > news:17CC24FA-9B68-4BBC-9027-...
> > > Hi Alexander,
> > > I have already have the service pack 1 in my system. And also the error
> > > message in the Microsoft's KB is different than my error message. Did

> you
> > get
> > > the solution after installing this hotfix?.
> > >
> > > Regards,
> > > Bhaskar.
> > >
> > > "Alexander Bosch" wrote:
> > >
> > > > Hey Bhaskar,
> > > > take a look at this article on Microsoft's KB:
> > > > http://support.microsoft.com/default...b;en-us;839521
> > > >
> > > > In this article they say that this issue has been solved with the

> > Service
> > > > Pack 1 and it hasn't! In my opinion it was created by the Service

> Pack,
> > > > because if you remove it, everything it's going to work. I guess

> that's
> > your
> > > > short term solution, remove the ServicePack...on a long term, I'm

> still
> > > > loooking for answers.
> > > > Hopefully one of the Microsoft support guys or a Microsoft MVP will

> put
> > more
> > > > light into this issue.
> > > > Regards,
> > > > Alexander
> > > >
> > > > "Raju" <> wrote in message
> > > > news78991F9-1356-4FA5-803A-...
> > > > > Hi Alexander,
> > > > >
> > > > > Thanks for your response. Yes,I have Service pack 1 of .NET 1.1.And

> > also
> > > > iam
> > > > > doing Server.Transfer("SamePage.aspx",true) with this bool value
> > > > > as true to preserve the Forms Collections.
> > > > > You also facing the same problem?.
> > > > > Please let me know if you have solution for this Issue.
> > > > >
> > > > > Regards,
> > > > > Bhaskar.
> > > > >
> > > > >
> > > > > "Alexander Bosch" wrote:
> > > > >
> > > > > > Do you have Service Pack 1 of .NET 1.1 by any chance?
> > > > > > Are you doing a Server.Transfer("SamePage.aspx",true) with this

> bool
> > > > value
> > > > > > as true to preserve the Forms Collections?
> > > > > > I'm asking all this questions because I have a similar problem and

> > I'm
> > > > > > trying to see if it's a bug.
> > > > > > thanks,
> > > > > > Alexander
> > > > > > "Raju" <> wrote in message
> > > > > > news:95F258F2-11D8-4566-8EEE-...
> > > > > > > Hi ,
> > > > > > >
> > > > > > > We are develoed the .net application(asp.net, vb.net and sql

> > server ).
> > > > > > Till
> > > > > > > yesterday there was no problem with the application. Is was

> > working
> > > > fine.
> > > > > > > In our application we have one Lock and Unlock Button. When you

> > click
> > > > on
> > > > > > > Lock button, the page will turn into ReadOnly mode. When you

> click
> > on
> > > > > > Unlock
> > > > > > > the page will turn into Edit Mode.
> > > > > > > Now When I press the Lock or Unlock Button after 2 to 3 minutes

> in
> > the
> > > > > > > Browser iam getting the below error message.
> > > > > > > --------
> > > > > > > Server Application Unavailable
> > > > > > > The web application you are attempting to access on this web

> > server is
> > > > > > > currently unavailable. Please hit the "Refresh" button in your

> web
> > > > browser
> > > > > > to
> > > > > > > retry your request.
> > > > > > >
> > > > > > > Administrator Note: An error message detailing the cause of this
> > > > specific
> > > > > > > request failure can be found in the application event log of the

> > web
> > > > > > server.
> > > > > > > Please review this log entry to discover what caused this error

> to
> > > > occur.
> > > > > > > --------
> > > > > > >
> > > > > > > In the Event Logs the error description is:
> > > > > > > Event ID: 1001
> > > > > > > aspnet_wp.exe (PID: 500) was recycled because memory consumption
> > > > exceeded
> > > > > > > the 305 MB (60 percent of available RAM).
> > > > > > >
> > > > > > > We are using .Net framework version1.1. Iam not able to figure

> it
> > out
> > > > this
> > > > > > > problem.
> > > > > > > Can anyone please help on this issue.
> > > > > > > You help is much appriciated.
> > > > > > >
> > > > > > >
> > > > > > > Regards,
> > > > > > > Bhaskar.
> > > > > >
> > > > > >
> > > > > >
> > > >
> > > >
> > > >

> >
> >

>
>
>

 
Reply With Quote
 
Alexander Bosch
Guest
Posts: n/a
 
      11-01-2004
yes, it will work, but you'll loose the Forms Collection that you were
preserving setting the variable as true on the Server.Transfer...If that
works for you, perfect then.
Alexander
"Raju" <> wrote in message
news:01DDD22F-0B37-4457-B095-...
> Hi,
>
> After changing the server.transfer() to Response.Redirect() its working
> fine.
>
> Thanks,
> Bhaskar.
>
>
> "Saravana" wrote:
>
> > Check out these articles
> > http://support.microsoft.com/default...;en-us;Q315158
> > http://support.microsoft.com/default...b;en-us;326366
> > http://www.aspalliance.com/kenc/faq2.aspx
> >
> > --
> > Saravana
> > http://dotnetjunkies.com/WebLog/saravana/
> > www.ExtremeExperts.com
> >
> >
> > "Alexander Bosch" <> wrote in message
> > news:Hhhhd.11487$. ..
> > > Hey Rahu, there are to Kbs that are similar.
> > > http://support.microsoft.com/default...b;en-us;839521 which

is
> > the
> > > one I mentioned before
> > > and this one
> > > http://support.microsoft.com/kb/821758/EN-US/
> > >
> > >
> > > I know you have SP 1, that's why I'm saying that if you remove it,

your
> > > problem will be solved (i.e no Infinite loop, no Stack overflow, No

Server
> > > Application Unavailable after 2 min or so)
> > > I have not found a solution with the Service Pack...that's my point, I

> > think
> > > this articles are saying that you have to install a Hot Fix that's

> > included
> > > on the SPack, but the problem does not get solved.
> > >
> > > Again,...Hopefully one of the Microsoft support guys or a Microsoft

MVP
> > will
> > > put more light into this issue
> > >
> > > Alexander
> > >
> > >
> > > "Raju" <> wrote in message
> > > news:17CC24FA-9B68-4BBC-9027-...
> > > > Hi Alexander,
> > > > I have already have the service pack 1 in my system. And also the

error
> > > > message in the Microsoft's KB is different than my error message.

Did
> > you
> > > get
> > > > the solution after installing this hotfix?.
> > > >
> > > > Regards,
> > > > Bhaskar.
> > > >
> > > > "Alexander Bosch" wrote:
> > > >
> > > > > Hey Bhaskar,
> > > > > take a look at this article on Microsoft's KB:
> > > > > http://support.microsoft.com/default...b;en-us;839521
> > > > >
> > > > > In this article they say that this issue has been solved with the
> > > Service
> > > > > Pack 1 and it hasn't! In my opinion it was created by the Service

> > Pack,
> > > > > because if you remove it, everything it's going to work. I guess

> > that's
> > > your
> > > > > short term solution, remove the ServicePack...on a long term, I'm

> > still
> > > > > loooking for answers.
> > > > > Hopefully one of the Microsoft support guys or a Microsoft MVP

will
> > put
> > > more
> > > > > light into this issue.
> > > > > Regards,
> > > > > Alexander
> > > > >
> > > > > "Raju" <> wrote in message
> > > > > news78991F9-1356-4FA5-803A-...
> > > > > > Hi Alexander,
> > > > > >
> > > > > > Thanks for your response. Yes,I have Service pack 1 of .NET

1.1.And
> > > also
> > > > > iam
> > > > > > doing Server.Transfer("SamePage.aspx",true) with this bool

value
> > > > > > as true to preserve the Forms Collections.
> > > > > > You also facing the same problem?.
> > > > > > Please let me know if you have solution for this Issue.
> > > > > >
> > > > > > Regards,
> > > > > > Bhaskar.
> > > > > >
> > > > > >
> > > > > > "Alexander Bosch" wrote:
> > > > > >
> > > > > > > Do you have Service Pack 1 of .NET 1.1 by any chance?
> > > > > > > Are you doing a Server.Transfer("SamePage.aspx",true) with

this
> > bool
> > > > > value
> > > > > > > as true to preserve the Forms Collections?
> > > > > > > I'm asking all this questions because I have a similar problem

and
> > > I'm
> > > > > > > trying to see if it's a bug.
> > > > > > > thanks,
> > > > > > > Alexander
> > > > > > > "Raju" <> wrote in message
> > > > > > > news:95F258F2-11D8-4566-8EEE-...
> > > > > > > > Hi ,
> > > > > > > >
> > > > > > > > We are develoed the .net application(asp.net, vb.net and sql
> > > server ).
> > > > > > > Till
> > > > > > > > yesterday there was no problem with the application. Is was
> > > working
> > > > > fine.
> > > > > > > > In our application we have one Lock and Unlock Button. When

you
> > > click
> > > > > on
> > > > > > > > Lock button, the page will turn into ReadOnly mode. When you

> > click
> > > on
> > > > > > > Unlock
> > > > > > > > the page will turn into Edit Mode.
> > > > > > > > Now When I press the Lock or Unlock Button after 2 to 3

minutes
> > in
> > > the
> > > > > > > > Browser iam getting the below error message.
> > > > > > > > --------
> > > > > > > > Server Application Unavailable
> > > > > > > > The web application you are attempting to access on this web
> > > server is
> > > > > > > > currently unavailable. Please hit the "Refresh" button in

your
> > web
> > > > > browser
> > > > > > > to
> > > > > > > > retry your request.
> > > > > > > >
> > > > > > > > Administrator Note: An error message detailing the cause of

this
> > > > > specific
> > > > > > > > request failure can be found in the application event log of

the
> > > web
> > > > > > > server.
> > > > > > > > Please review this log entry to discover what caused this

error
> > to
> > > > > occur.
> > > > > > > > --------
> > > > > > > >
> > > > > > > > In the Event Logs the error description is:
> > > > > > > > Event ID: 1001
> > > > > > > > aspnet_wp.exe (PID: 500) was recycled because memory

consumption
> > > > > exceeded
> > > > > > > > the 305 MB (60 percent of available RAM).
> > > > > > > >
> > > > > > > > We are using .Net framework version1.1. Iam not able to

figure
> > it
> > > out
> > > > > this
> > > > > > > > problem.
> > > > > > > > Can anyone please help on this issue.
> > > > > > > > You help is much appriciated.
> > > > > > > >
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Bhaskar.
> > > > > > >
> > > > > > >
> > > > > > >
> > > > >
> > > > >
> > > > >
> > >
> > >

> >
> >
> >



 
Reply With Quote
 
=?Utf-8?B?UmFqdQ==?=
Guest
Posts: n/a
 
      11-02-2004
Hi Alexander,
Thank you so much for your help.
Regards,
Bhaskar.


"Alexander Bosch" wrote:

> yes, it will work, but you'll loose the Forms Collection that you were
> preserving setting the variable as true on the Server.Transfer...If that
> works for you, perfect then.
> Alexander
> "Raju" <> wrote in message
> news:01DDD22F-0B37-4457-B095-...
> > Hi,
> >
> > After changing the server.transfer() to Response.Redirect() its working
> > fine.
> >
> > Thanks,
> > Bhaskar.
> >
> >
> > "Saravana" wrote:
> >
> > > Check out these articles
> > > http://support.microsoft.com/default...;en-us;Q315158
> > > http://support.microsoft.com/default...b;en-us;326366
> > > http://www.aspalliance.com/kenc/faq2.aspx
> > >
> > > --
> > > Saravana
> > > http://dotnetjunkies.com/WebLog/saravana/
> > > www.ExtremeExperts.com
> > >
> > >
> > > "Alexander Bosch" <> wrote in message
> > > news:Hhhhd.11487$. ..
> > > > Hey Rahu, there are to Kbs that are similar.
> > > > http://support.microsoft.com/default...b;en-us;839521 which

> is
> > > the
> > > > one I mentioned before
> > > > and this one
> > > > http://support.microsoft.com/kb/821758/EN-US/
> > > >
> > > >
> > > > I know you have SP 1, that's why I'm saying that if you remove it,

> your
> > > > problem will be solved (i.e no Infinite loop, no Stack overflow, No

> Server
> > > > Application Unavailable after 2 min or so)
> > > > I have not found a solution with the Service Pack...that's my point, I
> > > think
> > > > this articles are saying that you have to install a Hot Fix that's
> > > included
> > > > on the SPack, but the problem does not get solved.
> > > >
> > > > Again,...Hopefully one of the Microsoft support guys or a Microsoft

> MVP
> > > will
> > > > put more light into this issue
> > > >
> > > > Alexander
> > > >
> > > >
> > > > "Raju" <> wrote in message
> > > > news:17CC24FA-9B68-4BBC-9027-...
> > > > > Hi Alexander,
> > > > > I have already have the service pack 1 in my system. And also the

> error
> > > > > message in the Microsoft's KB is different than my error message.

> Did
> > > you
> > > > get
> > > > > the solution after installing this hotfix?.
> > > > >
> > > > > Regards,
> > > > > Bhaskar.
> > > > >
> > > > > "Alexander Bosch" wrote:
> > > > >
> > > > > > Hey Bhaskar,
> > > > > > take a look at this article on Microsoft's KB:
> > > > > > http://support.microsoft.com/default...b;en-us;839521
> > > > > >
> > > > > > In this article they say that this issue has been solved with the
> > > > Service
> > > > > > Pack 1 and it hasn't! In my opinion it was created by the Service
> > > Pack,
> > > > > > because if you remove it, everything it's going to work. I guess
> > > that's
> > > > your
> > > > > > short term solution, remove the ServicePack...on a long term, I'm
> > > still
> > > > > > loooking for answers.
> > > > > > Hopefully one of the Microsoft support guys or a Microsoft MVP

> will
> > > put
> > > > more
> > > > > > light into this issue.
> > > > > > Regards,
> > > > > > Alexander
> > > > > >
> > > > > > "Raju" <> wrote in message
> > > > > > news78991F9-1356-4FA5-803A-...
> > > > > > > Hi Alexander,
> > > > > > >
> > > > > > > Thanks for your response. Yes,I have Service pack 1 of .NET

> 1.1.And
> > > > also
> > > > > > iam
> > > > > > > doing Server.Transfer("SamePage.aspx",true) with this bool

> value
> > > > > > > as true to preserve the Forms Collections.
> > > > > > > You also facing the same problem?.
> > > > > > > Please let me know if you have solution for this Issue.
> > > > > > >
> > > > > > > Regards,
> > > > > > > Bhaskar.
> > > > > > >
> > > > > > >
> > > > > > > "Alexander Bosch" wrote:
> > > > > > >
> > > > > > > > Do you have Service Pack 1 of .NET 1.1 by any chance?
> > > > > > > > Are you doing a Server.Transfer("SamePage.aspx",true) with

> this
> > > bool
> > > > > > value
> > > > > > > > as true to preserve the Forms Collections?
> > > > > > > > I'm asking all this questions because I have a similar problem

> and
> > > > I'm
> > > > > > > > trying to see if it's a bug.
> > > > > > > > thanks,
> > > > > > > > Alexander
> > > > > > > > "Raju" <> wrote in message
> > > > > > > > news:95F258F2-11D8-4566-8EEE-...
> > > > > > > > > Hi ,
> > > > > > > > >
> > > > > > > > > We are develoed the .net application(asp.net, vb.net and sql
> > > > server ).
> > > > > > > > Till
> > > > > > > > > yesterday there was no problem with the application. Is was
> > > > working
> > > > > > fine.
> > > > > > > > > In our application we have one Lock and Unlock Button. When

> you
> > > > click
> > > > > > on
> > > > > > > > > Lock button, the page will turn into ReadOnly mode. When you
> > > click
> > > > on
> > > > > > > > Unlock
> > > > > > > > > the page will turn into Edit Mode.
> > > > > > > > > Now When I press the Lock or Unlock Button after 2 to 3

> minutes
> > > in
> > > > the
> > > > > > > > > Browser iam getting the below error message.
> > > > > > > > > --------
> > > > > > > > > Server Application Unavailable
> > > > > > > > > The web application you are attempting to access on this web
> > > > server is
> > > > > > > > > currently unavailable. Please hit the "Refresh" button in

> your
> > > web
> > > > > > browser
> > > > > > > > to
> > > > > > > > > retry your request.
> > > > > > > > >
> > > > > > > > > Administrator Note: An error message detailing the cause of

> this
> > > > > > specific
> > > > > > > > > request failure can be found in the application event log of

> the
> > > > web
> > > > > > > > server.
> > > > > > > > > Please review this log entry to discover what caused this

> error
> > > to
> > > > > > occur.
> > > > > > > > > --------
> > > > > > > > >
> > > > > > > > > In the Event Logs the error description is:
> > > > > > > > > Event ID: 1001
> > > > > > > > > aspnet_wp.exe (PID: 500) was recycled because memory

> consumption
> > > > > > exceeded
> > > > > > > > > the 305 MB (60 percent of available RAM).
> > > > > > > > >
> > > > > > > > > We are using .Net framework version1.1. Iam not able to

> figure
> > > it
> > > > out
> > > > > > this
> > > > > > > > > problem.
> > > > > > > > > Can anyone please help on this issue.
> > > > > > > > > You help is much appriciated.
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Bhaskar.
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > >
> > > >
> > >
> > >
> > >

>
>
>

 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
aspnet_wp.exe was recycled because memory consumption exceeded SenthilVel ASP .Net 1 02-28-2007 11:28 AM
aspnet_wp.exe was recycled because memory consumption exceeded the 612 MB (60 percent of available RAM). SenthilVel ASP .Net 0 02-21-2007 12:43 PM
aspnet_wp.exe (PID: 500) was recycled because memory consumption e Raju ASP .Net Datagrid Control 3 11-01-2004 03:17 PM
aspnet_wp.exe (PID: 500) was recycled because memory consumption e Raju ASP .Net Security 0 10-31-2004 10:43 PM
aspnet_wp.exe was recycled because memory consumption exceeded the tony_wang ASP .Net 1 11-21-2003 07:28 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57