DeepLink, ForgotPassword module, LoginPage and weird bug

1
Hey ! Here is the situation : I’m trying to get ForgotModule working (usnig DeepLink), with the singup featuren but : When I open the unique link generated , the “change your password” window displays correctly, but there’s a technical error right after I changed the password. new MxObject(): cannot create Mendix object. Check entity access for entity Administration.Account Error: new MxObject(): cannot create Mendix object. Check entity access for entity Administration.Account     at new h (http://localhost:8080/mxclientsystem/mxui/mxui.js?637617170937700805:5:188975)     at Function.fromJson (http://localhost:8080/mxclientsystem/mxui/mxui.js?637617170937700805:5:199095)     at m.getUserObject (http://localhost:8080/mxclientsystem/mxui/mxui.js?637617170937700805:73:26623)     at http://localhost:8080/mxclientsystem/mxui/mxui.js?637617170937700805:5:299129     at Object.forEach (http://localhost:8080/mxclientsystem/mxui/mxui.js?637617170937700805:5:30998)     at http://localhost:8080/mxclientsystem/mxui/mxui.js?637617170937700805:5:299070     at t.UI.startup (http://localhost:8080/mxclientsystem/mxui/mxui.js?637617170937700805:5:299237)     at http://localhost:8080/mxclientsystem/mxui/mxui.js?637617170937700805:5:227765     at new Promise (<anonymous>)     at http://localhost:8080/mxclientsystem/mxui/mxui.js?637617170937700805:5:227744 Then I’m redirected to the default LoginPage (not the one I specified in the navigation panel), and some errors appear in the console : java.lang.IllegalArgumentException: requirement failed: Reference values can't be null.     at scala.Predef$.require(Predef.scala:338)     at com.mendix.basis.objectmanagement.member.MendixObjectReferenceSetImpl.setValue(MendixObjectReferenceSetImpl.scala:68)     at com.mendix.basis.objectmanagement.member.MendixObjectReferenceSetImpl.setValue(MendixObjectReferenceSetImpl.scala:55)     at com.mendix.basis.objectmanagement.member.MendixObjectReferenceSetImpl.setValue(MendixObjectReferenceSetImpl.scala:18)     at com.mendix.basis.objectmanagement.MendixObjectImpl.setValue(MendixObjectImpl.java:244)     at com.mendix.basis.objectmanagement.MendixObjectImpl.setValue(MendixObjectImpl.java:233)     at com.mendix.basis.session.User.addUserRole(User.java:153)     at com.mendix.basis.session.SessionValidator$.$anonfun$applyChangesToSessionAndUser$4(SessionValidator.scala:103)     at com.mendix.basis.session.SessionValidator$.$anonfun$applyChangesToSessionAndUser$4$adapted(SessionValidator.scala:103)     at scala.collection.immutable.List.foreach(List.scala:333)     at com.mendix.basis.session.SessionValidator$.$anonfun$applyChangesToSessionAndUser$3(SessionValidator.scala:103)     at com.mendix.basis.session.SessionValidator$.$anonfun$applyChangesToSessionAndUser$3$adapted(SessionValidator.scala:92)     at scala.Option.foreach(Option.scala:437)     at com.mendix.basis.session.SessionValidator$.com$mendix$basis$session$SessionValidator$$applyChangesToSessionAndUser(SessionValidator.scala:92)     at com.mendix.basis.session.SessionValidator.$anonfun$refreshSessionIfExists$1(SessionValidator.scala:67)     at scala.runtime.java8.JFunction0$mcZ$sp.apply(JFunction0$mcZ$sp.scala:17)     at scala.util.Try$.apply(Try.scala:210)     at com.mendix.basis.session.SessionValidator.refreshSessionIfExists(SessionValidator.scala:59)     at com.mendix.basis.session.SessionValidator.revalidate(SessionValidator.scala:47)     at com.mendix.basis.session.PersistentSession.revalidate(PersistentSession.scala:76)     at com.mendix.basis.session.SessionManagerBase.getSessionById(SessionManagerBase.java:149)     at com.mendix.webui.requesthandling.helpers.SessionHandling.$anonfun$getSessionFromRequestUnsafe$2(SessionHandling.scala:37)     at scala.Option.flatMap(Option.scala:283)     at com.mendix.webui.requesthandling.helpers.SessionHandling.getSessionFromRequestUnsafe(SessionHandling.scala:35)     at com.mendix.webui.requesthandling.helpers.SessionHandling.getSessionFromRequestUnsafe$(SessionHandling.scala:33)     at com.mendix.webui.actions.client.GetSessionDataAction.getSessionFromRequestUnsafe(GetSessionDataAction.scala:29)     at com.mendix.webui.actions.client.GetSessionDataAction.$anonfun$initializeSession$1(GetSessionDataAction.scala:93)     at scala.util.Try$.apply(Try.scala:210)     at com.mendix.webui.actions.client.GetSessionDataAction.initializeSession(GetSessionDataAction.scala:91)     at com.mendix.webui.actions.client.GetSessionDataAction.execute(GetSessionDataAction.scala:44)     at com.mendix.webui.requesthandling.ClientRequestHandler.handleAction(ClientRequestHandler.scala:106)     at com.mendix.webui.requesthandling.ClientRequestHandler.processRequest(ClientRequestHandler.scala:79)     at com.mendix.externalinterface.connector.RequestHandler.doProcessRequest(RequestHandler.java:35)     at com.mendix.external.connector.MxRuntimeConnector.lambda$processRequest$0(MxRuntimeConnector.java:74)     at com.mendix.util.classloading.Runner.withContextClassLoader(Runner.java:19)     at com.mendix.external.connector.MxRuntimeConnector.processRequest(MxRuntimeConnector.java:73)     at com.mendix.basis.impl.MxRuntimeImplBase.processRequest(MxRuntimeImplBase.java:806)     at com.mendix.m2ee.appcontainer.server.handler.RuntimeServlet.service(RuntimeServlet.scala:25)     at javax.servlet.http.HttpServlet.service(HttpServlet.java:790)     at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:791)     at org.eclipse.jetty.servlet.ServletHandler$ChainEnd.doFilter(ServletHandler.java:1626)     at org.eclipse.jetty.websocket.server.WebSocketUpgradeFilter.doFilter(WebSocketUpgradeFilter.java:228)     at org.eclipse.jetty.servlet.FilterHolder.doFilter(FilterHolder.java:193)     at org.eclipse.jetty.servlet.ServletHandler$Chain.doFilter(ServletHandler.java:1601)     at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:548)     at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:233)     at org.eclipse.jetty.server.session.SessionHandler.doHandle(SessionHandler.java:1624)     at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:233)     at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1435)     at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:188)     at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:501)     at org.eclipse.jetty.server.session.SessionHandler.doScope(SessionHandler.java:1594)     at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:186)     at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1350)     at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141)     at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127)     at org.eclipse.jetty.server.Server.handle(Server.java:516)     at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:388)     at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:633)     at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:380)     at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:277)     at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311)     at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:105)     at org.eclipse.jetty.io.ChannelEndPoint$1.run(ChannelEndPoint.java:104)     at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336)     at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313)     at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171)     at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129)     at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:383)     at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:882)     at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:1036)     at java.base/java.lang.Thread.run(Thread.java:834)  and also this one : com.mendix.systemwideinterfaces.MendixRuntimeException: java.lang.IllegalArgumentException: requirement failed: Reference values can't be null.     at com.mendix.util.classloading.Runner.withContextClassLoader(Runner.java:23) Caused by: java.lang.IllegalArgumentException: requirement failed: Reference values can't be null.     at scala.Predef$.require(Predef.scala:338)     at com.mendix.basis.objectmanagement.member.MendixObjectReferenceSetImpl.setValue(MendixObjectReferenceSetImpl.scala:68)     at com.mendix.basis.objectmanagement.member.MendixObjectReferenceSetImpl.setValue(MendixObjectReferenceSetImpl.scala:55)     at com.mendix.basis.objectmanagement.member.MendixObjectReferenceSetImpl.setValue(MendixObjectReferenceSetImpl.scala:18)     at com.mendix.basis.objectmanagement.MendixObjectImpl.setValue(MendixObjectImpl.java:244)     at com.mendix.basis.objectmanagement.MendixObjectImpl.setValue(MendixObjectImpl.java:233)     at com.mendix.basis.session.User.addUserRole(User.java:153)     at com.mendix.basis.session.SessionValidator$.$anonfun$applyChangesToSessionAndUser$4(SessionValidator.scala:103)     at com.mendix.basis.session.SessionValidator$.$anonfun$applyChangesToSessionAndUser$4$adapted(SessionValidator.scala:103)     at scala.collection.immutable.List.foreach(List.scala:333)     at com.mendix.basis.session.SessionValidator$.$anonfun$applyChangesToSessionAndUser$3(SessionValidator.scala:103)     at com.mendix.basis.session.SessionValidator$.$anonfun$applyChangesToSessionAndUser$3$adapted(SessionValidator.scala:92)     at scala.Option.foreach(Option.scala:437)     at com.mendix.basis.session.SessionValidator$.com$mendix$basis$session$SessionValidator$$applyChangesToSessionAndUser(SessionValidator.scala:92)     at com.mendix.basis.session.SessionValidator.$anonfun$refreshSessionIfExists$1(SessionValidator.scala:67)     at scala.runtime.java8.JFunction0$mcZ$sp.apply(JFunction0$mcZ$sp.scala:17)     at scala.util.Try$.apply(Try.scala:210)     at com.mendix.basis.session.SessionValidator.refreshSessionIfExists(SessionValidator.scala:59)     at com.mendix.basis.session.SessionValidator.revalidate(SessionValidator.scala:47)     at com.mendix.basis.session.PersistentSession.revalidate(PersistentSession.scala:76)     at com.mendix.basis.session.SessionManagerBase.getSessionById(SessionManagerBase.java:149)     at com.mendix.webui.requesthandling.helpers.SessionHandling.$anonfun$getSessionFromRequestUnsafe$2(SessionHandling.scala:37)     at scala.Option.flatMap(Option.scala:283)     at com.mendix.webui.requesthandling.helpers.SessionHandling.getSessionFromRequestUnsafe(SessionHandling.scala:35)     at com.mendix.webui.requesthandling.helpers.SessionHandling.getSessionFromRequestUnsafe$(SessionHandling.scala:33)     at com.mendix.webui.requesthandling.WebAppManifestHandler.getSessionFromRequestUnsafe(WebAppManifestHandler.scala:21)     at com.mendix.webui.requesthandling.WebAppManifestHandler.getLanguage(WebAppManifestHandler.scala:81)     at com.mendix.webui.requesthandling.WebAppManifestHandler.processRequest(WebAppManifestHandler.scala:35)     at com.mendix.externalinterface.connector.RequestHandler.doProcessRequest(RequestHandler.java:35)     at com.mendix.external.connector.MxRuntimeConnector.lambda$processRequest$0(MxRuntimeConnector.java:74)     at com.mendix.util.classloading.Runner.withContextClassLoader(Runner.java:19)     at com.mendix.external.connector.MxRuntimeConnector.processRequest(MxRuntimeConnector.java:73)     at com.mendix.basis.impl.MxRuntimeImplBase.processRequest(MxRuntimeImplBase.java:806)     at com.mendix.m2ee.appcontainer.server.handler.RuntimeServlet.service(RuntimeServlet.scala:25)     at javax.servlet.http.HttpServlet.service(HttpServlet.java:790)     at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:791)     at org.eclipse.jetty.servlet.ServletHandler$ChainEnd.doFilter(ServletHandler.java:1626)     at org.eclipse.jetty.websocket.server.WebSocketUpgradeFilter.doFilter(WebSocketUpgradeFilter.java:228)     at org.eclipse.jetty.servlet.FilterHolder.doFilter(FilterHolder.java:193)     at org.eclipse.jetty.servlet.ServletHandler$Chain.doFilter(ServletHandler.java:1601)     at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:548)     at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:233)     at org.eclipse.jetty.server.session.SessionHandler.doHandle(SessionHandler.java:1624)     at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:233)     at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1435)     at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:188)     at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:501)     at org.eclipse.jetty.server.session.SessionHandler.doScope(SessionHandler.java:1594)     at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:186)     at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1350)     at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141)     at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127)     at org.eclipse.jetty.server.Server.handle(Server.java:516)     at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:388)     at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:633)     at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:380)     at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:277)     at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311)     at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:105)     at org.eclipse.jetty.io.ChannelEndPoint$1.run(ChannelEndPoint.java:104)     at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336)     at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313)     at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171)     at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129)     at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:383)     at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:882)     at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:1036)     at java.base/java.lang.Thread.run(Thread.java:834) And I’m unable to login, I got this error : com.mendix.core.CoreRuntimeException: com.mendix.systemwideinterfaces.MendixRuntimeException: com.mendix.core.CoreRuntimeException: Exception occurred in action '{"type":"LoginAction","user":"KohomaiAdmin"}', all database changes executed by this action were rolled back     at com.mendix.basis.actionmanagement.ActionManager.executeSync(ActionManager.scala:84) Caused by: com.mendix.systemwideinterfaces.MendixRuntimeException: com.mendix.core.CoreRuntimeException: Exception occurred in action '{"type":"LoginAction","user":"KohomaiAdmin"}', all database changes executed by this action were rolled back     at com.mendix.util.classloading.Runner.withContextClassLoader(Runner.java:23) Caused by: com.mendix.core.CoreRuntimeException: Exception occurred in action '{"type":"LoginAction","user":"KohomaiAdmin"}', all database changes executed by this action were rolled back     at com.mendix.basis.actionmanagement.CoreActionHandlerImpl.processErrorState(CoreActionHandlerImpl.scala:150) Caused by: java.lang.IllegalArgumentException: requirement failed: Reference values can't be null.     at scala.Predef$.require(Predef.scala:338)     at com.mendix.basis.objectmanagement.member.MendixObjectReferenceSetImpl.setValue(MendixObjectReferenceSetImpl.scala:68)     at com.mendix.basis.objectmanagement.member.MendixObjectReferenceSetImpl.setValue(MendixObjectReferenceSetImpl.scala:55)     at com.mendix.basis.objectmanagement.member.MendixObjectReferenceSetImpl.setValue(MendixObjectReferenceSetImpl.scala:18)     at com.mendix.basis.objectmanagement.MendixObjectImpl.setValue(MendixObjectImpl.java:244)     at com.mendix.basis.objectmanagement.MendixObjectImpl.setValue(MendixObjectImpl.java:233)     at com.mendix.basis.session.User.addUserRole(User.java:153)     at com.mendix.basis.session.SessionValidator$.$anonfun$applyChangesToSessionAndUser$4(SessionValidator.scala:103)     at com.mendix.basis.session.SessionValidator$.$anonfun$applyChangesToSessionAndUser$4$adapted(SessionValidator.scala:103)     at scala.collection.immutable.List.foreach(List.scala:333)     at com.mendix.basis.session.SessionValidator$.$anonfun$applyChangesToSessionAndUser$3(SessionValidator.scala:103)     at com.mendix.basis.session.SessionValidator$.$anonfun$applyChangesToSessionAndUser$3$adapted(SessionValidator.scala:92)     at scala.Option.foreach(Option.scala:437)     at com.mendix.basis.session.SessionValidator$.com$mendix$basis$session$SessionValidator$$applyChangesToSessionAndUser(SessionValidator.scala:92)     at com.mendix.basis.session.SessionValidator.$anonfun$refreshSessionIfExists$1(SessionValidator.scala:67)     at scala.runtime.java8.JFunction0$mcZ$sp.apply(JFunction0$mcZ$sp.scala:17)     at scala.util.Try$.apply(Try.scala:210)     at com.mendix.basis.session.SessionValidator.refreshSessionIfExists(SessionValidator.scala:59)     at com.mendix.basis.session.SessionValidator.revalidate(SessionValidator.scala:47)     at com.mendix.basis.session.PersistentSession.revalidate(PersistentSession.scala:76)     at com.mendix.basis.session.SessionManagerBase.getSessionById(SessionManagerBase.java:149)     at com.mendix.basis.session.SessionManager.$anonfun$getExistingSession$2(SessionManager.scala:222)     at scala.Option.flatMap(Option.scala:283)     at com.mendix.basis.session.SessionManager.getExistingSession(SessionManager.scala:222)     at com.mendix.basis.session.SessionManager.initializeSession(SessionManager.scala:44)     at com.mendix.basis.session.LoginManagerImpl.initializeSession(LoginManagerImpl.scala:92)     at com.mendix.basis.action.user.LoginActionHandlerImpl.doExecuteAction(LoginActionHandlerImpl.scala:34)     at com.mendix.basis.action.user.LoginActionHandlerImpl.executeAction(LoginActionHandlerImpl.scala:29)     at com.mendix.core.action.user.LoginAction.executeAction(LoginAction.java:30)     at com.mendix.core.action.user.LoginAction.executeAction(LoginAction.java:10)     at com.mendix.systemwideinterfaces.core.UserAction.execute(UserAction.java:46)     at com.mendix.basis.actionmanagement.CoreActionHandlerImpl.doCall(CoreActionHandlerImpl.scala:70)     at com.mendix.basis.actionmanagement.CoreActionHandlerImpl.call(CoreActionHandlerImpl.scala:48)     at com.mendix.core.actionmanagement.internal.InternalCoreAction.call(InternalCoreAction.scala:25)     at com.mendix.basis.actionmanagement.CoreActionHandlerImpl.$anonfun$runMonitoredAction$1(CoreActionHandlerImpl.scala:59)     at com.mendix.basis.actionmanagement.ActionMonitoring$.$anonfun$monitor$1(ActionMonitoring.scala:50)     at com.mendix.util.classloading.Runner.withContextClassLoader(Runner.java:19)     at com.mendix.basis.actionmanagement.ActionMonitoring$.monitor(ActionMonitoring.scala:50)     at com.mendix.basis.actionmanagement.CoreActionHandlerImpl.runMonitoredAction(CoreActionHandlerImpl.scala:59)     at com.mendix.basis.actionmanagement.CoreActionHandlerImpl.call(CoreActionHandlerImpl.scala:46)     at com.mendix.core.actionmanagement.internal.InternalCoreAction.call(InternalCoreAction.scala:25)     at com.mendix.basis.actionmanagement.ActionManager.$anonfun$executeSync$2(ActionManager.scala:80)     at com.mendix.util.classloading.Runner.withContextClassLoader(Runner.java:19)     at com.mendix.basis.actionmanagement.ActionManager.executeSync(ActionManager.scala:79)     at com.mendix.basis.component.ExecutionCore.doExecuteSync(ExecutionCore.scala:142)     at com.mendix.basis.component.ExecutionCore.doExecuteSync$(ExecutionCore.scala:141)     at com.mendix.basis.component.InternalCore.doExecuteSync(InternalCore.scala:21)     at com.mendix.basis.component.SessionCore.login(SessionCore.scala:78)     at com.mendix.basis.component.SessionCore.login$(SessionCore.scala:77)     at com.mendix.basis.component.InternalCore.login(InternalCore.scala:21)     at com.mendix.basis.component.SessionCore.login(SessionCore.scala:128)     at com.mendix.basis.component.SessionCore.login(SessionCore.scala:87)     at com.mendix.basis.component.SessionCore.login$(SessionCore.scala:86)     at com.mendix.basis.component.InternalCore.login(InternalCore.scala:21)     at com.mendix.webui.actions.client.LoginAction.$anonfun$execute$1(LoginAction.scala:29)     at scala.util.Try$.apply(Try.scala:210)     at com.mendix.webui.actions.client.LoginAction.execute(LoginAction.scala:29)     at com.mendix.webui.requesthandling.ClientRequestHandler.handleAction(ClientRequestHandler.scala:106)     at com.mendix.webui.requesthandling.ClientRequestHandler.processRequest(ClientRequestHandler.scala:79)     at com.mendix.externalinterface.connector.RequestHandler.doProcessRequest(RequestHandler.java:35)     at com.mendix.external.connector.MxRuntimeConnector.lambda$processRequest$0(MxRuntimeConnector.java:74)     at com.mendix.util.classloading.Runner.withContextClassLoader(Runner.java:19)     at com.mendix.external.connector.MxRuntimeConnector.processRequest(MxRuntimeConnector.java:73)     at com.mendix.basis.impl.MxRuntimeImplBase.processRequest(MxRuntimeImplBase.java:806)     at com.mendix.m2ee.appcontainer.server.handler.RuntimeServlet.service(RuntimeServlet.scala:25)     at javax.servlet.http.HttpServlet.service(HttpServlet.java:790)     at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:791)     at org.eclipse.jetty.servlet.ServletHandler$ChainEnd.doFilter(ServletHandler.java:1626)     at org.eclipse.jetty.websocket.server.WebSocketUpgradeFilter.doFilter(WebSocketUpgradeFilter.java:228)     at org.eclipse.jetty.servlet.FilterHolder.doFilter(FilterHolder.java:193)     at org.eclipse.jetty.servlet.ServletHandler$Chain.doFilter(ServletHandler.java:1601)     at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:548)     at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:233)     at org.eclipse.jetty.server.session.SessionHandler.doHandle(SessionHandler.java:1624)     at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:233)     at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1435)     at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:188)     at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:501)     at org.eclipse.jetty.server.session.SessionHandler.doScope(SessionHandler.java:1594)     at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:186)     at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1350)     at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141)     at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127)     at org.eclipse.jetty.server.Server.handle(Server.java:516)     at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:388)     at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:633)     at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:380)     at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:277)     at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311)     at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:105)     at org.eclipse.jetty.io.ChannelEndPoint$1.run(ChannelEndPoint.java:104)     at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:336)     at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:313)     at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:171)     at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:129)     at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:383)     at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:882)     at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:1036)     at java.base/java.lang.Thread.run(Thread.java:834)     Any idea ?
asked
1 answers
0

usually when I see:
“new MxObject(): cannot create Mendix object.
Check entity access for entity Administration.Account
Error: new MxObject(): cannot create Mendix object.
Check entity access for entity Administration.Account

has something to do with rights, that are not configured correctly in certain modules.

Might help narrow down where you are looking

answered