How to access certificates from Mendix Environment

0
Hi All ,  We have a Mendix application where we are adding files from Mendix to share Point . As our share Point is client specific we are using a Java function and passing our security certificates (Stored Locally ) in order to authenticate and get cookies in return to authenticate further REST calls . Now as i cannot keep the certificates locally , I have put them on Mendix Environment with the help of operations team of Mendix . Now i want to access those certificates from Environment to my Application Microflows . Can someone guide me how can i achieve this .
asked
1 answers
2

You should be able to upload client certificates in the Mendix cloud, as described here.

 

You can retrieve certificates in Java by:

Core.getConfiguration().getClientCertificates();

Similarly, you can get their passwords by:

Core.getConfiguration().getClientCertificatePasswords();

See the Java API here.

answered