fixReceive

Description

fixReceive task receives FIX message from the session. Message verification including FIX fields and groups is supported.

You can use setControlLevel to set level of controlled messages.

Reject (3) message sent to some session appears in BOTH send and receive queues of THIS session. This is done to make scripts development and support easier.

Parameters

Attribute Description Default Required
refid Reference name of the FIX Peer. None Yes
sender Deprecated. FIX Session SenderCompID. None No
target Deprecated. FIX Session TargetCompID. None No
type Deprecated. Session'sFIX Protocol version. None No
timeout Incoming message wait timeout. None No
repeat How many times repeat this operation. 1 No
count How many times wait for each message. 1 No
strictOrdering Validate repeating group entries order or not. false No
backcheckheader Validate message's header or not. true No
backchecktrailer Validate message's trailer or not. true No
backcheckbody Validate message's body or not. true No
validateIncoming Validate arrived incoming messages or not. true No

The fixReceive task should contain a list of FIX messages to be received.

Examples

	<fixReceive refid="main_initiator" timeout="20" repeat="1" count="1" strictOrdering="false">
		<fixMessage source="C2" />
	</fixReceive>