IValueParser not found with ExcelImporter

1
When using the Excel importer I can't seem to import the excel data. In my log I get the following error: java.lang.NoClassDefFoundError: replication/interfaces/IValueParser at excelimporter.reader.ExcelImporter.startImport(ExcelImporter.java:124) at excelimporter.actions.StartImportByTemplate.executeAction(StartImportByTemplate.java:53) at excelimporter.actions.StartImportByTemplate.executeAction(StartImportByTemplate.java:24) at com.mendix.systemwideinterfaces.core.UserAction.execute(SourceFile:49) at com.mendix.core.actionmanagement.CoreAction.call(SourceFile:473) at iu.b(SourceFile:155) at com.mendix.core.Core.execute(SourceFile:187) at hg.a(SourceFile:70) at kW.a(SourceFile:66) at eO.executeAction(SourceFile:96) at com.mendix.systemwideinterfaces.core.UserAction.execute(SourceFile:49) at com.mendix.core.actionmanagement.CoreAction.call(SourceFile:473) at iu.b(SourceFile:155) at com.mendix.core.Core.execute(SourceFile:187) at dx.execute(SourceFile:183) at jy.a(SourceFile:300) at jy.a(SourceFile:232) at jy.processRequest(SourceFile:183) at fA.a(SourceFile:75) at com.mendix.core.MxRuntime.processRequest(SourceFile:893) at com.mendix.m2ee.server.handler.RuntimeHandler.handle(RuntimeHandler.java:40) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:113) at org.eclipse.jetty.server.Server.handle(Server.java:334) at org.eclipse.jetty.server.HttpConnection.handleRequest(HttpConnection.java:559) at org.eclipse.jetty.server.HttpConnection$RequestHandler.content(HttpConnection.java:1007) at org.eclipse.jetty.http.HttpParser.parseNext(HttpParser.java:747) at org.eclipse.jetty.http.HttpParser.parseAvailable(HttpParser.java:209) at org.eclipse.jetty.server.HttpConnection.handle(HttpConnection.java:406) at org.eclipse.jetty.io.nio.SelectChannelEndPoint.run(SelectChannelEndPoint.java:462) at org.eclipse.jetty.util.thread.QueuedThreadPool$2.run(QueuedThreadPool.java:436) at java.lang.Thread.run(Thread.java:619)
asked
1 answers
2

The error indicates that the Java class replication.interfaces.IValueParser cannot be found. This class should be located in the replication.jar library in your userlib folder, which will automatically be placed there when downloading the ExcelImporter module from the AppStore.

If you don't have that library in your userlib folder, try to download the module again. If you do have the library, perhaps you've recently upgraded to a newer version? In that case, the clean deployment directory option (in the project menu of the modeler) might help.

answered