Open AdamMachera opened 6 years ago
Hi,
Don't know if it is right place to create APIM related bugs. But let me explain what I'm trying to check.
I have added inboud processing rule:
<when condition="@(context.Request.Certificate == null || context.Request.Certificate.Issuer != "CN=AdentsVrsCA")" > <return-response> <set-status code="403" reason="Invalid client certificate" /> </return-response> </when> <when condition="@(!context.Deployment.Certificates.Any(c => c.Value.Thumbprint == context.Request.Certificate.Thumbprint))"> <return-response> <set-status code="403" reason="Invalid client certificate 2" /> </return-response> </when>
Hi,
Don't know if it is right place to create APIM related bugs. But let me explain what I'm trying to check.
I have added inboud processing rule: