[Progress Communities] [Progress OpenEdge ABL] Forum Post: RE: Stopping the PASOE service (sometimes this is taking extremely large amount of time)

  • Thread starter Thread starter Michael Jacobs
  • Start date Start date
Status
Not open for further replies.
M

Michael Jacobs

Guest
Yes, a perpetual loop in an ABL application that blocks the STOP condition will keep the Tomcat web app active, and therefore hang the server shutdown. Using the standard Windows Service options (like SC or the Service plug-in... ) there is no forced exit. If you use tcman.bat it adds a wait & force-stop to the Windows Service stop operation. Tcman.bat will first attempt to stop the Windows Service normally. If the Windows Service did not stop, it will wait up to 30 seconds to allow your ABL application code to complete before giving up. You can try adding the command line options -w -F to adjust the wait-time and doe a Windows process stop on Tomcat. tcman.bat service -w 100 -F myinst stop Check with 'tcman.bat help service' to determine if the -w & -F options are listed and available. The versions of OE have improved the Windows Service management via tcman.bat over the later releases. Hope that helps.

Continue reading...
 
Status
Not open for further replies.
Back
Top