I am trying to send FIX messages through a stunnel connection. I am using the quickfix Python library (quickfix==1.15.1). When I launch the initiator.start(), I can print a session number, using the method:
def onCreate(self, sessionID):
print(sessionID.toString())
return
However, the session disconnect automatically after initiator.start() is launched, with the following error message on the stunnel shell.
However, I do not have any error in my python shell. I don't know if the error is coming from my quickfix setup or my stunnel one.
Does anyone already encounter this issue? More broadly, how to debug quickfix in python? as the python library is only calling C binaries?
I tried to use the Go API for quickfix, and it seems I get the exact same error, meaning that it could either be an issue of quickfix configuration or stunnel configuration.
Let me further explain the situation:
I am using Docker in order to run stunnel. I run my Docker container using the (vimagick/stunnel public Docker image)
Then I am launching the stunnel using:
It requests the passphrase. I am entering it.
My stunnel configuration file is:
I can see in my shell the following stunnel output (I replaced all private information with XXX):
From here it seems my stunnel is correctly up and running.
Then, I launch my quickfix application. I am running the following code:
with the following test.py code:
My initiator.cfg file is:
I want to run my quickfix application only to request quotes, meaning that I launch it as an initiator only. I confirm that the serveur I want to reach is working with FIX 5.0SP2 protocol. When running my python quickfix application, I receive the following logs :
In my python shell:
In my stunnel shell:
I don't understand why the stunnel is disconnecting directly after the initiator.start. Isn't it supposed to stay up? waiting for subsequent FIX messages? Also, how to test sending an heartbeat request?