Error when deploying/startup app from modeler

1
Since today I suddenly get an error message when deploying from the modeler. I tested this with several versions of the app that did deploy in the past. Also tried to re-install the modeler, clean deployment directory etc., etc. Until now nothing seems to solve this problem. Error message: com.mendix.m2ee.api.AdminException: runtime.start() should not throw anything other than AdminException!     at com.mendix.m2ee.appcontainer.actions.StartAction.startRuntime(StartAction.java:65) Caused by: com.mendix.connectionbus.ConnectionBusRuntimeException: Unknown primitive type: 5     at com.mendix.aZ.a(SourceFile:50)     at com.mendix.aX.<init>(SourceFile:30)     at com.mendix.bi.b(SourceFile:100)     at com.mendix.bi.a(SourceFile:65)     at com.mendix.bh.a(SourceFile:52)     at com.mendix.bh.a(SourceFile:34)     at com.mendix.aQ.a(SourceFile:91)     at com.mendix.aJ.a(SourceFile:39)     at com.mendix.connectionbus.ConnectionBusImpl.a(SourceFile:228)     at com.mendix.connectionbus.ConnectionBusImpl.validateLocalComponent(SourceFile:175)     at com.mendix.core.component.LocalComponentImpl.validateDataStore(SourceFile:78)     at com.mendix.core.impl.MxRuntimeImpl.validateDatabase(SourceFile:381)     at com.mendix.core.impl.MxRuntimeImpl.start(SourceFile:298)     at com.mendix.core.impl.MxRuntimeImpl.start(SourceFile:228)     at com.mendix.m2ee.appcontainer.actions.StartAction.startRuntime(StartAction.java:56)     at com.mendix.m2ee.appcontainer.actions.StartAction.execute(StartAction.java:34)     at com.mendix.m2ee.appcontainer.server.handler.HttpAdminHandler.handle(HttpAdminHandler.java:135)     at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:116)     at org.eclipse.jetty.server.Server.handle(Server.java:368)     at org.eclipse.jetty.server.AbstractHttpConnection.handleRequest(AbstractHttpConnection.java:489)     at org.eclipse.jetty.server.AbstractHttpConnection.headerComplete(AbstractHttpConnection.java:942)     at org.eclipse.jetty.server.AbstractHttpConnection$RequestHandler.headerComplete(AbstractHttpConnection.java:1004)     at org.eclipse.jetty.http.HttpParser.parseNext(HttpParser.java:647)     at org.eclipse.jetty.http.HttpParser.parseAvailable(HttpParser.java:235)     at org.eclipse.jetty.server.AsyncHttpConnection.handle(AsyncHttpConnection.java:82)     at org.eclipse.jetty.io.nio.SelectChannelEndPoint.handle(SelectChannelEndPoint.java:628)     at org.eclipse.jetty.io.nio.SelectChannelEndPoint$1.run(SelectChannelEndPoint.java:52)     at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:608)     at org.eclipse.jetty.util.thread.QueuedThreadPool$3.run(QueuedThreadPool.java:543)     at java.lang.Thread.run(Thread.java:745)
asked
2 answers
1

Did you upgrade to a newer version of mendix and then downgrade? Primitive type 5 indicates that it's trying to use a Decimal, which was introduced in mendix 5.14.

answered
0

Problem found:

I was deploying against a test database that was already used with a upgraded version of the app. This version is not yet in production and we are still supporting the 5.9.1. version.

Running the app against an older version of the testdatabase works fine.

answered