http://qs321.pair.com?node_id=85215


in reply to Re: (Software Engr) Encapsulate! No,no,no! Decouple!
in thread (Software Engr) Encapsulate! No,no,no! Decouple!

My two penneths worth would be that the location of the welcome text should be in the configuration file but the text itself be in a separate file. When the server starts, it knows where to grab the text from and does so as required. Assuming, for a minute, that the welcome text is loaded from disk as required, the server need not be manipulated in any way to change the text, only the file contents need changing. The alternative would be a quick HUP.
  • Comment on Re: Re: (Software Engr) Encapsulate! No,no,no! Decouple!

Replies are listed 'Best First'.
Re: Re: Re: (Software Engr) Encapsulate! No,no,no! Decouple!
by John M. Dlugosz (Monsignor) on Jun 03, 2001 at 07:26 UTC
    My thoughts exactly.