Skip to content

tenkyu/KieServerAdapter

Repository files navigation

.Net KieServerAdapter for Logo

KieServerAdapter is a restful client for Drools KieServer. You can easily call rules with your .Net project. These are the covered functions.

Drools also open source but it is in Java Stack and Kie Server is talented execution server and has restful feautures please see the full documantation in https://docs.jboss.org/drools/release/latest/drools-docs/html_single/#_kie.ksrestapi

Installation

Install just call this line from your package manager console or see the instractions from https://www.nuget.org/packages/KieServerAdapter/

PM> Install-Package KieServerAdapter

Docker

You can find the Docker images and how to use them for last final version at

For more info about the Drools Docker images see this blog post.

Quick Start

//Your insert object with .Net class
var insertObject = new Human { Sex = "E", Age = 63, FullName = "Recep Tayyip Erdoğan", Country = "TR"};

//Initialize your excecuter
var executer = new KieExecuter { HostUrl = "http://localhost:8082", AuthUserName = "kieserver", AuthPassword = "kieserver1!" };

//Insert object to KieServer session
executer.Insert(insertObject, "com.project.Human");

//executer.StartProcess("project.Flow_Human");

//Fire
executer.FireAllRules();

//This your response
var response = await executer.ExecuteAsync("container");

// If your response has an single result, see the magic in SmartSingleResponse property.
//var response = await executer.ExecuteAsync<Human>("container");

Please see the KieServerAdapter.Test project for more detailed examples.