【发布时间】:2014-10-12 00:48:57
【问题描述】:
是否可以在 Apigee 的 Java 标注中引用上传的 SSL 证书?我已使用以下指南成功上传了 Client-SSL 证书:http://apigee.com/docs/api-services/content/client-ssl-backend-servers
我可以使用来自目标代理和服务标注的以下内容引用 SSL 证书,但是如何从 Java 标注中引用 SSL 证书?
<HTTPTargetConnection>
<SSLInfo>
<Enabled>true</Enabled>
<ClientAuthEnabled>true</ClientAuthEnabled>
<KeyStore>myKeystore</KeyStore>
<KeyAlias>myKey</KeyAlias>
<TrustStore>myTruststore</TrustStore>
</SSLInfo>
<URL>https://myservice.com</URL>
</HTTPTargetConnection>
【问题讨论】:
标签: apigee