Mendix Service Console 2.0.0

0
I'm trying to deploy my application on Mendix Service Console 2.0.0. unfortunately getting an error as below. java.lang.NoClassDefFoundError: com/mendix/m2ee/server/HttpAdminAppContainer Caused by: java.lang.ClassNotFoundException: com.mendix.m2ee.server.HttpAdminAppContainer at java.net.URLClassLoader$1.run(Unknown Source) at java.security.AccessController.doPrivileged(Native Method) at java.net.URLClassLoader.findClass(Unknown Source) at java.lang.ClassLoader.loadClass(Unknown Source) at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source) at java.lang.ClassLoader.loadClass(Unknown Source) Exception in thread "main"
asked
1 answers
6

Did you copy the runtime and server folders from your Mendix 3.0.0 installation directory (typically C:\Program Files\Mendix\3.0.0) to the Mendix folder of your deployment location?

The missing class from your exception is located in a library from the server folder which didn't exist in Mendix 2.5, so forgetting to copy this folder can cause your error.

answered