Test SSL in ApigeeX for a target

In Apigee Edge, we currently utilize a management API to assess SSL configurations for a target. I would like to inquire if a similar management API is available within ApigeeX. If not, could you provide guidance on developing one internally, or if there are plans to introduce a dedicated management API for SSL testing in the foreseeable future?

Solved Solved
1 1 92
1 ACCEPTED SOLUTION

No - there is nothing like that in APigee X. The networking is different, so it will not be possible to have such a check.

You can simply build a test proxy and invoke it. 

The SSLInfo parameters are all "dynamic" which means you can specify them at runtime. So you could build a flexible test proxy that accepts as input parameters for the truststore, keystore, etc etc... and then tries to invoke the target with those parameters. This shouldn't be hard to do. 

You could start with the Target Server Validator project

View solution in original post

1 REPLY 1

No - there is nothing like that in APigee X. The networking is different, so it will not be possible to have such a check.

You can simply build a test proxy and invoke it. 

The SSLInfo parameters are all "dynamic" which means you can specify them at runtime. So you could build a flexible test proxy that accepts as input parameters for the truststore, keystore, etc etc... and then tries to invoke the target with those parameters. This shouldn't be hard to do. 

You could start with the Target Server Validator project