473,583 Members | 4,428 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Keep IIS Alive

I would like to keep IIS alive on my web site and prevent
Application_End from occuring in global.asax. Any ideas?

Jun 12 '07 #1
7 7215
You don't want to do that.
Application recycling is of great help in managing server resources, particularly RAM.

If you prevent Application recycling from occurring, you'll see a progressive memory load
which will cause deterioration of the server's capacity to respond to requests, and you
might even see a total failure of the server.

If your server's memory load isn't excessive, you might want to consider
scheduling application recyclings so they occur at the time your server
gets the least number of requests ( usually, between midnight and 4am ).

Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
=============== =============== ========
<ma********@fif icorp.netwrote in message
news:11******** **************@ r19g2000prf.goo glegroups.com.. .
>I would like to keep IIS alive on my web site and prevent
Application_End from occuring in global.asax. Any ideas?

Jun 12 '07 #2
On 12 Juni, 16:59, "Juan T. Llibre" <nomailrepl...@ nowhere.comwrot e:
You don't want to do that.
Application recycling is of great help in managing server resources, particularly RAM.

If you prevent Application recycling from occurring, you'll see a progressive memory load
which will cause deterioration of the server's capacity to respond to requests, and you
might even see a total failure of the server.

If your server's memory load isn't excessive, you might want to consider
scheduling application recyclings so they occur at the time your server
gets the least number of requests ( usually, between midnight and 4am ).

Juan T. Llibre, asp.net MVP
asp.net faq :http://asp.net.do/faq/
foros de asp.net, en español :http://asp.net.do/foros/
=============== =============== ========<mail74 7...@fificorp.n etwrote in message

news:11******** **************@ r19g2000prf.goo glegroups.com.. .
I would like to keep IIS alive on my web site and prevent
Application_End from occuring in global.asax. Any ideas?- Dölj citerad text -

- Visa citerad text -

Thanks for yor answer. I can imagine that if I extend the timeout for
each session so they live forever it could mean the total failure of
the server. However I would just like to keep one instance alive or
find some other way to reload it so Application_End do not occur. Or
to restart it when it occurs.

I do not see how recycling the application pool would accomplish this.
Ok if I succeed to keep the application alive I would not mind
recycling the application pool at night.

Some background. I have a workflow that is published as a webservice
and I have discovered that when Application_End occurs the workflow
stops too. I have tried to manually load a page from the web site and
then the workflow starts up again. I have added some code to
Application_Sta rt and Application_End to start and stop the WWF
engine.

Jun 13 '07 #3
re:
!if I succeed to keep the application alive I would not mind
!recycling the application pool at night

You cannot keep an application "alive" if it ends.
All you can do is restart it after it ends.

re:
!I have discovered that when Application_End occurs the workflow stops too

That behavior is by design. It's supposed to work that way.
Otherwise the memory resources can't be disposed of, so a clean slate occurs.

re:
!I have tried to manually load a page from the web site and then the workflow starts up again.

You can setup a batch file which does that, which you can schedule at your lowest-traffic time.

That batch file could include :

1. the application recycling ( or, perhaps, even, a complete IIS reset )
2. the loading of a page, or several pages, from the web site so the workflow starts up again

Windows Scheduler can do that quite easily.

In the morning, all you'd have to do is close the server's browser
....or you could kill iexplore.exe's process programmaticall y ( using another scheduled process ).


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
=============== =============== ========
<ma********@fif icorp.netwrote in message
news:11******** **************@ i13g2000prf.goo glegroups.com.. .
On 12 Juni, 16:59, "Juan T. Llibre" <nomailrepl...@ nowhere.comwrot e:
You don't want to do that.
Application recycling is of great help in managing server resources, particularly RAM.

If you prevent Application recycling from occurring, you'll see a progressive memory load
which will cause deterioration of the server's capacity to respond to requests, and you
might even see a total failure of the server.

If your server's memory load isn't excessive, you might want to consider
scheduling application recyclings so they occur at the time your server
gets the least number of requests ( usually, between midnight and 4am ).

Juan T. Llibre, asp.net MVP
asp.net faq :http://asp.net.do/faq/
foros de asp.net, en español :http://asp.net.do/foros/
=============== =============== ========<mail74 7...@fificorp.n etwrote in message

news:11******** **************@ r19g2000prf.goo glegroups.com.. .
I would like to keep IIS alive on my web site and prevent
Application_End from occuring in global.asax. Any ideas?- Dölj citerad text -

- Visa citerad text -

Thanks for yor answer. I can imagine that if I extend the timeout for
each session so they live forever it could mean the total failure of
the server. However I would just like to keep one instance alive or
find some other way to reload it so Application_End do not occur. Or
to restart it when it occurs.

I do not see how recycling the application pool would accomplish this.
Ok if I succeed to keep the application alive I would not mind
recycling the application pool at night.

Some background. I have a workflow that is published as a webservice
and I have discovered that when Application_End occurs the workflow
stops too. I have tried to manually load a page from the web site and
then the workflow starts up again. I have added some code to
Application_Sta rt and Application_End to start and stop the WWF
engine.
Jun 13 '07 #4
On 13 Juni, 10:57, "Juan T. Llibre" <nomailrepl...@ nowhere.comwrot e:
re:
!if I succeed to keep the application alive I would not mind
!recycling the application pool at night

You cannot keep an application "alive" if it ends.
All you can do is restart it after it ends.

re:
!I have discovered that when Application_End occurs the workflow stops too

That behavior is by design. It's supposed to work that way.
Otherwise the memory resources can't be disposed of, so a clean slate occurs.

re:
!I have tried to manually load a page from the web site and then the workflow starts up again.

You can setup a batch file which does that, which you can schedule at your lowest-traffic time.

That batch file could include :

1. the application recycling ( or, perhaps, even, a complete IIS reset )
2. the loading of a page, or several pages, from the web site so the workflow starts up again

Windows Scheduler can do that quite easily.

In the morning, all you'd have to do is close the server's browser
...or you could kill iexplore.exe's process programmaticall y ( using another scheduled process ).

Juan T. Llibre, asp.net MVP
asp.net faq :http://asp.net.do/faq/
foros de asp.net, en español :http://asp.net.do/foros/
=============== =============== ========<mail74 7...@fificorp.n etwrote in message

news:11******** **************@ i13g2000prf.goo glegroups.com.. .
On 12 Juni, 16:59, "Juan T. Llibre" <nomailrepl...@ nowhere.comwrot e:


You don't want to do that.
Application recycling is of great help in managing server resources, particularly RAM.
If you prevent Application recycling from occurring, you'll see a progressive memory load
which will cause deterioration of the server's capacity to respond to requests, and you
might even see a total failure of the server.
If your server's memory load isn't excessive, you might want to consider
scheduling application recyclings so they occur at the time your server
gets the least number of requests ( usually, between midnight and 4am ).
Juan T. Llibre, asp.net MVP
asp.net faq :http://asp.net.do/faq/
foros de asp.net, en español :http://asp.net.do/foros/
=============== =============== ========<mail74 7...@fificorp.n etwrote in message
news:11******** **************@ r19g2000prf.goo glegroups.com.. .
>I would like to keep IIS alive on my web site and prevent
Application_End from occuring in global.asax. Any ideas?- Dölj citerad text -
- Visa citerad text -

Thanks for yor answer. I can imagine that if I extend the timeout for
each session so they live forever it could mean the total failure of
the server. However I would just like to keep one instance alive or
find some other way to reload it so Application_End do not occur. Or
to restart it when it occurs.

I do not see how recycling the application pool would accomplish this.
Ok if I succeed to keep the application alive I would not mind
recycling the application pool at night.

Some background. I have a workflow that is published as a webservice
and I have discovered that when Application_End occurs the workflow
stops too. I have tried to manually load a page from the web site and
then the workflow starts up again. I have added some code to
Application_Sta rt and Application_End to start and stop the WWF
engine.- Dölj citerad text -

- Visa citerad text -
It is important that this site does not affect other sites on the web
server so I can not for example execute iisreset at a regular
interval. Yes I can create a batch file or a Windows service that
retrieves a web page from the site at for example every 5 minutes.
However I was hoping for a better solution.

Jun 13 '07 #5
re:
!It is important that this site does not affect other sites on the web
!server so I can not for example execute iisreset at a regular interval.

Place the app in its own Application Pool...and only recycle *that* Application Pool.

A simple procedure to do that is described here:
http://blogs.iis.net/chrisad/archive...n-IIS-6.0.aspx

