kie-workbench

KIE Drool Workbench: Unable to get to workbench UI due to “Forbidden” screen

人盡茶涼 提交于 2021-02-11 14:31:01
问题 I have been trying follow the links and details available to set up a KIE Drools workbench for Drools like https://www.intertech.com/simple-setup-of-drools-kie-workbench-and-kie-server-in-one-wildfly-instance/. From what I could analyze and read up KIE Drools Workbench will let me configure a rule engine through a front end and that Guvnor used to handle this aspect prior to workbench. These configured rules can be blended into my Spring Boot application to drive my loan application

Tables could not be fetched - Error loading schema content

偶尔善良 提交于 2021-01-23 05:40:04
问题 I open workbench and connect to a local database on XAMPP and when open the connection the schema show the error message: "tables could not be fetched" 回答1: run this command on terminal sudo /opt/lampp/bin/mysql_upgrade 回答2: run this command on terminal mysql_upgrade -u root -p 回答3: That's because the latest XAMPP use MariaDB and MYSQL Workbench is using MYSQL Database, so they are not fully compatible, raising that error for example.You can try to downgrade to some of the previous XAMPP

Tables could not be fetched - Error loading schema content

妖精的绣舞 提交于 2021-01-23 05:36:11
问题 I open workbench and connect to a local database on XAMPP and when open the connection the schema show the error message: "tables could not be fetched" 回答1: run this command on terminal sudo /opt/lampp/bin/mysql_upgrade 回答2: run this command on terminal mysql_upgrade -u root -p 回答3: That's because the latest XAMPP use MariaDB and MYSQL Workbench is using MYSQL Database, so they are not fully compatible, raising that error for example.You can try to downgrade to some of the previous XAMPP

How to set Parameter in WorkItem to be reached within BPMN Process in jbpm-WorkBench

佐手、 提交于 2019-12-12 01:25:02
问题 I have created a custom WorkItem with some parameters, which I have registered in WorkDefinitions.wid file. Then in Business Process I also create Variable Definitions for the entire Process and reference those from WD.wid of my custom WorkItem to those created in BP. WorkItem execute the code, which takes those parameters from the form after starting the process. For this purpose I use getParameter()- method; It looks as follows: public void executeWorkItem(WorkItem workItem, WorkItemManager

Drools: cannot start container on remote kie-server, for “Could not find artifact …”

北慕城南 提交于 2019-12-11 20:40:21
问题 On a server with drools workbench and KIE server both installed, I authored a project, and got it built and deployed. Also, I can start a container for it locally . But I could not create a container for it on a remote server , and got the following error on remote server: Unable to resolve artifact: testdrools:firstApplication:pom:1.3 org.eclipse.aether.resolution.ArtifactResolutionException: Could not find artifact testdrools:firstApplication:pom:1.3 in central (http://repo1.maven.org

helloworld on Kie Workbench and Kie Server version 6.3.0

耗尽温柔 提交于 2019-12-11 12:48:28
问题 I could setup KIE Execution Server (6.3.0.Final) and Workbench (6.3.0.Final) on Wildfly 8.1.0.Final using information available in blog: http://mswiderski.blogspot.in/2015/10/installing-kie-server-and-workbench-on.html Both server and Workbench are working fine and Server is visible in Workbench under "Server Management Browser" tab. My next step is to deploy a simple container on server and test REST GET and POST calls, hence I followed steps mentioned in Question: HelloWorld using Drools

KIE Workbench Integration Responds with 401

狂风中的少年 提交于 2019-12-08 08:01:39
问题 I'm trying to integrate my KIE Workbench 6.1.FINAL deployment with a simple application using Drools 6.1.FINAL. I use the following code: String url = "http://localhost:8088/workbench/maven2/com/sep/test/myProject/1.0/myProject-1.0.jar"; KieServices ks = KieServices.Factory.get(); UrlResource urlResource = (UrlResource) ks.getResources().newUrlResource(url); urlResource.setBasicAuthentication("enabled"); urlResource.setUsername("admin"); urlResource.setPassword("admin"); try { InputStream is

KIE Workbench Integration Responds with 401

China☆狼群 提交于 2019-12-06 20:47:43
I'm trying to integrate my KIE Workbench 6.1.FINAL deployment with a simple application using Drools 6.1.FINAL. I use the following code: String url = "http://localhost:8088/workbench/maven2/com/sep/test/myProject/1.0/myProject-1.0.jar"; KieServices ks = KieServices.Factory.get(); UrlResource urlResource = (UrlResource) ks.getResources().newUrlResource(url); urlResource.setBasicAuthentication("enabled"); urlResource.setUsername("admin"); urlResource.setPassword("admin"); try { InputStream is = urlResource.getInputStream(); KieModule kModule = ks.getRepository().addKieModule(ks.getResources()

Compile drools guided decision table into rules

懵懂的女人 提交于 2019-12-06 20:05:46
问题 I am wondering how I could use a guided decision table from the Drools Workbench inside a Java application using the drools runtime. The idea is that a user would work defining rules, processes and some decision tables in the workbench, which will be picked up by the drools runtime. Still, for some reason, I can't figure out how to execute this in drools, since it stored the table as a gdst file and it does not seem to compile to drools. With drools, is there a way to: - execute the gdst file

JBPM 6.2. How to deploy a workflow directly from Eclipse instead of KIE workbench?

狂风中的少年 提交于 2019-12-06 14:32:35
问题 I am using Eclipse Luna and WildFly 8.1 with JBPM 6.2. Currently, my Eclipse is configured so that I can start both the WildFly 8.1 server and the KIE workbench directly from within Eclipse. Previously, I had created an Evaluation.bpmn workflow from the KIE workbench and was able to succesfully deploy it and see the workflow logs in the database tables. However, is there a way to create a JBPM project in Eclipse and deploy and start the workflow directly from Eclipse? If so, how can I do it?