Hi everyone,
I have read in this discussion that it is not possible to group several steps on a single condition (except in condition flow), do you know if there is an improvement of the product in this sense?
I have so many scenarios where we have to repeat the condition over 10 times, for example:
<Step>
<Condition>prelogin = true and response.status.code = 200</Condition>
<Name>ExtractVariable_Field</Name>
</Step>
<Step>
<Condition>prelogin = true and response.status.code = 200 and field = null</Condition>
<Name>RaiseFault_MissingField</Name>
</Step>
<Step>
<Condition>prelogin = true and response.status.code = 200</Condition>
<Name>JWT_Encrypt</Name>
</Step>
<Step>
<Condition>postlogin = true and response.status.code = 200</Condition>
<Name>AM_Set-Cookie</Name>
</Step>
I know you recommend using shared flows, but we already have about 20 shared flow, if we add more we are forced to remove proxies from the environment.
for example, if the backend returns me a status other than 200, how can I forward the response directly to the client without having to compare all these conditions?