有没有办法在同一编排步骤上的索赔交换之间进行切换?到目前为止,我使用b2c的经验是,用户之旅只能在单向的线性路径上工作,不能通过一个步骤后退。
<OrchestrationStep Order="2" Type="ClaimsProviderSelection" ContentDefinitionReferenceId="api.providerselection-phoneoremail">
<ClaimsProviderSelections>
<ClaimsProviderSelection TargetClaimsExchangeId="SignUpEmail" />
<ClaimsProviderSelection TargetClaimsExchangeId="SignUpPhone" />
</ClaimsProviderSelections>
<ClaimsExchanges>
<ClaimsExchange Id="SignUpEmail" TechnicalProfileReferenceId="SelfAsserted-CollectEmail" />
<ClaimsExchange Id="SignUpPhone" TechnicalProfileReferenceId="SelfAsserted-CollectPhone" />
</ClaimsExchanges>
</OrchestrationStep>发布于 2020-08-25 15:37:05
它是通过编排步骤的线性单向路径。您不能返回到上一个业务流程步骤。
https://stackoverflow.com/questions/63573510
复制相似问题