I am new to WSO2 and I already have got a FIX proxy (initiator) up and running. My question is around the services parameters for a FIX proxy service, can I store the Initiator Config in the registry , the examples below is like the settings I use, here the InitiatorConfigURL is set to a physical file "file:repository/conf/synapse-sender-m.cfg”
<parameter name="transport.fix.InitiatorConfigURL">file:repository/conf/synapse-sender-m.cfg</parameter>
See the content to the config file below
[DEFAULT]
ConnectionType=initiator
ReconnectInterval=60
SenderCompID=TW
# session definition
[SESSION]
# inherit ConnectionType, ReconnectInterval and SenderCompID from default
BeginString=FIX.4.1
TargetCompID=ARCA
StartTime=12:30:00
EndTime=23:30:00
HeartBtInt=20
SocketConnectPort=9823
SocketConnectHost=123.123.123.123
DataDictionary=somewhere/FIX41.xml
What I want to know is instead of a physical file can I store the content of my config file in the ESB registry, If I can how is that done? and how do I reference the stored content in my service parameter? I hope I explained my question well. Thanks in advance for any help that comes my way.