httpQuery and httpFilesetFetch differences

The fundamental difference between httpFilesetFetch and httpQuery is TPS mode. Because httpQuery is message-driven, it needs to run in message-driven mode. This disables the Query Interval feature. Doing this treats the TPS as an outbound TPS that is only called when messages arrive on the outbound queue. The TPS is usually called in Run mode, which is important to know if modifications are made to the procedure.

Alternatively, the httpFilesetFetch procedure is time-driven, so it needs to run in a timer mode. This enables the query interval feature. The TPS is called on a timed basis according to the specified time interval. This TPS is usually called in Time mode.