ltm rule event FIX MESSAGEΒΆ

iRule(1)		      BIG-IP TMSH Manual		      iRule(1)



FIX_MESSAGE
       Triggered when the system finishes parsing a new FIX message.

DESCRIPTION
       Triggered when the system finishes parsing a new FIX message.

Examples
	when CLIENT_ACCEPTED {
	    log local0. "Enable client side flow migration after server side is connected."
	    BIGTCP::release_flow
	}
	when FIX_MESSAGE {
	    set sender [FIX::tag get 49]
	    set msg_type [FIX::tag get 35]
	    set target [FIX::tag get 56]
	    if {$sender eq "client2"}{
		if {$msg_type eq "A"}{
		    log local0. "Logon successfully: $sender-$msg_type-$target"
		    pool fix_pool2_13976
		}
		if {$msg_type eq "F"}{
		    set tags [list 35 11 21 55 54 38 40 44]
		    foreach i $tags {
		       set tagv [FIX::tag get $i]
		       append tagF $tagv "-"
		    }
		    log local0. "Query F: $tagF"
		}
	    }
	}
	# If explicit flow migration is enabled then notify BIGTCP when to migrate the flow.
	when SERVER_CONNECTED {
	    log local0. "Migrate flow to ePVA once server side is connected."
	    BIGTCP::release_flow
	}

HINTS
SEE ALSO
CHANGE LOG
       @BIGIP-11.5.0 --First introduced the event.



BIG-IP				  2017-01-31			      iRule(1)