Hi, I have recently made a bunch of changes to Phoenix. Some of them are listed below. The most important changes are that; * a NoopSystemManager is installed by default rather than Remote Agent. * SecurityManager is installed VM wide or not at all and to disable it you need to set OS environment variable PHOENIX_SECURE=false
I haven't tested the new win32 .bat script and I would appreciate someone else having a look at it to make sure it still works. It *should* work or be very close to working ;) On Sun, 15 Jul 2001 13:03, [EMAIL PROTECTED] wrote: > donaldp 01/07/14 20:03:34 > > Modified: src/xdocs changes.xml > Log: > Updated changes list with list of current changes. > > Revision Changes Path > 1.2 +39 -2 jakarta-avalon-phoenix/src/xdocs/changes.xml > > Index: changes.xml > =================================================================== > RCS file: /home/cvs/jakarta-avalon-phoenix/src/xdocs/changes.xml,v > retrieving revision 1.1 > retrieving revision 1.2 > diff -u -r1.1 -r1.2 > --- changes.xml 2001/03/01 14:35:39 1.1 > +++ changes.xml 2001/07/15 03:03:33 1.2 > @@ -2,7 +2,7 @@ > > <!DOCTYPE changes SYSTEM "dtd/changes-v10.dtd"> > > -<changes title="Avalon History of Changes"> > +<changes title="Avalon/Phoenix History of Changes"> > <devs> > <person name="Federico Barbieri" email="[EMAIL PROTECTED]" id="FB"/> > <person name="Berin Loritsch" email="[EMAIL PROTECTED]" id="BL"/> > @@ -10,7 +10,44 @@ > </devs> > > <release version="3.1a2" date="Unreleased"> > - <action dev="BL" type="add"> > + <action dev="PD" type="remove"> > + Legacy support for nested configuration elements in assembly file > + removed. > + </action> > + <action dev="PD" type="update"> > + Simplified Loader and made it set ContextClassLoader before > executing + Main method. It will also use the System property > phoenix.home if set + rather than always trying to dynamically determine > home directory. + </action> > + <action dev="PD" type="add"> > + Added SingleAppEmbeddor to launch a kernel to load a single > Application. + Patch supplied by "Eung-ju Park" ([EMAIL PROTECTED]). > This is useful if + you need to reuse the blocks in other contexts (such > as in a Servlet). + </action> > + <action dev="PD" type="add"> > + Made default SystemManager a NoopSystemManager. Patch supplied > + by "Eung-ju Park" ([EMAIL PROTECTED]). To re-enable RMI manager a > new + command line switch "--remote-manager" was added. > + </action> > + <action dev="PD" type="update"> > + Reworked SecurityManager setup. Instead of starting a security > + Manager inside the code it has been re-architectured so that the > + SecurityManager is set on the command line. This was to avoid a > number + of issues related to creating a URLClassLoader in an > unprotected context + before setting SecurityManager. ie As > AccessControllerContext was null it + is impossible to use > ClassLoader.getResource(AsStream)(). This means that + defining > phoenix.insecure will no longer disable the SecurityManager. The + > replacement method is to set the native OS environment variable + > 'PHOENIX_SECURE=false'. > + </action> > + <action dev="PD" type="update"> > + Separate Parsing of CLI arguements into separate class (CLISetup). > + This is to facilitate launching Phoenix as a native daemon using > + Tomcats Services API. > + </action> > + <action dev="PD" type="add"> > + Started Localizing text strings throughout Phoenix. This is done > using + ResourceManager and Resources from Avalon/Excalibur project. > </action> > </release> > > > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] -- Cheers, Pete *-----------------------------------------------------* | "Faced with the choice between changing one's mind, | | and proving that there is no need to do so - almost | | everyone gets busy on the proof." | | - John Kenneth Galbraith | *-----------------------------------------------------* --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
