kie

Deploy KIE-CI on Wildfly fails

半世苍凉 提交于 2021-02-19 07:11:27
问题 I am trying to deploy Drools with KIE-CI (for dynamic Maven-packaged rules) on Wildfly 8.0.0.Final. The POM of my minimalistic test project is: <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>de.testing</groupId> <artifactId>testprojekt</artifactId>

Deploy KIE-CI on Wildfly fails

我的梦境 提交于 2021-02-19 07:10:33
问题 I am trying to deploy Drools with KIE-CI (for dynamic Maven-packaged rules) on Wildfly 8.0.0.Final. The POM of my minimalistic test project is: <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>de.testing</groupId> <artifactId>testprojekt</artifactId>

Deploy KIE-CI on Wildfly fails

纵饮孤独 提交于 2021-02-19 07:10:28
问题 I am trying to deploy Drools with KIE-CI (for dynamic Maven-packaged rules) on Wildfly 8.0.0.Final. The POM of my minimalistic test project is: <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>de.testing</groupId> <artifactId>testprojekt</artifactId>

Deploy KIE-CI on Wildfly fails

不问归期 提交于 2021-02-19 07:10:09
问题 I am trying to deploy Drools with KIE-CI (for dynamic Maven-packaged rules) on Wildfly 8.0.0.Final. The POM of my minimalistic test project is: <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>de.testing</groupId> <artifactId>testprojekt</artifactId>

Deploy KIE-CI on Wildfly fails

三世轮回 提交于 2021-02-19 07:09:05
问题 I am trying to deploy Drools with KIE-CI (for dynamic Maven-packaged rules) on Wildfly 8.0.0.Final. The POM of my minimalistic test project is: <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>de.testing</groupId> <artifactId>testprojekt</artifactId>

How to save Drools KieSessions?

天涯浪子 提交于 2021-02-11 18:25:36
问题 I have more than 1000 rules to do inference. As the drools will process these rules in RETE algorithm before do inference, I found it cost so much time to do this and I know it is necessary. But I want it could be faster.So is these any way can store the KieSession to DataBase so that I could load it next time if I want to use it? I read the Drools Documentation Chapter 4.2.4.9 for Drools 6.3 but I still feel puzzled. Thanks for your help ! 来源: https://stackoverflow.com/questions/37180857/how

Deploy a KJAR to KIE execution server programmatically via REST API

﹥>﹥吖頭↗ 提交于 2021-01-29 08:41:21
问题 I want to know if it is possible to deploy a KJAR to the execution server programmatically (via API)? I can build a KJAR using the following: final KieServices kieServices = KieServices.Factory.get(); final KieFileSystem kieFileSystem = kieServices.newKieFileSystem(); kieFileSystem.write("src/main/resources/" + ClassUtils.convertClassNameToResourcePath(getPackageNameForRule(rule.getValue())) + "/" + rule .getCode() + ".drl", rule.getValue()); return kieServices.newKieBuilder(kieFileSystem)

Unable Register Kie Server (No Remote Servers) in Workbench (Kie-WB 6.4.0 in WildFly 8.2.1)

旧时模样 提交于 2021-01-29 02:19:06
问题 Problem with configuring kie-wb with kie-server. I've wildfly 8.2.1 with Kie-server installed to it on one machine. For this I've created two users using adduser.bat: Management User User :- alpha1 passwrod :- password@1 role :- admin,kie-server Application User User :- alpha2 password :- password@1 role :- admin,kie-server,rest-all I am running this server using this command :- standalone.bat --server-config=standalone-full.xml -Dorg.kie.server.id=wildfly-kieserver -Dorg.kie.server.location

Unable Register Kie Server (No Remote Servers) in Workbench (Kie-WB 6.4.0 in WildFly 8.2.1)

北城以北 提交于 2021-01-29 02:15:22
问题 Problem with configuring kie-wb with kie-server. I've wildfly 8.2.1 with Kie-server installed to it on one machine. For this I've created two users using adduser.bat: Management User User :- alpha1 passwrod :- password@1 role :- admin,kie-server Application User User :- alpha2 password :- password@1 role :- admin,kie-server,rest-all I am running this server using this command :- standalone.bat --server-config=standalone-full.xml -Dorg.kie.server.id=wildfly-kieserver -Dorg.kie.server.location

KieScanner not updating KieSessions at runtime

岁酱吖の 提交于 2021-01-28 08:02:24
问题 I'm using Drools with Eclipse and Maven for an application doing many-many pattern matching. I wanted to use KieScanner to automatically update the running KieSession without restarting the application. But this doesn't seem to be working. I am using 7.24.0.t043 for org.kie and org.drools. I'm only using my local Maven repo for this, so I've specified the path and set true in my settings.xml. I also verified that creating a new KieContainer with the most recent version registers the changed