kie-server

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

Integrate kie-server into spring boot application

 ̄綄美尐妖づ 提交于 2020-01-16 08:38:11
问题 I want to integrate all the kie-server autoconfiguration (especially JBPM) in my spring boot application. I added these gradle dependencies in a separate module of my project dependencies { compile group: 'org.kie', name: 'kie-server-spring-boot-starter', version: '7.29.0.Final' compile group: 'xerces', name: 'xercesImpl', version: '2.12.0' } then I added the configuration properties suggested by this link https://github.com/kiegroup/droolsjbpm-integration/blob/master/kie-spring-boot/kie

Creating XML with JAXB KieServicesClient fails (KIE 6.5.0)

好久不见. 提交于 2019-12-13 03:39:57
问题 I have an Object like this: @XmlRootElement(name="com.Operation") @XmlAccessorType(XmlAccessType.FIELD) public class Operation implements java.io.Serializable { static final long serialVersionUID = 1L; @org.kie.api.definition.type.Label("systemCode") @XmlElement private int systemCode; [...] When I marshall this manually with following code it seems it works well: [...] JAXBContext jaxbContext = DroolsJaxbHelperProviderImpl.createDroolsJaxbContext(classNames, null); Marshaller marshaller =

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

Can't deploy artifact to KIE-server via Drools workbench because of “ConversationId not valid - missing releaseId”

落爺英雄遲暮 提交于 2019-12-11 06:39:12
问题 I'm using the, kie-server-showcase and drools-workbench-showcase, via docker-run, I can see the kie-server in the drools UI and deploy a build to it. However, when I use docker-compose, I get a runtime exception when trying to deploy the demo morgauge project, see the logs here: http://pastebin.com/qKQ8hgak, but I've included the interesting parts: kie-server | 15:24:41,268 INFO [org.jboss.as] (Controller Boot Thread) JBAS015874: WildFly 8.2.0.Final "Tweek" started in 15690ms - Started 406 of

helloworld on Kie Server version 6.4.0

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-02 21:10:55
问题 I am currently evaluating KIE Server without using KIE Workbench. The scenario am evaluating is, 1) A third party will give me a drl file its value object (VO which will be used inside drl). I need to create a kjar or jar programmatically through a standard maven project structure and also create a container for that artifact and store it in maven repo. 2) When i receive a request for execution along with the input data, against that artifact, through REST call, i need to execute the above

HelloWorld using Drools Workbench & KIE Server

China☆狼群 提交于 2019-12-02 15:02:51
问题 Have KIE Drools Workbench 6.2.0 Final installed inside a JBoss 7 Application Server local instance and Kie Server 6.2.0 Final inside a local Tomcat 7 instance. Using the web based KIE Workbench strictly for evaluation purposes (am using it to code generate Java based Maven projects and am not using a particular IDE such as Eclipse or IntelliJ IDEA): Created a new repository called testRepo Created a new project called HelloWorld Created a new Data Object called HelloWorld with a String

helloworld on Kie Server version 6.4.0

烂漫一生 提交于 2019-12-02 11:48:55
I am currently evaluating KIE Server without using KIE Workbench. The scenario am evaluating is, 1) A third party will give me a drl file its value object (VO which will be used inside drl). I need to create a kjar or jar programmatically through a standard maven project structure and also create a container for that artifact and store it in maven repo. 2) When i receive a request for execution along with the input data, against that artifact, through REST call, i need to execute the above created container with that input data. I followed the examples this and this to do a simple "HelloWorld"

HelloWorld using Drools Workbench & KIE Server

三世轮回 提交于 2019-12-02 03:54:37
Have KIE Drools Workbench 6.2.0 Final installed inside a JBoss 7 Application Server local instance and Kie Server 6.2.0 Final inside a local Tomcat 7 instance. Using the web based KIE Workbench strictly for evaluation purposes (am using it to code generate Java based Maven projects and am not using a particular IDE such as Eclipse or IntelliJ IDEA): Created a new repository called testRepo Created a new project called HelloWorld Created a new Data Object called HelloWorld with a String property called message: package demo; /** * This class was automatically generated by the data modeler tool.