Another way to do that is described here :
http://www.microsoft.com/technet/tec...1/InsideMSCOM/

( recycleapps.vbs <server_name<ap ppool_name )

Recycleapps.vbs is included in this download :
http://download.microsoft.com/downlo...nsideMSCOM.exe

If you're not using IIS 6.0, you can open the application's web.config in Notepad,
and use SendKeys to send an <enterand save the file afterwards...or you can
run an ASP.NET file which does that programmaticall y, using the

You can schedule *that*, too.


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
=============== =============== ========
<ma********@fif icorp.netwrote in message
news:11******** *************@j 4g2000prf.googl egroups.com...
On 13 Juni, 10:57, "Juan T. Llibre" <nomailrepl...@ nowhere.comwrot e:
re:
!if I succeed to keep the application alive I would not mind
!recycling the application pool at night

You cannot keep an application "alive" if it ends.
All you can do is restart it after it ends.

re:
!I have discovered that when Application_End occurs the workflow stops too

That behavior is by design. It's supposed to work that way.
Otherwise the memory resources can't be disposed of, so a clean slate occurs.

re:
!I have tried to manually load a page from the web site and then the workflow starts up again.

You can setup a batch file which does that, which you can schedule at your lowest-traffic time.

That batch file could include :

1. the application recycling ( or, perhaps, even, a complete IIS reset )
2. the loading of a page, or several pages, from the web site so the workflow starts up again

Windows Scheduler can do that quite easily.

In the morning, all you'd have to do is close the server's browser
...or you could kill iexplore.exe's process programmaticall y ( using another scheduled process ).

Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
=============== =============== ========<mail74 7...@fificorp.n etwrote in message

news:11******** **************@ i13g2000prf.goo glegroups.com.. .
On 12 Juni, 16:59, "Juan T. Llibre" <nomailrepl...@ nowhere.comwrot e:


You don't want to do that.
Application recycling is of great help in managing server resources, particularly RAM.
If you prevent Application recycling from occurring, you'll see a progressive memory load
which will cause deterioration of the server's capacity to respond to requests, and you
might even see a total failure of the server.
If your server's memory load isn't excessive, you might want to consider
scheduling application recyclings so they occur at the time your server
gets the least number of requests ( usually, between midnight and 4am ).
Juan T. Llibre, asp.net MVP
asp.net faq :http://asp.net.do/faq/
foros de asp.net, en español :http://asp.net.do/foros/
=============== =============== ========
<mail747...@fif icorp.netwrote in message
>
news:11******** **************@ r19g2000prf.goo glegroups.com.. .
>I would like to keep IIS alive on my web site and prevent
Application_End from occuring in global.asax. Any ideas?- Dölj citerad text -
- Visa citerad text -

Thanks for yor answer. I can imagine that if I extend the timeout for
each session so they live forever it could mean the total failure of
the server. However I would just like to keep one instance alive or
find some other way to reload it so Application_End do not occur. Or
to restart it when it occurs.

I do not see how recycling the application pool would accomplish this.
Ok if I succeed to keep the application alive I would not mind
recycling the application pool at night.

Some background. I have a workflow that is published as a webservice
and I have discovered that when Application_End occurs the workflow
stops too. I have tried to manually load a page from the web site and
then the workflow starts up again. I have added some code to
Application_Sta rt and Application_End to start and stop the WWF
engine.- Dölj citerad text -

- Visa citerad text -
It is important that this site does not affect other sites on the web
server so I can not for example execute iisreset at a regular
interval. Yes I can create a batch file or a Windows service that
retrieves a web page from the site at for example every 5 minutes.
However I was hoping for a better solution.
Jun 13 '07 #6
On 13 Juni, 13:50, "Juan T. Llibre" <nomailrepl...@ nowhere.comwrot e:
re:
!It is important that this site does not affect other sites on the web
!server so I can not for example execute iisreset at a regular interval.

Place the app in its own Application Pool...and only recycle *that* Application Pool.

A simple procedure to do that is described here:http://blogs.iis.net/chrisad/archive...ng-Application...

Another way to do that is described here :http://www.microsoft.com/technet/tec...1/InsideMSCOM/

( recycleapps.vbs <server_name<ap ppool_name )

Recycleapps.vbs is included in this download :http://download.microsoft.com/downlo...8a1-4f71-8546-...

