Given the sequence number, I need to find the corresponding line of the request message. I cannot find a way to do this easily with quickFix lib.
In short, I had the idea of using the bodyStore FileStore file to help me get the message request string from the serial number, since the FileStore class provides a convenient method:
get(int begin, int end, std::vector result)
But I ran into a problem: since these files are accessed by another FileStore instance (from the initiator instance), these files are not available from any other part of my Windows application: since this prohibits the second owner in these files.
Do I need to rewrite my own mechanism to get a query message string with a serial number?
source
share