Java action runtime exception on getLogger

0
I have written a java action to upload a file from Mendix application to Azure blob storage. When I try to make connection with Azure blob storage using connection string, Null Pointer exception occurs on getLogger method. The application uses the Mendix version 9.2.0. Caused by: java.lang.NullPointerException: Cannot invoke "com.mendix.core.internal.ICore.getLogger(String)" because "com.mendix.core.Core.core" is null     at com.mendix.core.Core.getLogger(Core.java:1538)     at org.slf4j.MendixLogger.<init>(MendixLogger.java:16)     at org.slf4j.LoggerFactory.getLogger(LoggerFactory.java:8)     at com.azure.core.util.logging.ClientLogger.<init>(ClientLogger.java:101)     at com.azure.core.util.logging.ClientLogger.<init>(ClientLogger.java:67)     at com.azure.core.util.logging.ClientLogger.<init>(ClientLogger.java:57)     at com.azure.storage.blob.BlobServiceClientBuilder.<clinit>(BlobServiceClientBuilder.java:73)   Any ideas on how to fix this? 
asked
1 answers
0

You should replace the “com.mendix.core.Core.core” line with “com.mendix.core.Core” in the java file.

answered