If you're not using IIS 6.0, you can open the application's web.config inNotepad,
and use SendKeys to send an <enterand save the file afterwards...or youcan
run an ASP.NET file which does that programmaticall y, using the

You can schedule *that*, too.

Juan T. Llibre, asp.net MVP
asp.net faq :http://asp.net.do/faq/
foros de asp.net, en español :http://asp.net.do/foros/
=============== =============== ========<mail74 7...@fificorp.n etwrote in message

news:11******** *************@j 4g2000prf.googl egroups.com...
On 13 Juni, 10:57, "Juan T. Llibre" <nomailrepl...@ nowhere.comwrot e:


re:
!if I succeed to keep the application alive I would not mind
!recycling the application pool at night
You cannot keep an application "alive" if it ends.
All you can do is restart it after it ends.
re:
!I have discovered that when Application_End occurs the workflow stops too
That behavior is by design. It's supposed to work that way.
Otherwise the memory resources can't be disposed of, so a clean slate occurs.
re:
!I have tried to manually load a page from the web site and then the workflow starts up again.
You can setup a batch file which does that, which you can schedule at your lowest-traffic time.
That batch file could include :
1. the application recycling ( or, perhaps, even, a complete IIS reset )
2. the loading of a page, or several pages, from the web site so the workflow starts up again
Windows Scheduler can do that quite easily.
In the morning, all you'd have to do is close the server's browser
...or you could kill iexplore.exe's process programmaticall y ( using another scheduled process ).
Juan T. Llibre, asp.net MVP
asp.net faq :http://asp.net.do/faq/
foros de asp.net, en español :http://asp.net.do/foros/
=============== =============== ========<mail74 7...@fificorp.n etwrote in message
news:11******** **************@ i13g2000prf.goo glegroups.com.. .
On 12 Juni, 16:59, "Juan T. Llibre" <nomailrepl...@ nowhere.comwrot e:
You don't want to do that.
Application recycling is of great help in managing server resources, particularly RAM.
If you prevent Application recycling from occurring, you'll see a progressive memory load
which will cause deterioration of the server's capacity to respond torequests, and you
might even see a total failure of the server.
If your server's memory load isn't excessive, you might want to consider
scheduling application recyclings so they occur at the time your server
gets the least number of requests ( usually, between midnight and 4am).
Juan T. Llibre, asp.net MVP
asp.net faq :http://asp.net.do/faq/
foros de asp.net, en español :http://asp.net.do/foros/
=============== =============== ========
<mail747...@fif icorp.netwrote in message
>news:11******* *************** @r19g2000prf.go oglegroups.com. ..
I would like to keep IIS alive on my web site and prevent
Application_End from occuring in global.asax. Any ideas?- Dölj citerad text -
- Visa citerad text -
Thanks for yor answer. I can imagine that if I extend the timeout for
each session so they live forever it could mean the total failure of
the server. However I would just like to keep one instance alive or
find some other way to reload it so Application_End do not occur. Or
to restart it when it occurs.
I do not see how recycling the application pool would accomplish this.
Ok if I succeed to keep the application alive I would not mind
recycling the application pool at night.
Some background. I have a workflow that is published as a webservice
and I have discovered that when Application_End occurs the workflow
stops too. I have tried to manually load a page from the web site and
then the workflow starts up again. I have added some code to
Application_Sta rt and Application_End to start and stop the WWF
engine.- Dölj citerad text -
- Visa citerad text -

It is important that this site does not affect other sites on the web
server so I can not for example execute iisreset at a regular
interval. Yes I can create a batch file or a Windows service that
retrieves a web page from the site at for example every 5 minutes.
However I was hoping for a better solution.- Dölj citerad text -

- Visa citerad text -
Thanks for your answer but my problem is that I want to keep the
ASP.NET application alive so the workflow does not stop running if the
web service does not get any requests. Do you think that recycling the
application pool will accomplish that? I am not so sure either that
recycling the application pool every 5 minutes is such a good idea. It
could affect the workflow.

Jun 13 '07 #7
re:
!but my problem is that I want to keep the ASP.NET application alive so the
!workflow does not stop running if the web service does not get any requests.

....and I already told you that might create more problems than it solves.

I have given you pointers to several solutions which *do* work,
with a minimum of fuss and problems for you and/or your application.

If you don't want to implement any of them...you're on your own.

re:
!I am not so sure either that recycling the application pool every 5 minutes is such a good idea.

You have completely misunderstood what the suggested solutions do.

The idea is to recycle the application pool ONCE daily, at the time when your application gets
the least requests, and immediately afterwards run a batch file to reinitialize your workflow.

That will accomplish two things : 1. safeguard your app from being stalled by excessive
resource consumtion ( from not being recycled ) ...and 2. : restart your application
so the workflow gets reinitialized.


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
=============== =============== ========
<ma********@fif icorp.netwrote in message
news:11******** **************@ q19g2000prn.goo glegroups.com.. .
On 13 Juni, 13:50, "Juan T. Llibre" <nomailrepl...@ nowhere.comwrot e:
re:
!It is important that this site does not affect other sites on the web
!server so I can not for example execute iisreset at a regular interval.

Place the app in its own Application Pool...and only recycle *that* Application Pool.

A simple procedure to do that is described
here:http://blogs.iis.net/chrisad/archive...ng-Application...

Another way to do that is described here
:http://www.microsoft.com/technet/tec...1/InsideMSCOM/

( recycleapps.vbs <server_name<ap ppool_name )

Recycleapps.vbs is included in this download
:http://download.microsoft.com/downlo...8a1-4f71-8546-...

If you're not using IIS 6.0, you can open the application's web.config in Notepad,
and use SendKeys to send an <enterand save the file afterwards...or you can
run an ASP.NET file which does that programmaticall y, using the

You can schedule *that*, too.

Juan T. Llibre, asp.net MVP
asp.net faq :http://asp.net.do/faq/
foros de asp.net, en español :http://asp.net.do/foros/
=============== =============== ========<mail74 7...@fificorp.n etwrote in message

news:11******** *************@j 4g2000prf.googl egroups.com...
On 13 Juni, 10:57, "Juan T. Llibre" <nomailrepl...@ nowhere.comwrot e:


re:
!if I succeed to keep the application alive I would not mind
!recycling the application pool at night
You cannot keep an application "alive" if it ends.
All you can do is restart it after it ends.
re:
!I have discovered that when Application_End occurs the workflow stops too
That behavior is by design. It's supposed to work that way.
Otherwise the memory resources can't be disposed of, so a clean slate occurs.
re:
!I have tried to manually load a page from the web site and then the workflow starts up again.
You can setup a batch file which does that, which you can schedule at your lowest-traffic time.
That batch file could include :
1. the application recycling ( or, perhaps, even, a complete IIS reset )
2. the loading of a page, or several pages, from the web site so the workflow starts up again
Windows Scheduler can do that quite easily.
In the morning, all you'd have to do is close the server's browser
...or you could kill iexplore.exe's process programmaticall y ( using another scheduled
process ).
Juan T. Llibre, asp.net MVP
asp.net faq :http://asp.net.do/faq/
foros de asp.net, en español :http://asp.net.do/foros/
=============== =============== ========<mail74 7...@fificorp.n etwrote in message
news:11******** **************@ i13g2000prf.goo glegroups.com.. .
On 12 Juni, 16:59, "Juan T. Llibre" <nomailrepl...@ nowhere.comwrot e:
You don't want to do that.
Application recycling is of great help in managing server resources, particularly RAM.
If you prevent Application recycling from occurring, you'll see a progressive memory load
which will cause deterioration of the server's capacity to respond to requests, and you
might even see a total failure of the server.
If your server's memory load isn't excessive, you might want to consider
scheduling application recyclings so they occur at the time your server
gets the least number of requests ( usually, between midnight and 4am ).
Juan T. Llibre, asp.net MVP
asp.net faq :http://asp.net.do/faq/
foros de asp.net, en español :http://asp.net.do/foros/
=============== =============== ========
<mail747...@fif icorp.netwrote in message
>news:11******* *************** @r19g2000prf.go oglegroups.com. ..
I would like to keep IIS alive on my web site and prevent
Application_End from occuring in global.asax. Any ideas?- Dölj citerad text -
- Visa citerad text -
Thanks for yor answer. I can imagine that if I extend the timeout for
each session so they live forever it could mean the total failure of
the server. However I would just like to keep one instance alive or
find some other way to reload it so Application_End do not occur. Or
to restart it when it occurs.
I do not see how recycling the application pool would accomplish this.
Ok if I succeed to keep the application alive I would not mind
recycling the application pool at night.
Some background. I have a workflow that is published as a webservice
and I have discovered that when Application_End occurs the workflow
stops too. I have tried to manually load a page from the web site and
then the workflow starts up again. I have added some code to
Application_Sta rt and Application_End to start and stop the WWF
engine.- Dölj citerad text -
- Visa citerad text -

