Dynamic retry count and interval

Hi…
is there anyway to implement dynamic values of retry count and retry interval for the repeat step?
i want to store thos values in some config file and not in the properties fields.

10x

Sure u can use it from properties file , after u get the repeat count from properties file , use variable substitution in the properties for repeat .

HTH
Sri

Variable substitution works in most of the flow operators properties - click in one of the fields, hit F1, and the context help will tell you which ones will work with %variableName%.

Yeah substitute variable works fine in repeat step. I am ussing it for long time… get your repeatCount and repeatInterval in pipeline from anywhere…i.e. property… in Repeat step properties put %repeatCount% and %repeatInterval% and it should work…

Thanks
Ajit

Thanx all.