How do I set certificate for making SSL connections to other servers? Do I
use the following code in my servlet:
System.setProperty("javax.net.ssl.keyStore", "WEB-INF/blah.ks");
System.setProperty("javax.net.ssl.trustStore", "WEB-INF/blah-blah.ks");
or use the appengine-web.xml:
<property name="javax.net.ssl.keyStore" value="WEB-INF/blah.ks"/>
<property name="javax.net.ssl.trustStore" value="WEB-INF/blah-blah.ks"/>
On the development server, neither seems to make any difference. From
looking at the SSL debug trace, keystore and truststore are not set. But if
I put these properties as JVM options to the dev_appserver command line
then they show up in the debug trace.
Thanks.
--
You received this message because you are subscribed to the Google Groups
"Google App Engine for Java" group.
To view this discussion on the web visit
https://groups.google.com/d/msg/google-appengine-java/-/PbMUvkFnZIkJ.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-appengine-java?hl=en.