It is important that this site does not affect other sites on the web
server so I can not for example execute iisreset at a regular
interval. Yes I can create a batch file or a Windows service that
retrieves a web page from the site at for example every 5 minutes.
However I was hoping for a better solution.- Dölj citerad text -

- Visa citerad text -
Thanks for your answer but my problem is that I want to keep the
ASP.NET application alive so the workflow does not stop running if the
web service does not get any requests. Do you think that recycling the
application pool will accomplish that? I am not so sure either that
recycling the application pool every 5 minutes is such a good idea. It
could affect the workflow.
Jun 13 '07 #8

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

Similar topics

1
4466
by: David | last post by:
This is called "evil hack problem" because my problems are due to me trying to do an evil hack. Please don't judge me, just believe that there are reasons for what I'm trying to do :-) I've got a problem with BaseHTTPServer. I am trying to keep a connection alive so that I can send data down it. At the moment, I have subclassed...
0
1824
by: Gil Strauss | last post by:
When using .net framework HttpWebRequest object, how can we set the connection header to "keep-alive" Acording to Microsoft ducomentation, setting the keepAlive property to true, should do the job, but it doesn't seem to do so When trying to change the header manually (using httpWebRequestObject.Connection = "Keep-Alive") we get the following...
1
1850
by: cppdev | last post by:
Hello, After reading a few articles, http://blogs.gotdotnet.com/cbrumme/PermaLink.aspx/e55664b4-6471-48b9-b360-f0fa27ab6cc0 http://blogs.gotdotnet.com/anathan/commentview.aspx/8ec0b7b2-6290-4500-a8c7-1b6c677214cb i have the following question: __gc class C {
2
7285
by: David Rasmussen | last post by:
Someone once asked about this an got no answer: http://groups.google.dk/group/comp.lang.python/browse_frm/thread/c3cc0b8d7e9cbc2/ff11efce3b1776cf?lnk=st&q=python+http+%22keep+alive%22&rnum=84&hl=da#ff11efce3b1776cf Maybe I am luckier :) Does anyone know how to do Keep-Alive with urllib2, that is, how to get a persistent HTTP connection,...
1
5201
by: Nuno Magalhaes | last post by:
With the sniffer ethereal I get a lot of Connections Keep Alive in some sites like google.com and that returns me the Content-Length in the HTTP response header. When the connection is Close I don't get the Content-Length but I get an hexadecimal number that represents the size of the page but that is after the header and in the page more...
4
11405
by: Morgan Cheng | last post by:
Days ago, I post a question on how to make SoapHttpClientProtocol instance make new TCP connection for each web service request. Now, I found how. SoapHttpClientProtocol has a protected method GetWebRequest(System.Uri uri) which returns a WebRequest instance. Though MSDN doesn't make clear statement. I experiment and prove that...
0
1498
by: Ramchandar | last post by:
In my aspx page i want the lot of informations to be filled by the user. But wen the user takes some break to fill the form n resumes after some time the page gets expired. So to keep the session alive i used the following javascript code but it didnt work. function KeepMeAlive() { var myImg; myImg...
0
1864
by: richard.krehbiel | last post by:
I've been googling for half a day now and have found answers on both sides of the argument. Baiscally it's this: I am using PHP 5.0.4 (I can upgrade if that's a solution) as an ISAPI module under IIS (Windows Server 2003). Each transaction to my PHP page returns "Connection: close", i.e. Keep-Alive isn't working. I've seen references that...
1
2300
by: =?Utf-8?B?QWxwaGFwYWdl?= | last post by:
Hello, I have built an object which does some jobs on a particular server. There can have lots of this object running concurrently. I want to know what is the best way to optimize my application: - keep all those objects alive in memory without any timeout (the object is built one time per user, then disposed when the user exits). - as I...
0
7894
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
8323
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
1
7933
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For...
0
6578
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
0
5372
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert...
0
3841
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2331
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1431
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
1155
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

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.