• Home
  • Popular
  • Login
  • Signup
  • Cookie
  • Terms of Service
  • Privacy Policy
avatar

Posted by G Bot


29 Nov, 2024

Updated at 14 Dec, 2024

SSL Certificate issue

Dear Team,

I hope you are doing well,

I am facing a strange issue from Apigee Edge once I use the SSL certificate config as below, it will not work.

 

 

<HTTPTargetConnection> <LoadBalancer> <Server name="stc-domain"/> </LoadBalancer> <Path>/v1/personIDByServiceNumber</Path> <IsEnabled>true</IsEnabled> <SSLInfo> <Enabled>true</Enabled> <ClientAuthEnabled>true</ClientAuthEnabled> <KeyStore>tcc-stc-330-keystore</KeyStore> <KeyAlias>tcc-stc-330-alias</KeyAlias> </SSLInfo> </HTTPTargetConnection>

 

 

 

 but once I used it like this, it will work fine: URL tag

 

 

 

<HTTPTargetConnection> <SSLInfo> <Enabled>true</Enabled> <ClientAuthEnabled>true</ClientAuthEnabled> <KeyStore>tcc-stc-330-keystore</KeyStore> <KeyAlias>tcc-stc-330-alias</KeyAlias> </SSLInfo> <URL>https://stc-domain/v1/personIDByServiceNumber</URL> </HTTPTargetConnection>

 

 

 

Note that the port used is 443,

Also for pre-prod, I used the same config: but for stc-domain configured in target configurations, the port is 9512 it is working fine

 

 

 

<HTTPTargetConnection> <LoadBalancer> <Server name="stc-domain"/> </LoadBalancer> <Path>/v1/personIDByServiceNumber</Path> <IsEnabled>true</IsEnabled> <SSLInfo> <Enabled>true</Enabled> <ClientAuthEnabled>true</ClientAuthEnabled> <KeyStore>tcc-stc-330-keystore</KeyStore> <KeyAlias>tcc-stc-330-alias</KeyAlias> </SSLInfo> </HTTPTargetConnection>

 

 

 

 

I detected this issue also in my ex-company  once we used the SSL certificate with configured domain and port 443 the certificate did not pass but once we used <URL> tag with target and set the URL explicitly it worked fine

Thank you