Uploaded image for project: 'QuickFIX/J'
  1. QuickFIX/J
  2. QFJ-704

New parameter "EnableResendRequest" to disable sending ResedRequest message

    Details

    • Type: New Feature
    • Status: Closed
    • Priority: Default
    • Resolution: Duplicate
    • Affects Version/s: 1.5.2
    • Fix Version/s: None
    • Component/s: Engine
    • Labels:
      None
    • Environment:
      ALL

      Description

      WSE in new system requires to not send ResendRequest Message. Gaps is filled by data from 789 tag. I propose to add new parameter:
      EnableResendRequest=Y|N (default Y)
      If "EnableResendRequest==N" then QuickFix/J don't send ResendRequests.

      Affects methods:
      quickfix.Session::nextSequenceReset(Message sequenceReset):
      (...)
      } else if (newSequence >= range[2]) {
      state.setNextTargetMsgSeqNum(newSequence + 1);
      final String beginString = sequenceReset.getHeader().getString(BeginString.FIELD);
      if (this.enableResendRequest)

      { sendResendRequest(beginString, range[1] + 1, newSequence + 1, range[1]); }

      }
      (...)

      and:

      quickfix.Session::verify(Message msg, boolean checkTooHigh, boolean checkTooLow)
      (...)
      if (msgSeqNum < range[1] && range[2] > 0 && msgSeqNum >= range[2]) {
      final String beginString = header.getString(BeginString.FIELD);
      if (this.enableResendRequest)

      { sendResendRequest(beginString, range[1] + 1, msgSeqNum + 1, range[1]); }

      }
      (...)

      and:

      quickfix.Session::doTargetTooHigh(Message msg)
      (...)
      Last line:
      if (this.enableResendRequest)

      { generateResendRequest(beginString, msgSeqNum); }

      (...)

        Attachments

          Issue Links

            Activity

              People

              • Assignee:
                Unassigned
                Reporter:
                kasopey Krzysztof Szalast
              • Votes:
                0 Vote for this issue
                Watchers:
                2 Start watching this issue

                Dates

                • Created:
                  Updated:
                  Resolved: