Link client certificate to specific request

0
One of our customers has a suplier that request them to use a client certificate per client. This means that depending on who placed the order our customer needs to supply a different client certificate. Is there a way to determine this dynamically in Mendix? Or do we need to make the webservice calls in java in order to achieve this?
asked
1 answers
1

Personally, I think the best approach would be a hybrid Java and Mendix solution, built the request via Mendix (mapping domain to XML), fire the request in java attaching the correct certificate, and then parse the response XML in Mendix using a XML to domain mapping. That way you keep most stuff within Mendix and only fire the request in the Java action.

answered