Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Current »

The client configuration needs to change the connection url to ActiveMQ:

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;
  • No labels