Configuration and database changes in 1.9.1
The client configuration needs to change the connection url to ActiveMQ:
(C:\Program and Files\Kodi\Kodiak OMS\Kodi.Kodiak.Clients.Broker.exe.config)
before:
<add key="QueueLocation" value="tcp://192.168.1.77:61616" /> <add key="MarketDataQueue" value="tcp://192.168.1.77:61616" />
Now:
<add key="QueueLocation" value="failover:(tcp://192.168.1.77:61616)?timeout=3000" /> <add key="MarketDataQueue" value="failover:(tcp://192.168.1.77:61616)?timeout=3000" />
The Customers table has a new field indicating whether the customer pays capital gains tax.
--MSSQL ALTER TABLE CUSTOMERS ADD PAYS_CAPITAL_GAINS_TAX bit NULL; --ORACLE VERSION ALTER TABLE CUSTOMERS ADD PAYS_CAPITAL_GAINS_TAX NUMBER(1,0) NULL;