ExcelImporter problem in acceptance environment

2
The application can import excel file in localhost but when i deployed and started application in acceptance environment for customer i can't both create a new template from excel and import it. Does anyone know what is the cause of this problem? The error message is Caused by: java.lang.ClassNotFoundException: replication.interfaces.IValueParser 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) at java.lang.ClassLoader.loadClassInternal(Unknown Source) 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 it.b(SourceFile:155) at com.mendix.core.Core.execute(SourceFile:191) at hi.a(SourceFile:70) at kM.a(SourceFile:67) at eR.executeAction(SourceFile:96) at com.mendix.systemwideinterfaces.core.UserAction.execute(SourceFile:49) at com.mendix.core.actionmanagement.CoreAction.call(SourceFile:473) at it.b(SourceFile:155) at com.mendix.core.Core.execute(SourceFile:191) at dB.execute(SourceFile:183) at ju.a(SourceFile:299) at ju.a(SourceFile:230) at ju.processRequest(SourceFile:174) at fF.a(SourceFile:71) at com.mendix.core.MxRuntime.processRequest(SourceFile:924) at com.mendix.m2ee.server.handler.RuntimeHandler.handle(RuntimeHandler.java:42) 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(Unknown Source) Thank in advance :)
asked
3 answers
0

Looks like you're missing a jar file containing a replication package.

The exact error is that it can't find the class replication.interfaces.IValueParser. If you do have a jar file containing the 'replication' package, it's probably not in the correct location.

answered
0

I'm ensure for replication package exist container

Let me to show my structure.

apllication\model\lib\userlib >

          mxldap.jar
          mxwinsso.jar
          replication.jar
          replication_1.0.2.jar
          spring.jar
          spring_license.txt
          spring-ldap-1.2.1.jar
          spring-ldap-1.2.1_license.jar

Thank you for your reply

answered
0

I did follow David Sanders's suggestion,Just upgraded Mendix services to version 1.0.6.0

ref: https://forum.mendix.com/questions/1598/Excel-Importer-not-working

Thank you all for replies

answered