Hi , I am trying to install Mendix desktop modeller by running the Mendix-7.12.0-Setup.exe but it is getting stuck everytiime at the download pre requisite software phase. I have waited for more than 1 hour but still its not progressing. Please share your inputs to fix this.
↧
Mendix-7.12.0-Setup exe is getting stuck while installation
↧
Assign role in microflow
Hi, I have an enumeration where we select a role which should be applied to the user being made. I have created a microflow where I have set an exclusive split to check which enumeration has been selected. How do I assign a role to the user after a certain enumeration has been checked, so after the exclusive split? What I have so far is: The user is made but can't login because the user doesn't get a role.
↧
↧
7.13 Upgrade introduces new 401 error on added request handler through JAVA
In our project we've created a custom request handler through JAVA. Which helped anonymous users log in through a stored cookie. Can anyone tell me if there was any changes that were introduced in 7.13 that may have had effect on this because I cannot find anything that could possibly relate to this in the change log? The error thrown inside Mendix reads as followed: Unable to load http://localhost:8080/persistentlogin status: 401 Error: Unable to load http://localhost:8080/persistentlogin status: 401 at new o (http://localhost:8080/mxclientsystem/mxui/mxui.js?636578466811296366:1:50606) at d.l [as handleResponse] (http://localhost:8080/mxclientsystem/mxui/mxui.js?636578466811296366:1:65826) at XMLHttpRequest.i (http://localhost:8080/mxclientsystem/mxui/mxui.js?636578466811296366:1:66072)
↧
Error in SOAP webservice
Hi all, When I activate a SOAP webservice in ACC environment the message doesn't arrive at the endpoint and gives next message: Soap message : null Error type: com.sun.xml.ws.server.UnsupportedMediaException Error message: Unsupported content-Type:text/xml;Charset=utf-8 Supported ones are: [application /soap+xml] When I test the message in my development env to SOAPUI all goes well and I get the expected response. The endpoint has been checked. How can I solve this?
↧
Can we add new attribute dynamically to entity?
Can we add new attribute dynamically to entity? By any means either by Java actions use case: i) User can upload a excel file, UI should dynamically render grid based on that data and also allow them to edit. ii) Dynamically generate grid based on the json input, We have a grid in which need to show the dynamic columns based on json input, values are grouped under 'data' key, a) data : [{'abc':'11', 'abd:'12'},{'abc':'12', 'abd:'13'}] , should create column 'abc', 'abd' in data grid b) data : [{'aa':'11', 'bb:'12'},{'aa':'12', 'bb:'13'}] , should create column 'aa', 'bb' Any suggestion? Thanks, Mani
↧
↧
Excel export template
Hi Team I am using excel export template module (XLSReport module) for report generation. The pre-built functionality is working as expected. Now I have to add one more column to the worksheet. The column header is added in the excel export but the values from row number 2 is not added. i.e. I already have 10 columns exporting in my excel sheet. Now I have added one more column at position no 4. So my total columns are 11. So on header row there are 11 columns. but from row number 2 only 10 columns are coming instead of 11. the new column values are not populating. I followed below steps: Added new column in the entity which is assigned to input object of the sheet. Run the application. Refreshed the entity and modules and microflows in module reflection section. Added the new column at position 4 which got populated in input object section of creating template. Generated report.
↧
Service Ticket System
Hi, Has anyone built a Service Desk / Help Desk / Ticketing System to replace their internal use for ZenDesk or other Ticketing Systems? Just wondering if anyone has had success before I go down this road... I would probably need a way to parse incoming emails as tickets as most systems currently do.
↧
Database Connector Date as Variable
Hi all, I am connecting to a remote database using the database connector. I have connection with this database, the problem is that I want to query on this database. I want to execute a stored procedure that uses 3 variables. The variables are 2 string values and a date. This date is the problem. The format of the dates in the SQL Server database I am trying to connect is yyyy-MM-dd hh:mm:ss:SSS (with the time normally not being set so typically 0). When I wish to execute a query that activates the stored procedure with the 3 variables I send out the following 'string' in the parameter.
'EXEC dbo.sp_StoredProcedure
@dateStart=''& FORMAT(' + formatDateTime($Planner/Date, 'yyyy-MM-dd') + '"yyyy-mm-dd") &'',
@customerName=''&'+$Planner/Customer+'&'',
@siteName=''&'+$Planner/Site+'&''' This leads to the following strack trace:
com.mendix.core.CoreException: com.mendix.core.CoreRuntimeException: com.mendix.systemwideinterfaces.MendixRuntimeException: com.microsoft.sqlserver.jdbc.SQLServerException: Error converting data type varchar to date.
at com.mendix.basis.component.InternalCore.execute(InternalCore.java:577)
Caused by: com.mendix.core.CoreRuntimeException: com.mendix.systemwideinterfaces.MendixRuntimeException: com.microsoft.sqlserver.jdbc.SQLServerException: Error converting data type varchar to date.
at com.mendix.basis.actionmanagement.ActionManager.executeSync(ActionManager.java:195)
Caused by: com.mendix.systemwideinterfaces.MendixRuntimeException: com.microsoft.sqlserver.jdbc.SQLServerException: Error converting data type varchar to date.
at com.mendix.util.classloading.Runner.doRunUsingClassLoaderOf(Runner.java:37)
Caused by: com.microsoft.sqlserver.jdbc.SQLServerException: Error converting data type varchar to date.
at com.microsoft.sqlserver.jdbc.SQLServerException.makeFromDatabaseError(SQLServerException.java:217)
at com.microsoft.sqlserver.jdbc.SQLServerStatement.getNextResult(SQLServerStatement.java:1655)
at com.microsoft.sqlserver.jdbc.SQLServerPreparedStatement.doExecutePreparedStatement(SQLServerPreparedStatement.java:440)
at com.microsoft.sqlserver.jdbc.SQLServerPreparedStatement$PrepStmtExecCmd.doExecute(SQLServerPreparedStatement.java:385)
at com.microsoft.sqlserver.jdbc.TDSCommand.execute(IOBuffer.java:7505)
at com.microsoft.sqlserver.jdbc.SQLServerConnection.executeCommand(SQLServerConnection.java:2445)
at com.microsoft.sqlserver.jdbc.SQLServerStatement.executeCommand(SQLServerStatement.java:191)
at com.microsoft.sqlserver.jdbc.SQLServerStatement.executeStatement(SQLServerStatement.java:166)
at com.microsoft.sqlserver.jdbc.SQLServerPreparedStatement.executeUpdate(SQLServerPreparedStatement.java:328)
at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeUpdate(ProxyPreparedStatement.java:61)
at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeUpdate(HikariProxyPreparedStatement.java)
at databaseconnector.impl.JdbcConnector.executeStatement(JdbcConnector.java:94)
at databaseconnector.actions.ExecuteStatement.executeAction(ExecuteStatement.java:71)
at databaseconnector.actions.ExecuteStatement.executeAction(ExecuteStatement.java:51)
at com.mendix.systemwideinterfaces.core.UserAction.execute(UserAction.java:50)
at com.mendix.basis.actionmanagement.CoreActionHandlerImpl.doCall(CoreActionHandlerImpl.scala:76)
at com.mendix.basis.actionmanagement.CoreActionHandlerImpl.call(CoreActionHandlerImpl.scala:55)
at com.mendix.core.actionmanagement.CoreAction.call(CoreAction.java:51)
at com.mendix.basis.actionmanagement.ActionManager$1.execute(ActionManager.java:186)
at com.mendix.util.classloading.Runner.doRunUsingClassLoaderOf(Runner.java:33)
at com.mendix.basis.actionmanagement.ActionManager.executeSync(ActionManager.java:191)
at com.mendix.basis.component.InternalCore.execute(InternalCore.java:573)
at com.mendix.modules.microflowengine.actions.actioncall.JavaAction.execute(JavaAction.scala:60)
at com.mendix.modules.microflowengine.microflow.impl.MicroflowObject.execute(MicroflowObject.java:47)
at com.mendix.modules.microflowengine.microflow.impl.MicroflowImpl.executeAfterBreakingIfNecessary(MicroflowImpl.java:200)
at com.mendix.modules.microflowengine.microflow.impl.MicroflowImpl.executeAction(MicroflowImpl.java:157)
at com.mendix.systemwideinterfaces.core.UserAction.execute(UserAction.java:50)
at com.mendix.basis.actionmanagement.CoreActionHandlerImpl.doCall(CoreActionHandlerImpl.scala:76)
at com.mendix.basis.actionmanagement.CoreActionHandlerImpl.call(CoreActionHandlerImpl.scala:55)
at com.mendix.core.actionmanagement.CoreAction.call(CoreAction.java:51)
at com.mendix.basis.actionmanagement.ActionManager$1.execute(ActionManager.java:186)
at com.mendix.util.classloading.Runner.doRunUsingClassLoaderOf(Runner.java:33)
at com.mendix.basis.actionmanagement.ActionManager.executeSync(ActionManager.java:191)
at com.mendix.basis.component.InternalCore.execute(InternalCore.java:573)
at com.mendix.webui.actions.client.ExecuteAction.execute(ExecuteAction.java:135)
at com.mendix.webui.requesthandling.ClientRequestHandler$$anonfun$handleRequest$1.apply$mcV$sp(ClientRequestHandler.scala:328)
at com.mendix.webui.requesthandling.ClientRequestHandler$$anonfun$handleRequest$1.apply(ClientRequestHandler.scala:313)
at com.mendix.webui.requesthandling.ClientRequestHandler$$anonfun$handleRequest$1.apply(ClientRequestHandler.scala:313)
at com.mendix.basis.actionmanagement.IMonitoredAction$$anon$1.execute(IMonitoredAction.scala:47)
at com.mendix.util.classloading.Runner.doRunUsingClassLoaderOf(Runner.java:33)
at com.mendix.basis.actionmanagement.IMonitoredAction$class.monitor(IMonitoredAction.scala:49)
at com.mendix.webui.requesthandling.ClientRequestHandler$ClientMonitoredAction.monitor(ClientRequestHandler.scala:431)
at com.mendix.webui.requesthandling.ClientRequestHandler.handleRequest(ClientRequestHandler.scala:313)
at com.mendix.webui.requesthandling.ClientRequestHandler.handleActionWithSessionRequired(ClientRequestHandler.scala:251)
at com.mendix.webui.requesthandling.ClientRequestHandler.handleAction(ClientRequestHandler.scala:218)
at com.mendix.webui.requesthandling.ClientRequestHandler.liftedTree1$1(ClientRequestHandler.scala:104)
at com.mendix.webui.requesthandling.ClientRequestHandler.processRequest(ClientRequestHandler.scala:96)
at com.mendix.externalinterface.connector.RequestHandler.doProcessRequest(RequestHandler.java:40)
at com.mendix.external.connector.MxRuntimeConnector$1.execute(MxRuntimeConnector.java:70)
at com.mendix.external.connector.MxRuntimeConnector$1.execute(MxRuntimeConnector.java:67)
at com.mendix.util.classloading.Runner.doRunUsingClassLoaderOf(Runner.java:33)
at com.mendix.external.connector.MxRuntimeConnector.processRequest(MxRuntimeConnector.java:73)
at com.mendix.basis.impl.MxRuntimeImpl.processRequest(MxRuntimeImpl.java:858)
at com.mendix.m2ee.appcontainer.server.handler.RuntimeHandler.handle(RuntimeHandler.java:41)
at org.eclipse.jetty.server.handler.HandlerList.handle(HandlerList.java:52)
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.content(AbstractHttpConnection.java:953)
at org.eclipse.jetty.server.AbstractHttpConnection$RequestHandler.content(AbstractHttpConnection.java:1014)
at org.eclipse.jetty.http.HttpParser.parseNext(HttpParser.java:861)
at org.eclipse.jetty.http.HttpParser.parseAvailable(HttpParser.java:240)
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:748)
Hence what I think is the problem is that because I format the date it comes in as a string and not as a date. And the database cannot convert this. However if I do not format the date I cannot run the app because the entire query should be a string: How can I give the date as a variable that can be picked up as a date by the database in this string?
↧
Enumeration vs Entity
I frequently ask myself whether I should use an Enumeration value or a new Entity for certain use cases. (Status drop downs are probably the most common). There are benefits to both, but I have second guess my decision on multiple occasions. I like the Entity because I can manage on the front-end without having to redeploy the app, and some of my logic can be more dynamic by retrieving lists. However, when using xpath constraints I find myself using free text, which makes me nervous for long term stability. Enumerations are great because they are integrated into the Modeler rule checking so I can't make a typo, however, the limitations on Enumerations make them a tedious option in most cases. Any good articles or feedback on this dilemma?
↧
↧
XPath query
Good morning. I don t know what is the version of XPath that Mendix used, but is it possible to upgrade the functionalities that there are offered ? Per example, it s not possible to execute a IN query... [EBCC.Employee_BPoffice/EBCC.BPSyncOffice/OfficeID in ($BPSyncOfficeList)] Thanks a lot.
↧
How to improve modeler performance with mendix 7.11
This week we have upgraded a Mendix project from 6.10 to 7.9 and 7.11. Since then we are experiencing serious modeler performance issues. I have a pretty good laptop but the modeler is using 75%+ of my CPU and 40%+ of my memory when running the application. Creating entities, pages, and other things also takes a long time. What can we do to improve the modeler performance? Please leave a comment if you are experiencing the same problem.
↧
The file 'Example.png' could not be found
I'm having a weird error, which I can not pinpoint. I'm developing Client Profiles for an app, which includes a Client Object. This Client Object is related to a Logo Object (1-1 Association), which inherits from System.Image. The logo is shown whenever a ClientUser logs into the application. This works perfectly, but after a random period of time (ranging from days to weeks), the ClientUser login fails, due to an error that says the image cannot be found, therefore the page cannot be loaded and keeps 'loading' (Blocking popup).. When looking into the Postgres Database directly, both Objects and the 1-1 Association is present. Did any of you ever encountered something similar? The data is there, when removing the image data directly from the postgres database the error is resolved and the ClientUser can login / upload a new Logo. This however, can't be a solution when this goes to production. The error message stacktrace is as follows: com.mendix.systemwideinterfaces.MendixRuntimeException: FileDatastore: Image does not exist at com.mendix.core.objectmanagement.FileProcessor.getImageFileLength(SourceFile:144) at com.mendix.oV.b(SourceFile:353) at com.mendix.oV.a(SourceFile:237) at com.mendix.oV.b(SourceFile:230) at com.mendix.oV.a(SourceFile:63) at com.mendix.oV.processRequest(SourceFile:54) at com.mendix.externalinterface.connector.MxRuntimeConnector.processRequest(SourceFile:74) at com.mendix.core.impl.MxRuntimeImpl.processRequest(SourceFile:729) at com.mendix.m2ee.appcontainer.server.handler.RuntimeHandler.handle(RuntimeHandler.java:45) at org.eclipse.jetty.server.handler.HandlerList.handle(HandlerList.java:52) 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:640) 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:744) Thanks in advance for any helping comments!
↧
Changing an attribute name stops it working over an App Service connection.
I have an entity passed over an App Service connection. Some of the attributes, while present at the end of the App Service action, are blank when they arrive in the consuming app microflow. The really strange thing is that when I rename the attribute to something else and re-import the App Service, it works fine. I then rename it back to the name that I wanted and it delivers empty values again. So my question is this: are there any particular requirements for naming of entities and attributes to be exported over an App Service connection? Is there something else going on here that I am missing? Where should I look next?
↧
↧
Database failing to connect
Hi, I'm trying to create a Mendix project and run it with minikube. I was able to successfully run the example mendix starter here https://github.com/pommi/mendix-docker with docker but when I try to run and deploy it locally, "m2ee start" hangs and the application never starts. I checked app.log and this is what I'm seeing: 018-03-28 16:53:41.640 INFO - Logging: Logging to file: /root/data/log/app.log, max size: 10240KiB, max rotation: 10 2018-03-28 16:53:41.667 INFO - Core: Mendix Runtime 5.13.1 (build 3976). Copyright © 2003-2015 Mendix bv. All rights reserved. 2018-03-28 16:53:42.371 WARNING - ConnectionBus: Database connections: 0 active, 0 idle. 2018-03-28 16:53:42.371 ERROR - ConnectionBus: Opening JDBC connection to db:5432 failed with SQLState: 08001 Error code: 0 Message: The connection attempt failed. Retrying...(1/4) 2018-03-28 16:53:42.473 WARNING - ConnectionBus: Database connections: 0 active, 0 idle. 2018-03-28 16:53:42.473 ERROR - ConnectionBus: Opening JDBC connection to db:5432 failed with SQLState: 08001 Error code: 0 Message: The connection attempt failed. Retrying...(2/4) 2018-03-28 16:53:42.674 WARNING - ConnectionBus: Database connections: 0 active, 0 idle. 2018-03-28 16:53:42.674 ERROR - ConnectionBus: Opening JDBC connection to db:5432 failed with SQLState: 08001 Error code: 0 Message: The connection attempt failed. Retrying...(3/4) 2018-03-28 16:53:43.075 WARNING - ConnectionBus: Database connections: 0 active, 0 idle. 2018-03-28 16:53:43.075 ERROR - ConnectionBus: Opening JDBC connection to db:5432 failed with SQLState: 08001 Error code: 0 Message: The connection attempt failed., giving up...(4/4) My yaml's and Dockerfile are based off of this project https://github.com/mendix/azure-docker-mendix/tree/master/Docker-Azure
↧
Standard Excel export from grid -> possible to change filename of output document?
Is there a way to change the name of the output file from the standard Export to Excel button on data grids? Obviously there is the option to use the Excel Exporter module, but I would like to avoid using an extra module.
↧
Compilation of Java actions failed
Buildfile: C:\Users\mashi\Documents\Mendix\Chinarai-branch_ChinaRAI_developmentHeBiao\deployment\build_core.xml compile: [javac] Compiling 3 source files to C:\Users\mashi\Documents\Mendix\Chinarai-branch_ChinaRAI_developmentHeBiao\deployment\run\bin [javac] 注: C:\Users\mashi\Documents\Mendix\Chinarai-branch_ChinaRAI_developmentHeBiao\javasource\com\mendix\core\Core.java使用或覆盖了已过时的 API。 [javac] 注: 有关详细信息, 请使用 -Xlint:deprecation 重新编译。 [javac] 注: C:\Users\mashi\Documents\Mendix\Chinarai-branch_ChinaRAI_developmentHeBiao\javasource\com\mendix\core\Core.java使用了未经检查或不安全的操作。 [javac] 注: 有关详细信息, 请使用 -Xlint:unchecked 重新编译。 build: [bnd] # addAll 'deployment/run/bnd.bnd' with , [bnd] Warnings [bnd] Split package, multiple jars provide the same package:com/mendix/core [bnd] Use Import/Export Package directive -split-package:=(merge-first|merge-last|error|first) to get rid of this warning [bnd] Package found in [Jar:com.mendix.mxruntime, Jar:run] [bnd] Class path [Jar:biz.aQute.bnd.bndlib, Jar:org.scala-lang.scala-library, Jar:com.mendix.datastorage-api, Jar:com.mendix.json, Jar:com.mendix.logging, Jar:com.mendix.m2ee-api, Jar:com.mendix.mxruntime, Jar:com.mendix.integration, Jar:org.osgi.compendium, Jar:com.mendix.webui, Jar:javax.servlet, Jar:antisamy-1.5.3, Jar:apache-httpcomponents-httpclient, Jar:axiom-api-1.2.12, Jar:axis2-kernel-1.0, Jar:backport-util-concurrent-3.1, Jar:bcpg-jdk15on-150, Jar:bcpkix-jdk15on-150, Jar:bcprov-jdk15on-150, Jar:com.google.guava-14.0.1, Jar:com.hxtt.sql.acess_jdbc40, Jar:com.ibm.jt400, Jar:com.mendix.ojdbc6-11.2.0, Jar:com.mendix.postgresql.jdbc4-9.2.1002, Jar:com.mendix.sqljdbc4-4.0.2206, Jar:com.springsource.javax.activation-1.1.1, Jar:com.springsource.org.apache.batik.css-1.7.0, Jar:com.springsource.org.apache.commons.lang-2.5.0, Jar:com.springsource.org.apache.commons.logging-1.1.1, Jar:com.sun.mail.javax.mail-1.4.5, Jar:commons-codec-1.10, Jar:commons-codec-1.8, Jar:commons-email-1.3.1, Jar:commons-httpclient-3.1, Jar:commons-io-2.3, Jar:commons-lang-2.5, Jar:commons-lang-2.6, Jar:commons-logging-1.1, Jar:commons-math3-3.1.1, Jar:commons-pool-1.6, Jar:dom4j-1.6.1, Jar:esapi-2.1.0, Jar:fontbox-1.8.5, Jar:guava-22.0, Jar:guice-2.0, Jar:httpclient-4.3.5, Jar:ical4j-1.0.6, Jar:ical4j-connector-0.9.3, Jar:ical4j-vcard-0.9.5, Jar:ical4j-zoneinfo-outlook-1.0.2, Jar:javax.xml.stream-1.0.1, Jar:jcifs-1.3.18, Jar:jempbox-1.8.5, Jar:joda-time-1.6.2, Jar:joda-time-2.3, Jar:json-simple, Jar:mysql-connector-java-5.1.38-bin, Jar:nekohtml, Jar:not-yet-commons-ssl-0.3.11, Jar:opencsv-2.3, Jar:openid4java-0.9.8, Jar:openws-1.5.4, Jar:org.apache.commons.fileupload-1.2.1, Jar:org.apache.commons.io-2.3.0, Jar:org.apache.commons.lang3, Jar:org.apache.httpcomponents.httpclient_4.3.5, Jar:org.apache.servicemix.bundles.commons-codec-1.3.0, Jar:org.apache.servicemix.bundles.commons-collections-3.2.1_3, Jar:org.apache.servicemix.bundles.opensaml-2.6.0_3, Jar:org.apache.servicemix.bundles.saaj-impl-1.3.2_1, Jar:org.apache.servicemix.bundles.xalan-2.7.1, Jar:org.apache.servicemix.bundles.xerces-2.11.0, Jar:org.apache.servicemix.bundles.xmlbeans-2.5.0, Jar:org.apache.servicemix.specs.saaj-api-1.3-1.4.0, Jar:owasp-java-html-sanitizer-20170515.1, Jar:pdfbox-1.8.5, Jar:poi-3.10-FINAL-20140208, Jar:poi-3.8-20120326, Jar:poi-ooxml-3.10-FINAL-20140208, Jar:poi-ooxml-3.6-20091214, Jar:poi-ooxml-schemas-3.10-FINAL-20140208, Jar:poi-ooxml-schemas-3.6-20091214, Jar:replication, Jar:serializer-2.7.2, Jar:velocity-1.7, Jar:xalan-2.7.2, Jar:xercesImpl-2.11.0, Jar:xml-apis-ext, Jar:xml-resolver-1.2, Jar:xmlbeans-2.4.0, Jar:xmlsec-1.5.6, Jar:run] [bnd] 1 Errors [bnd] Classes found in the wrong directory: {docutments/proxies/Keyword.class=docutments.proxies.KeyWord} [bnd] C:\Users\mashi\Documents\Mendix\Chinarai-branch_ChinaRAI_developmentHeBiao\deployment\run\bnd.bnd: bnd failed [bnd] at aQute.bnd.ant.BndTask.executeBackwardCompatible(BndTask.java:231) [bnd] at aQute.bnd.ant.BndTask.execute(BndTask.java:115) [bnd] at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291) [bnd] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [bnd] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) [bnd] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) [bnd] at java.lang.reflect.Method.invoke(Method.java:497) [bnd] at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106) [bnd] at org.apache.tools.ant.Task.perform(Task.java:348) [bnd] at org.apache.tools.ant.Target.execute(Target.java:390) [bnd] at org.apache.tools.ant.Target.performTasks(Target.java:411) [bnd] at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1360) [bnd] at org.apache.tools.ant.helper.SingleCheckExecutor.executeTargets(SingleCheckExecutor.java:38) [bnd] at org.apache.tools.ant.Project.executeTargets(Project.java:1212) [bnd] at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:441) [bnd] at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291) [bnd] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [bnd] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) [bnd] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) [bnd] at java.lang.reflect.Method.invoke(Method.java:497) [bnd] at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106) [bnd] at org.apache.tools.ant.Task.perform(Task.java:348) [bnd] at org.apache.tools.ant.Target.execute(Target.java:390) [bnd] at org.apache.tools.ant.Target.performTasks(Target.java:411) [bnd] at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1360) [bnd] at org.apache.tools.ant.Project.executeTarget(Project.java:1329) [bnd] at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:41) [bnd] at org.apache.tools.ant.Project.executeTargets(Project.java:1212) [bnd] at org.apache.tools.ant.Main.runBuild(Main.java:801) [bnd] at org.apache.tools.ant.Main.startAnt(Main.java:218) [bnd] at org.apache.tools.ant.launch.Launcher.run(Launcher.java:280) [bnd] at org.apache.tools.ant.launch.Launcher.main(Launcher.java:109) BUILD FAILED C:\Users\mashi\Documents\Mendix\Chinarai-branch_ChinaRAI_developmentHeBiao\deployment\build_core.xml:46: The following error occurred while executing this line: C:\Users\mashi\Documents\Mendix\Chinarai-branch_ChinaRAI_developmentHeBiao\deployment\run\bndbuild.xml:9: Failed to build jar file: Total time: 27 seconds
↧
ProjectId in java
Is the projectId that can be obtained in java when using Core.getProjectId() also visible somewhere else? For example on the https://sprintr.home.mendix.com website? Or if we turn it around, is the "App ID" from the https://sprintr.home.mendix.com website (under general) available in java? I would like to match a unique project id.
↧
↧
Help regarding notification in Mendix
We are building an application which is operated by an Admin and some users. Admin and users have different dashboards using the same login. We need help to send notification from Admin dashboard to a user dashboard. Please help us giving directions to perform this activity.
↧
Suppor for HULFT
Is there any support for HULFT at https://hulftinc.com ?
↧
Mendix 7.13.1 Really looks great! Well Done
Mendix 7.13.1 Really is great! Well Done
↧