One simple way to determine the corresponding properties for any XML configuration is to use the exportConfigAsProperties management operation. Further details are available in the documentation [1].
Justin [1] https://activemq.apache.org/components/artemis/documentation/latest/management.html#server-management On Fri, May 16, 2025 at 7:47 AM Patrick, Alton (US) <alton.patr...@baesystems.us.invalid> wrote: > I'm trying to understand how to use broker properties ( > https://activemq.apache.org/components/artemis/documentation/latest/configuration-index.html#broker-properties), > specifically to configure high availability. > > For example, how would I represent this sort of XML configuration in a > properties file? > > <ha-policy> > <replication> > <primary> > <check-for-active-server>true</check-for-active-server> > </primary> > <backup> > <allow-failback>true</allow-failback> > <restart-backup>true</restart-backup> > </backup> > </replication> > </ha-policy> > > > >