0

I have a simple Precondition during ValidationTechnicalProfile, that compares claim with a string, I want to Skip that validation step if value matches but it doesn't executes even though the Value is correct:

<Precondition Type="ClaimEquals" ExecuteActionsIf="true">
                  <Value>myClaim</Value>
                  <Value>SomeStringValue</Value>
                  <Action>SkipThisValidationTechnicalProfile</Action>
                </Precondition>

When I see b2c-logs I do see myClaim value set to SomeStringValue but it doesn't executes the Action. What am I doing wrong here?

Thanks

Ray
  • 7
  • 2

1 Answers1

1

I've seen this problem. You haven't shown all the code but have a look at this. That may be the problem i.e.

"myClaim has to be an output claim in the self-asserted TP that calls this validation TP!"

rbrayb
  • 46,440
  • 34
  • 114
  • 174