I am making a python app that will send a message via API to the broker app. I have in documentation information that the message should be in XML format:
<FIXML v="5.0" r="20080317" s="20080314">
<UserReq UserReqID="0" UserReqTyp="1" Username="1234" Password="1234"/>
</FIXML>
- Could you tell me how to send it in python language?
- How to connect to that API, I have information that says:
In order to connect to the API, use the following registers:
HKEY_CURRENT_USER/Software/COMARCH S.A./NOL3/7/Settings:
• nca_pasync – port value for an asynchronous channel (default value: 24445),
• nca_psync – port value for a synchronous channel (default value: 24444),
• ncaset_pasync – flag informing whether the value in nca_pasync is active (1 - active, 0 -
inactive),
• ncaset_psync - a flag indicating whether the value in nca_psync is active (1 - active, 0 - inactive).
I have figured it out. Generaly you need to do everything manualy unfortunetly.
Using this code I was able to login. Please remeber you have to login to your broker first and lunch nol3 application.