...
<add key="appLogName" value="TipKodiak" />
<add key="appLogSource" value="TipGateway" />
<add key="GatewayName" value="INET" />
<add key="GeniusUsername" value="Kodi" />
<add key="GeniusPassword" value="pisl80mo" />
<add key="UseWCFBondsCalc" value="true" />
</appSettings>
Kodi.Kodiak.Clients.Broker.exe.config
<appSettings>
<!--Contains the url to the virtual directory of the machine running the Kodiak web services-->
<add key="UrlPrefix" value="http://staging.kodiak.local:8080/" />
<!--Contains the tcp url to the machine running Active MQ for trading data-->
<add key="QueueLocation" value="failover:(tcp://192.168.1.77:61616)?timeout=3000" />
<!--Contains the tcp url to the machine running Active MQ for market data-->
<add key="MarketDataQueue" value="failover:(tcp://192.168.1.77:61616)?timeout=3000" />
<add key="StaticDataUrl" value="https://staticdata.livemarketdata.com/v1/" />
<add key="RestartTime" value="03:00" />
<add key="MifidStartPageUrl" value="http://staging.kodiak.local/mifid/kodiakMifidProfile.aspx" />
<add key="MifidTestPageUrl" value="http://staging.kodiak.local/mifid/kodiakMifidTests.aspx" />
<add key="MifidTestResultsPage" value="http://staging.kodiak.local/mifid/KodiakMifidTestResults.aspx" />
<add key="MifidTestPageName" value="kodiakMifidTests.aspx" />
<add key="IsMarketMaker" value="false" />
<add key="MarketMakerSSN" value="111111111111" />
<add key="UseLandsbankiMifid" value="false" />
<add key="DebugMessages" value="true" />
<add key="ShowBypassBackOfficeCheck" value="false" />
<add key="ManualSettlementEnabled" value="true" />
<add key="UseInternalFunds" value="true" />
<add key="InternalFundOrderExchange" value="VIB" />
<add key="UseFundPriceDiscount" value="true" />
<add key="UserCanChangeFundProcessingFee" value="true" />
</appSettings>
These Service configs should be added (the ones in bold)
<endpoint name="KodiakMifidService" contract="Kodi.Mifid.Common.IKodiakMifidService" behaviorConfiguration="BehaviorConfig" binding="basicHttpBinding" bindingConfiguration="MifidBinding" address="http://staging.kodiak.local/MifidServices/kodiakmifidservice.svc">
<identity>
<servicePrincipalName value="HOST/staging.kodiak.local:8080" />
</identity>
</endpoint>
<endpoint name="FundOrderService" contract="Kodi.Kodiak.Services.ServiceContracts.IFundOrderService" behaviorConfiguration="BehaviorConfig" binding="wsHttpBinding" bindingConfiguration="KodiakAD" address="http://urlprefix/FundOrderService.svc">
<identity>
<servicePrincipalName value="HOST/192.168.1.77:8080" />
</identity>
</endpoint>
<endpoint name="DiscountService" contract="Kodi.Kodiak.Services.ServiceContracts.IDiscountService" behaviorConfiguration="BehaviorConfig" binding="wsHttpBinding" bindingConfiguration="KodiakAD" address="http://staging.kodiak.local/Libra/DiscountService.svc">
<identity>
<servicePrincipalName value="HOST/staging.kodiak.local" />
</identity>
</endpoint>