Questions Tagged With axon.ivyhttps://answers.axonivy.com/tags/axon.ivy/?type=rssquestions tagged <span class="tag">axon.ivy</span>enTue, 31 Mar 2020 09:54:12 -0400Extended Release Cycle Concepthttps://answers.axonivy.com/questions/4478/extended-release-cycle-concept<p>Dear customers, AXON Ivy supporters and developers</p> <p>It is very important to us to continuously improve and professionalize the development of the Axon.ivy Digital Business Platform. Some time ago, we introduced a new release cycle concept, which provides two different versions of the Axon.ivy Digital Business Platform in parallel:</p> <ul> <li>LTS (Long Term Support): A major version that is stable over a longer period of time (average 1.5 - 2 years), which does not present any new features and focuses on bug fixing</li> <li>LE (Leading Edge): A further development of the LTS version, which already provides the latest features for early adopters.</li> </ul> <p>This concept has proven itself and will therefore continue to be used. In addition, our customers have shown that support for the two latest LTS versions and support for the latest LE version is ideal for both ongoing and new projects.</p> <p>During the versioning and numbering of the versions, however, there were always misunderstandings, which we have now resolved with the extended concept. Some customers were not aware that a change from an LTS version (for example 7.0.x) to an LE version (for example 7.1) means a major version change with migration effort/pain. Therefore the LE version was often used unnecessarily. This resulted in the fact that you either have to go along with every LE upgrade or run the risk of having an unsupported version in use.</p> <p>Therefore the new versioning plans to release all LTS versions as <strong>even</strong> version numbers and all LE versions as <strong>odd</strong> version numbers. Thus it is clearly defined that a change from an LTS version to an LE version is a major upgrade with migration effort without backwards compatibility.</p> <p>The next LE version will be numbered 9.1, while the next LTS major release will be numbered 10.0.</p> <p>This information is available for everyone on our developer page: <a href="https://developer.axonivy.com/release-cycle">https://developer.axonivy.com/release-cycle</a></p> <p>Please do not hesitate to contact us if you have any questions.</p> <p>Best regards,</p> <p>Andreas Balsiger</p> <p>Head of Product Management</p>andreas_balsigerTue, 31 Mar 2020 09:54:12 -0400https://answers.axonivy.com/questions/4478/extended-release-cycle-conceptaxon.ivyreleaseconceptversioningSome problems when build with maven-compiler-plugin version 3.8.0https://answers.axonivy.com/questions/4414/some-problems-when-build-with-maven-compiler-plugin-version-3-8-0<p>Hello Ivy team In my project I'm using Designer 8.0.2, Engine 8.0.2, JDK 11, project-build-plugin version 8.0.0, maven 3.6.3 and maven-compiler-plugin version 3.8.0.</p> <p>When I build project with maven I have some problems as maven cannot find class belong to reference libraries <img alt="alt text" src="https://answers.axonivy.com/upfiles/1_XmB4vbD.JPG"></p> <p><img alt="alt text" src="https://answers.axonivy.com/upfiles/2_0Ibod4O.JPG"></p> <p>Or some libraries of Axon.ivy Libraries as <img alt="alt text" src="https://answers.axonivy.com/upfiles/3_jUwKtPm.JPG"> <img alt="alt text" src="https://answers.axonivy.com/upfiles/4_u9hVbbi.JPG"></p> <p>Plugins in my pom.xml</p> <pre><code>&lt;pluginManagement&gt; &lt;plugins&gt; &lt;plugin&gt; &lt;artifactId&gt;maven-clean-plugin&lt;/artifactId&gt; &lt;version&gt;3.1.0&lt;/version&gt; &lt;configuration&gt; &lt;filesets&gt; &lt;fileset&gt; &lt;directory&gt;src_test&lt;/directory&gt; &lt;includes&gt; &lt;include&gt;**/beans/*_.java&lt;/include&gt; &lt;/includes&gt; &lt;/fileset&gt; &lt;/filesets&gt; &lt;/configuration&gt; &lt;/plugin&gt; &lt;plugin&gt; &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt; &lt;artifactId&gt;maven-resources-plugin&lt;/artifactId&gt; &lt;version&gt;3.1.0&lt;/version&gt; &lt;executions&gt; &lt;execution&gt; &lt;id&gt;process-resources&lt;/id&gt; &lt;goals&gt; &lt;goal&gt;resources&lt;/goal&gt; &lt;goal&gt;testResources&lt;/goal&gt; &lt;/goals&gt; &lt;phase&gt;process-test-resources&lt;/phase&gt; &lt;/execution&gt; &lt;/executions&gt; &lt;/plugin&gt; &lt;plugin&gt; &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt; &lt;artifactId&gt;maven-dependency-plugin&lt;/artifactId&gt; &lt;version&gt;3.1.0&lt;/version&gt; &lt;executions&gt; &lt;execution&gt; &lt;id&gt;iar-as-property&lt;/id&gt; &lt;goals&gt; &lt;goal&gt;properties&lt;/goal&gt; &lt;/goals&gt; &lt;/execution&gt; &lt;/executions&gt; &lt;/plugin&gt; &lt;plugin&gt; &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt; &lt;artifactId&gt;maven-antrun-plugin&lt;/artifactId&gt; &lt;configuration&gt; &lt;release&gt;11&lt;/release&gt; &lt;/configuration&gt; &lt;/plugin&gt; &lt;plugin&gt; &lt;groupId&gt;com.axonivy.ivy.ci&lt;/groupId&gt; &lt;artifactId&gt;project-build-plugin&lt;/artifactId&gt; &lt;version&gt;${build.plugin.version}&lt;/version&gt; &lt;extensions&gt;true&lt;/extensions&gt; &lt;executions&gt; &lt;execution&gt; &lt;phase&gt;initialize&lt;/phase&gt; &lt;goals&gt; &lt;goal&gt;share-engine-core-classpath&lt;/goal&gt; &lt;/goals&gt; &lt;/execution&gt; &lt;execution&gt; &lt;id&gt;default-ivy-test-properties&lt;/id&gt; &lt;configuration&gt; &lt;skipTest&gt;true&lt;/skipTest&gt; &lt;/configuration&gt; &lt;/execution&gt; &lt;/executions&gt; &lt;/plugin&gt; &lt;plugin&gt; &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt; &lt;artifactId&gt;maven-compiler-plugin&lt;/artifactId&gt; &lt;version&gt;3.8.0&lt;/version&gt; &lt;configuration&gt; &lt;release&gt;11&lt;/release&gt; &lt;/configuration&gt; &lt;dependencies&gt; &lt;dependency&gt; &lt;groupId&gt;org.ow2.asm&lt;/groupId&gt; &lt;artifactId&gt;asm&lt;/artifactId&gt; &lt;version&gt;6.2&lt;/version&gt; &lt;/dependency&gt; &lt;/dependencies&gt; &lt;executions&gt; &lt;execution&gt; &lt;id&gt;process-meta-model&lt;/id&gt; &lt;goals&gt; &lt;goal&gt;compile&lt;/goal&gt; &lt;/goals&gt; &lt;phase&gt;generate-sources&lt;/phase&gt; &lt;configuration&gt; &lt;classpathElements&gt;${maven.processor.classpath}&lt;/classpathElements&gt; &lt;annotationProcessorPaths&gt; &lt;path&gt; &lt;groupId&gt;org.hibernate&lt;/groupId&gt; &lt;artifactId&gt;hibernate-jpamodelgen&lt;/artifactId&gt; &lt;version&gt;5.4.12.Final&lt;/version&gt; &lt;/path&gt; &lt;/annotationProcessorPaths&gt; &lt;proc&gt;only&lt;/proc&gt; &lt;includes&gt; &lt;include&gt;**/beans/*&lt;/include&gt; &lt;/includes&gt; &lt;generatedSourcesDirectory&gt;${project.build.directory}/.apt_generated&lt;/generatedSourcesDirectory&gt; &lt;/configuration&gt; &lt;/execution&gt; &lt;execution&gt; &lt;id&gt;process-test-meta-model&lt;/id&gt; &lt;goals&gt; &lt;goal&gt;testCompile&lt;/goal&gt; &lt;/goals&gt; &lt;phase&gt;generate-test-sources&lt;/phase&gt; &lt;configuration&gt; &lt;classpathElements&gt;${project.build.outputDirectory},${maven.processor.classpath},${org.jmockit:jmockit:jar},${junit:junit:jar},${org.hamcrest:hamcrest-core:jar},${log4j:log4j:jar}&lt;/classpathElements&gt; &lt;annotationProcessorPaths&gt; &lt;path&gt; &lt;groupId&gt;org.hibernate&lt;/groupId&gt; &lt;artifactId&gt;hibernate-jpamodelgen&lt;/artifactId&gt; &lt;version&gt;5.4.12.Final&lt;/version&gt; &lt;/path&gt; &lt;/annotationProcessorPaths&gt; &lt;proc&gt;only&lt;/proc&gt; &lt;includes&gt; &lt;include&gt;**/beans/*&lt;/include&gt; &lt;/includes&gt; &lt;generatedTestSourcesDirectory&gt;${project.build.testSourceDirectory}&lt;/generatedTestSourcesDirectory&gt; &lt;/configuration&gt; &lt;/execution&gt; &lt;/executions&gt; &lt;/plugin&gt; &lt;plugin&gt; &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt; &lt;artifactId&gt;maven-release-plugin&lt;/artifactId&gt; &lt;version&gt;3.0.0-M1&lt;/version&gt; &lt;configuration&gt; &lt;checkModificationExcludes&gt; &lt;checkModificationExclude&gt;${project}/pom.xml&lt;/checkModificationExclude&gt; &lt;/checkModificationExcludes&gt; &lt;commitByProject&gt;true&lt;/commitByProject&gt; &lt;autoversionsubmodules&gt;true&lt;/autoversionsubmodules&gt; &lt;/configuration&gt; &lt;/plugin&gt; &lt;/plugins&gt; &lt;/pluginManagement&gt; </code></pre> <p>Please help me to resolve it. Thanks</p>anhleTue, 25 Feb 2020 05:00:38 -0500https://answers.axonivy.com/questions/4414/some-problems-when-build-with-maven-compiler-plugin-version-3-8-0mavenaxon.ivylibraryHow to get osgi.bundle package of ivy 8?https://answers.axonivy.com/questions/4360/how-to-get-osgi-bundle-package-of-ivy-8<p>In ivy 7, I use the repository as below to get osgi.bundle package.</p> <p>&lt;repository&gt; &lt;id&gt;ivy.nightly.release&lt;/id&gt; &lt;layout&gt;p2&lt;/layout&gt; &lt;url&gt;<a href="https://download.axonivy.rocks/p2/leading/">https://download.axonivy.rocks/p2/leading/</a>&lt;/url&gt; &lt;/repository&gt;</p> <p>It work well with Ivy version 7. But with Ivy version 8.0.2, it cannot work.</p> <p>So, could you show me the repository need to use for version 8.0.2?</p> <p>I try to change: &lt;url&gt;<a href="https://download.axonivy.rocks/p2/leading/">https://download.axonivy.rocks/p2/leading/</a>&lt;/url&gt; =&gt; &lt;url&gt;<a href="https://download.axonivy.rocks/p2/lts-8.0/">https://download.axonivy.rocks/p2/lts-8.0/</a>&lt;/url&gt; but it also cannot work.</p> <p>Thank</p>pttungTue, 04 Feb 2020 06:42:16 -0500https://answers.axonivy.com/questions/4360/how-to-get-osgi-bundle-package-of-ivy-8axon.ivyNPE by Dropins load Problemhttps://answers.axonivy.com/questions/4316/npe-by-dropins-load-problem<p>Referencing to the ticket in Q&amp;A #4316:</p> <p>Is there a workaround for Version 7.0.14 ? We want to use dropins feature in Astecs Project. We use no docker. By server start we get following log in the engine console:</p> <p>Install patches for classes: ch.ivyteam.ivy.richdialog.exec.internal.request.HttpRichDialogProcessRequest Time to load bundles: 5 [p2] Mon Jan 13 11:37:42 CET 2020 - [Start Level: Equinox Container: 404b52ba-f035-001a-1e22-ee7dd7a6e834] [reconciler] Reading timestamps from file: C:\Local\AxonIvyEngine7.0.12_SSC\system\configuration\org.eclipse.osgi\117\data\cache.timestamps [p2] Mon Jan 13 11:37:42 CET 2020 - [Start Level: Equinox Container: 404b52ba-f035-001a-1e22-ee7dd7a6e834] [reconciler] C:\Local\AxonIvyEngine7.0.12_SSC\system\links=0</p> <p><strong>[p2] Mon Jan 13 11:37:42 CET 2020 - [Start Level: Equinox Container: 404b52ba-f035-001a-1e22-ee7dd7a6e834] [reconciler] C:\Local\AxonIvyEngine7.0.12_SSC\system\dropins=0</strong></p> <p>[p2] Mon Jan 13 11:37:42 CET 2020 - [Start Level: Equinox Container: 404b52ba-f035-001a-1e22-ee7dd7a6e834] [reconciler] C:\Local\AxonIvyEngine7.0.12_SSC\system\configuration\org.eclipse.update\platform.xml=1558430362000 [p2] Mon Jan 13 11:37:42 CET 2020 - [Start Level: Equinox Container: 404b52ba-f035-001a-1e22-ee7dd7a6e834] [reconciler] C:\Local\AxonIvyEngine7.0.12_SSC\system\plugins=1561628959416 [p2] Mon Jan 13 11:37:42 CET 2020 - [Start Level: Equinox Container: 404b52ba-f035-001a-1e22-ee7dd7a6e834] [reconciler] c:\Local\AxonIvyEngine7.0.12_SSC\dropins=1578906154328 [p2] Mon Jan 13 11:37:42 CET 2020 - [Start Level: Equinox Container: 404b52ba-f035-001a-1e22-ee7dd7a6e834] [reconciler] C:\Local\AxonIvyEngine7.0.12_SSC\system\features=1561628916282 [p2] Mon Jan 13 11:37:42 CET 2020 - [Start Level: Equinox Container: 404b52ba-f035-001a-1e22-ee7dd7a6e834] [reconciler] Timestamp has been updated for file: C:\Local\AxonIvyEngine7.0.12_SSC\system\dropins, expected: 0, actual: 1578911822256 [p2] Mon Jan 13 11:37:42 CET 2020 - [Start Level: Equinox Container: 404b52ba-f035-001a-1e22-ee7dd7a6e834] [reconciler] Performing reconciliation.</p> <p><strong>Error Processing: org.eclipse.equinox.internal.p2.reconciler.dropins.DropinsRepositoryListener@6cd29ccd: java.lang.NullPointerException</strong></p>josef_koupalMon, 13 Jan 2020 05:41:58 -0500https://answers.axonivy.com/questions/4316/npe-by-dropins-load-problemaxon.ivyAXON Ivy Mobile App Design Issueshttps://answers.axonivy.com/questions/4197/axon-ivy-mobile-app-design-issues<p>Hello,</p> <p>I tried to use the AXON Ivy mobile app for iPhone to run our project. The project was open fine but the main issue that most of the buttons and links which exist on the page did not clickable anymore. As a result, I cannot submit form, move among pages, open the new modal, etc.</p> <p>I tried to open our project using chrome in my iPhone and it worked well, but when I turned to the AXON Ive mobile app nothing worked (nothing clickable).</p> <p>Note: I am using Ive 7.4 version</p>HazemMon, 25 Nov 2019 05:48:02 -0500https://answers.axonivy.com/questions/4197/axon-ivy-mobile-app-design-issuesmobileaxon.ivyiosDeleting the whole axon.ivy project treehttps://answers.axonivy.com/questions/3109/deleting-the-whole-axon-ivy-project-tree<p>Hi, guys! I've a big issue with axon.ivy designer 7.0.3. I started my project, one of the web services froze, didn't execute, just loading without a result... Trying to run my project again, can't be done, after that restarting the designer and receiving this surprise: <img alt="alt text" src="https://answers.axonivy.com/upfiles/crash_pic_gJSb88m.png"></p> <p>Wondering, what happened with my project tree and why?? :(</p>kr1994Wed, 28 Feb 2018 06:28:47 -0500https://answers.axonivy.com/questions/3109/deleting-the-whole-axon-ivy-project-treeaxon.ivyUser activity monitoringhttps://answers.axonivy.com/questions/3020/user-activity-monitoring<p>Hi everyone, is there a way to monitor user login and logout activities in Axon.ivy?<br> Thank you.</p>Bao TranTue, 12 Dec 2017 03:30:21 -0500https://answers.axonivy.com/questions/3020/user-activity-monitoringaxon.ivymonitoringivyMigration Ivy Server to another Machinehttps://answers.axonivy.com/questions/2994/migration-ivy-server-to-another-machine<p>Hello, Ivy Team,</p> <p>We are planning to move one existing installation of Axon.Ivy Server to another machine. What are the pitfalls in such scenarios? </p> <ul> <li>We will copy-paste the whole installation folder to the new server (the file system paths will be the same)</li> <li>We will attach the AxonIvySystemDatabse to the new server (p.s. we will also migrating to different db server)</li> <li>We need to change the license file</li> <li>We need to update the configuration to point to the new db server</li> <li>Probably we need to update the server name in the Admin UI </li> </ul> <p>All should be straightforward, right ? Are we missing something ?</p> <p>Best Regards, Yordan</p>Stelt0Tue, 21 Nov 2017 08:29:28 -0500https://answers.axonivy.com/questions/2994/migration-ivy-server-to-another-machineengineaxon.ivyconfigurationmigrationRTL languages capablitieshttps://answers.axonivy.com/questions/2804/rtl-languages-capablities<p>Hello, </p> <p>I am looking for more information about the capabilities of development applications which support RTL languages?</p> <p>does AXON Ivy support the RTL languages? if yes what are the main challenges in development? and things that needs to be taken into consideration?</p> <p>Thanks, Jamil</p>JamilThu, 10 Aug 2017 06:40:01 -0400https://answers.axonivy.com/questions/2804/rtl-languages-capablitiesaxon.ivyhow to get root folder of project where user start ?https://answers.axonivy.com/questions/2538/how-to-get-root-folder-of-project-where-user-start<p>hi all</p> <p>i have a project A with a startlink, this project depend on project B (B contain some commons ivy component). Now user start page by that startlink, it will open a page which use come commons component from B)</p> <p>Now i need to get root folder of project A, i refer this <a href="http://answers.axonivy.com/questions/2143/how-to-get-webcontent-folder-in-ivy-project">post</a> but it just work fine if it run in project A, when i call it on commons component (project B) then it return the folder of B.</p> <p>My question is: is there any api to get root folder (maybe webcontent) of project where user start the startlink (like project A in above example)?</p> <p>Thanks</p>trungdvMon, 27 Mar 2017 11:33:32 -0400https://answers.axonivy.com/questions/2538/how-to-get-root-folder-of-project-where-user-startaxon.ivyGenerate AxonIvySystemDatabase using powershell scripthttps://answers.axonivy.com/questions/2524/generate-axonivysystemdatabase-using-powershell-script<p>Hi guys,</p> <p>I'm trying to create some powershell scripts, which will automate setup process of a server running ivy engine.</p> <p>Though, I'm having one question whether we can automate the generation of AxonIvySystemDatabase or not as it's from the Engine Admin panel, with license, of course! Will this violate any copyright/licensing terms?</p> <p>Thank you very much!</p>ToanLCFri, 24 Mar 2017 05:15:15 -0400https://answers.axonivy.com/questions/2524/generate-axonivysystemdatabase-using-powershell-scriptaxon.ivyCustom error messagehttps://answers.axonivy.com/questions/2485/custom-error-message<p>I am trying to make a custom message for the required input fields. The steps that I have done so far: -</p> <ul> <li> <p>created a .properties file with this content inside it: <code>javax.faces.component.UIInput.REQUIRED = {0}: Validation Error: some custom message here.</code></p> </li> <li> <p>modified the <code>faces-config.xml</code> I have added there a tag message-bundle with content conf.MyMessage</p> </li> <li>And here is my project structure</li> <li><img alt="alt text" src="http://answers.axonivy.com/upfiles/Usssssssssntitled.png"></li> </ul> <p>I dont really know what is wrong and why my custom error message is not working, if you have any suggestions would be nice :)</p>tano9321Tue, 07 Mar 2017 14:14:41 -0500https://answers.axonivy.com/questions/2485/custom-error-messageaxon.ivyPrimeFaces upgrade versionhttps://answers.axonivy.com/questions/2468/primefaces-upgrade-version<p>Hello everyone :) I want to use the textEditor element which is provided by PrimeFaces, but it us supported after version 6.0.6 of PrimeFaces. My current version in Axon Ivy is 5.3, how can I upgrade PrimeFaces version in Axon Ivy or is there other way to achieve the functionality of te textEditor element?</p>tano9321Thu, 23 Feb 2017 10:01:43 -0500https://answers.axonivy.com/questions/2468/primefaces-upgrade-versionaxon.ivySaving state in Axon Ivyhttps://answers.axonivy.com/questions/2405/saving-state-in-axon-ivy<p>Hello everyone :)</p> <p>Lets say I have a task where the user can fill some input fields. The thing that I want to achieve is that, lets say the user enters some data to the input fields, and closes the browser without finishing the task. When the user opens again the page the input that he or she add must be still there. Is that even possible to do ?</p> <p>Thanks :)</p>tano9321Mon, 30 Jan 2017 15:19:24 -0500https://answers.axonivy.com/questions/2405/saving-state-in-axon-ivyaxon.ivyConfiguring for Invoke Xpert.Ivy Project Deployment in jenkinshttps://answers.axonivy.com/questions/2399/configuring-for-invoke-xpert-ivy-project-deployment-in-jenkins<p>Hello everyone, I try to configure for Invoke Xpert.Ivy Project Deployment session like the image <img alt="alt text" src="http://answers.axonivy.com/upfiles/2_6UtzRpt.png"></p> <p>And the project file to deploy after build in the path <img alt="alt text" src="http://answers.axonivy.com/upfiles/3_EJKmiOO.png"></p> <p>But there are the error appear when deploy project: &lt;?xml version="1.0" encoding="UTF-8"?&gt;falseDeployment Errorjava.lang.reflect.InvocationTargetException . What is the right configure to point to the right project which will be used to deploy into Engine? And How I can get the iar file that don't depend on project name?</p>titbkTue, 24 Jan 2017 02:17:07 -0500https://answers.axonivy.com/questions/2399/configuring-for-invoke-xpert-ivy-project-deployment-in-jenkinsaxon.ivyAxon Ivy Multi Portalhttps://answers.axonivy.com/questions/2375/axon-ivy-multi-portal<p>Hello everyone :) I am trying to implement multiple portals as describen here: <a href="http://developer.axonivy.com/doc/latest/PortalKitHtml/axonivyportal.settings.html#axonivyportal.settings.adminsettings">http://developer.axonivy.com/doc/latest/PortalKitHtml/axonivyportal.settings.html#axonivyportal.settings.adminsettings</a></p> <p>I am at point where I have alreadt added server(connector) but now its time for the application but I am not sure what is the input field <strong>Portal link</strong> used for which is required one. I could not find anything about it, could someone please describe it in more detail so that I know how to fill it.</p> <p>Thank you</p>tano9321Fri, 13 Jan 2017 09:51:10 -0500https://answers.axonivy.com/questions/2375/axon-ivy-multi-portalaxon.ivyUpgrade Primefaces version in IVY 5.1.xhttps://answers.axonivy.com/questions/2263/upgrade-primefaces-version-in-ivy-5-1-x<p>Hi There</p> <p>We are still using IVY Version 5.1.10. This Ivy version has included Primefaces 5.0.xx (as i guess so far). How can we upgrade yout Server/Designer 5.1.x to a newer Primefaces version e.g. 5.3 ot higher. We 'd like to use some new features like Primesfaces FontAwesome etc.</p> <p>Is it possible to upgrade and which steps are neccessary ?</p> <p>Thanks for help.</p> <p>PS: Upgrade to IVY 6.x is not an option so far ...</p>WanderhirtThu, 08 Dec 2016 14:59:44 -0500https://answers.axonivy.com/questions/2263/upgrade-primefaces-version-in-ivy-5-1-xaxon.ivyprimefacesDo the AxonIvy tools support the new framework PrimeNG?https://answers.axonivy.com/questions/2218/do-the-axonivy-tools-support-the-new-framework-primeng<p>Hello IvyTeam,</p> <p>As I know, PrimeNG is a framework for Angular 2. I want to ask IvyTeam a question: Do AxonIvy tools ready for using PrimeNG or do you have any plan to support PrimeNG or Angular2?</p> <p><a href="http://www.primefaces.org/primeng/#/">http://www.primefaces.org/primeng/#/</a> <a href="http://blog.primefaces.org/">http://blog.primefaces.org/</a></p> <p>Thanks &amp; Regards,</p>Hap EmFri, 25 Nov 2016 12:24:40 -0500https://answers.axonivy.com/questions/2218/do-the-axonivy-tools-support-the-new-framework-primengaxon.ivyCan we send Encrypted Emails in ivy?https://answers.axonivy.com/questions/2166/can-we-send-encrypted-emails-in-ivy<p>Hi all The question is the same with the title. i would like to encrypt email before sending, i've tried with jana mail but just want to ask whether we have any support from ivy mail or not?</p> <p>Reference: <a href="http://stackoverflow.com/questions/300334/how-to-send-encrypted-emails-programmatically-from-an-automated-process">How to Send Encrypted Emails Programmatically (from an automated process)</a></p> <p>Thanks</p>trungdvTue, 08 Nov 2016 03:48:42 -0500https://answers.axonivy.com/questions/2166/can-we-send-encrypted-emails-in-ivyaxon.ivyemailWhat does "@Ref-x" mean in BusinessDataRepository (persistence) ?https://answers.axonivy.com/questions/2155/what-does-ref-x-mean-in-businessdatarepository-persistence<p>Hi ivyteam</p> <p>Here i have an example about record on Ivy database (it's JSON) <img alt="alt text" src="http://answers.axonivy.com/upfiles/Untitled_C81Puuf.png"></p> <p>the <code>@id</code> is generated id of persistence but what is the meaning behind of its value? ex: <code>$Ref-0</code>, <code>$Ref-1</code>,... Thanks</p>trungdvWed, 02 Nov 2016 08:53:59 -0400https://answers.axonivy.com/questions/2155/what-does-ref-x-mean-in-businessdatarepository-persistenceaxon.ivypersistenceHow to get result after CRUD on Database element?https://answers.axonivy.com/questions/2150/how-to-get-result-after-crud-on-database-element<p>Hi all In my situation, i use a Database Element to write data like below picture. And then now i want to know whether my insert query is sucess or not in Code tab. Or in general way, i need to know the status of CRUD in that tab. <img alt="alt text" src="http://answers.axonivy.com/upfiles/db.png"></p> <p>Does anyone know? Thanks</p>trungdvFri, 28 Oct 2016 11:01:16 -0400https://answers.axonivy.com/questions/2150/how-to-get-result-after-crud-on-database-elementaxon.ivyHow to get webcontent folder in ivy projecthttps://answers.axonivy.com/questions/2143/how-to-get-webcontent-folder-in-ivy-project<p>Hi all</p> <p>Sometime i want to lookup some resources in webcontent folder of current ivy model. then i com up with this code snippet. </p> <pre><code>public static String getFolderInWebContent(String folderName) throws Exception { String rootFolder = getProjectRootFolder() + "/webContent/"; if (folderName != null &amp;&amp; !folderName.isEmpty()) { if (!folderName.endsWith("/") &amp;&amp; !folderName.endsWith("\\")) { folderName = folderName + "/"; } File f = new File(rootFolder + folderName); if (f.isDirectory()) { return f.getAbsolutePath(); } } return rootFolder; } public static String getProjectRootFolder() throws Exception { return SecurityManagerFactory.getSecurityManager().executeAsSystem( new Callable&lt;String&gt;() { @Override public String call() throws Exception { return Ivy.request().getProcessModel() .getReleasedProcessModelVersion() .getProjectDirectory(); } }); } </code></pre> <p>I hope it's helpful for someone who need it or if you have a better solution, just drop here. i also want to extend my knowledge about ivy.</p> <p>Thanks</p>trungdvThu, 27 Oct 2016 10:38:45 -0400https://answers.axonivy.com/questions/2143/how-to-get-webcontent-folder-in-ivy-projectaxon.ivyDoes AXon ivy support Login Register forms (register,forgot password,login) ?https://answers.axonivy.com/questions/2139/does-axon-ivy-support-login-register-forms-register-forgot-password-login<p>hello,,, </p> <p>i would like to know how Axon ivy do the encryption , Authentication for login form and register ? is there Already built in component or let us say is best practice or guide to do this in right short way ? </p> <p>Thank you,,</p>AsilAbuHasanWed, 26 Oct 2016 09:34:54 -0400https://answers.axonivy.com/questions/2139/does-axon-ivy-support-login-register-forms-register-forgot-password-loginaxon.ivyauthenticationCan i redirect to another startlink by ivy API?https://answers.axonivy.com/questions/2124/can-i-redirect-to-another-startlink-by-ivy-api<p>Hi all I have a startlink on a test page, when user trigger that link, i want to redirect to another startlink in other project (because in that project we have to hide all startlink). I saw we can use </p> <pre><code>FacesContext.getCurrentInstance().getExternalContext().redirect("startlink url"); </code></pre> <p>but in case i don't open any HtmlDialog, FacesContext will not exist. Is there any other ivy API could help me? for the moment, i need to open new HTML dialog then when i click to button, it will redirect to other page by FacesContext.</p> <p>Thanks</p>trungdvFri, 21 Oct 2016 04:08:27 -0400https://answers.axonivy.com/questions/2124/can-i-redirect-to-another-startlink-by-ivy-apiaxon.ivyWhat is the meaning behind of "ivy" in axon ivy ?https://answers.axonivy.com/questions/2097/what-is-the-meaning-behind-of-ivy-in-axon-ivy<p>Hi all i've worked with ivy about 4 years and nĘ” i want to know the meaning behind of that word, can someone explains to me? is there any special meaning or reason for that? Thanks (sorry for this stupid question) :D</p>trungdvTue, 11 Oct 2016 10:26:24 -0400https://answers.axonivy.com/questions/2097/what-is-the-meaning-behind-of-ivy-in-axon-ivyaxon.ivyError reading 'isAdmin' on type ch.ivyteam.wf.admin.AdminBeanhttps://answers.axonivy.com/questions/2064/error-reading-isadmin-on-type-ch-ivyteam-wf-admin-adminbean<p>We synchronize our user with the Active Directory. Only by one user comes always the message "isAdmin" and he does not can login. At what this could be?</p> <p>We use Axon.ivy 5.1.1</p>RemLeuThu, 29 Sep 2016 17:01:23 -0400https://answers.axonivy.com/questions/2064/error-reading-isadmin-on-type-ch-ivyteam-wf-admin-adminbeanaxon.ivyHow to evaluate cms with parameter on xhtmlhttps://answers.axonivy.com/questions/1964/how-to-evaluate-cms-with-parameter-on-xhtml<p>Hi all</p> <p>I'm using jsf in ivy and normally i use directly API from ivy to get cms in xhtml file, ex:</p> <pre><code> &lt;p:outputLabel value="#{ivy.cms.co('/ch/axonivy/Label/EntityStep/Contact/email')}"/&gt; </code></pre> <p>now in my cms, it has placeholder like <strong>Input email ex {0}</strong> {0} will be replaced by param and i can do it easily on ivy script/java (using API from ivy) but i can't use that api on xhtml page</p> <pre><code> &lt;p:outputLabel value="#{ivy.cms.co('/ch/axonivy/Label/EntityStep/Contact/email', 'someone@google.com')}"/&gt; </code></pre> <p>Does anyone know?</p>trungdvMon, 15 Aug 2016 09:50:51 -0400https://answers.axonivy.com/questions/1964/how-to-evaluate-cms-with-parameter-on-xhtmlaxon.ivycmsDoes Ivy Task support to create reminder task?https://answers.axonivy.com/questions/1939/does-ivy-task-support-to-create-reminder-task<p>Hi all</p> <p>I have a requirement like: When user start a process then upload some document, the Document Cheking task will be create for the Superior role and it can be see in tasklist (use API from ivy to load task).</p> <p>If after x Day, that task is not started by super role (may be he is very busy or he's in long holiday), so system will automatically create another task for HR to remind Superior role that he should perform that task (HR will remind superior by fone for example) and both tasks (Document Checking and Reminder) still can be opened. it would mean we can't use Expire time or Delay time in this case because just one task will be available at a time</p> <p>When Document Checking is finished, the reminder will be destroy, i intend to use boundary signal event to do.</p> <p>So does ivy task support this case or is there any api from ivy that we can use?</p> <p>the process look like this:</p> <p><img alt="alt text" src="http://answers.axonivy.com/upfiles/Untitled_6Ix0VUN.png"></p> <p>Thanks in advance</p>trungdvThu, 04 Aug 2016 10:45:19 -0400https://answers.axonivy.com/questions/1939/does-ivy-task-support-to-create-reminder-taskaxon.ivyHow can we use global variable in Automatic Process Element?https://answers.axonivy.com/questions/1938/how-can-we-use-global-variable-in-automatic-process-element<p>Hi all</p> <p>Now i have a automatic process in our project then the customer want to configure the amount of time that process can start. i intend to use global variable but i don't know how to put it on that element. </p> <p>Anyone know, please help</p> <p>Thanks a lot <img alt="alt text" src="http://answers.axonivy.com/upfiles/Untitled.png"></p>trungdvThu, 04 Aug 2016 10:20:35 -0400https://answers.axonivy.com/questions/1938/how-can-we-use-global-variable-in-automatic-process-elementaxon.ivyIs there any API to throw exception programmatically in ivyhttps://answers.axonivy.com/questions/1928/is-there-any-api-to-throw-exception-programmatically-in-ivy<p>Hi all</p> <p>Some months ago i heard about the new exception handling mechanism which has been introduces by ivy team. Somehow ivy now can care about exception in BPM, we just need to use some special elements to throw and catch error code. And now i'm trying to use it in our project. Well, now may question is: beside of those special elements, is there any ivy API to throw exception with defined error code in java? Thanks in advance</p>trungdvWed, 03 Aug 2016 05:07:24 -0400https://answers.axonivy.com/questions/1928/is-there-any-api-to-throw-exception-programmatically-in-ivyaxon.ivy