Hi @Narendrn Balachandran • Thank you for reaching out.
Looking at the error you are getting, you have 2 Orchestration Steps with Type="SendClaims"
in your policy files. I suspect you have configured the same orchestration step under the Extensions file as well as the RP file. This is why, the Extensions file gets uploaded successfully and when you upload the RP file, it finds the OrchestrationStep of this type already existing in the Extensions file and throws the error.
As per the document, below step needs to be added to the RP file:
<UserJourneys>
<UserJourney Id="SignUpOrSignIn">
<OrchestrationSteps>
<OrchestrationStep Order="7" Type="SendClaims" CpimIssuerTechnicalProfileReferenceId="Saml2AssertionIssuer"/>
</OrchestrationSteps>
</UserJourney>
</UserJourneys>
If you have configured the same step in the Extensions file under <UserJourney Id="SignUpOrSignIn">
, you need to replace it with below step:
<OrchestrationStep Order="7" Type="SendClaims" CpimIssuerTechnicalProfileReferenceId="JwtIssuer" />
-----------------------------------------------------------------------------------------------------------
Please "Accept the answer" if the information helped you. This will help us and others in the community as well.