[Opcenter EX FN Starter Kit] Issue with Java dependency synchronization in Mendix 10.24.6

0
Hello, I am currently working on developing a Low Code UI application using the Opcenter Execution Foundation Starter Kit (v6.1.0) in Mendix Studio Pro 10.24.6. I have strictly followed the installation guide regarding the JRE and JDK configurations. However, when I attempt to run the project locally, I encounter the following error popup: Error Message: "Java dependency synchronization failed: Unknown dependency synchronization error.." I have attached a screenshot of the error for your reference. Could you please guide me on how to resolve this issue? Thank you.  
asked
3 answers
0

Hi Lee, did you send any messages to the dedicated support team for Opcenter Foundation Execution?

If you have any questions or encounter issues related to Opcenter Execution topics, feel free to reach out via email.

d6ea24a2.siemens.onmicrosoft.com@emea.teams.ms

answered
0

You can choose to disable the checkbox in the dialog message, and rebuild again. Did you try it?

answered
0

Hi BongKuy Lee,

 

As you are working inside an remote desktop, I assume you work in a protected environment with controlled access to the agry wild world wide web, probably using a proxy.

You can indeed disable this check, this most of the times works just fine, except if you need new Java dependencies, they are not automatically downloaded from the Maven repository.

If you know the proxy host, you can make gradle to work: go to %userprofile%/.gradle in your file explorer and create/update the gradle.properties file as follows:

systemProp.http.proxyHost=FILL_IN_YOUR_PROXY_HOST
systemProp.http.proxyPort=80
systemProp.https.proxyHost=FILL_IN_YOUR_PROXY_HOST
systemProp.https.proxyPort=80
systemProp.javax.net.ssl.trustStore=\\path\\to\\win_ini_file
systemProp.javax.net.ssl.trustStoreType=Windows-ROOT

 

Don't forget to replace FILL_IN_YOUR_PROXY_HOST with the hostname of your proxy server.

 

Good luck!

answered