Questions tagged [guvnor]

Guvnor is the repository and management tools for the SOA repository - where you store assets/interface contracts, and a web interface to manage it all (including rules, processes, services).

Guvnor is the repository and management tools for the SOA repository - where you store assets/interface contracts, and a web interface to manage it all (including rules, processes, services).

See http://www.jboss.org/guvnor/

55 questions
15
votes
2 answers

How and is it worth to integrate Java Webapp + drools + Guvnor?

I am planning on introducing Java rules and currently in the process of evaluating Drools to externalize (physically and logically) the business rules from the application. Since these business rules would be very often by the business, I would want…
Sudhakar
  • 4,823
  • 2
  • 35
  • 42
4
votes
1 answer

how to begin with drools guvnor

I am new to drools and java.I want to setup guvnor and use database for storing rules.How should I begin with? I have been trying to figure it out but haven't clearly understood how to start.
user3505394
  • 315
  • 5
  • 18
3
votes
2 answers

How to download a .jar file from a URL

I have to download a .jar file from a remote kie maven repository which requires authentication using my java code. The code is as follows. String url = "http://localhost:18080/kiewb/maven2/group/artifact/version/file.jar"; UrlResource…
Soniya Abaraham
  • 85
  • 2
  • 11
2
votes
0 answers

Deploying a BPM project into remote BPM Suite with BuildProject asset management process

I'm trying to deploy a BPM project with business-central provided tools (the BuildProject asset management process) into a remote BPM Suite but I'm getting an error. Is it possible to deploy an asset of one BPM Suite instance into a different one…
izuz
  • 21
  • 3
2
votes
1 answer

wrong class format Bulding a Package from Java 7 to Java 8

i have two installations of Guvnor 5.6.0.Final, one (Machine A) is runnig over Java 7, the second one (Machine B) is runnig over Java 8. I made an export of the repository from Machine A and imported into Machine B. Every time i do the Build Package…
gbs
  • 21
  • 1
  • 3
2
votes
1 answer

Access to Drools returned fact object in Java Code

I have a drools rule created via the Guvnor console and the rule validates and inserts a fact into the working memory if conditions were met. The rule is: 1. | rule "EligibilityCheck001" 2. | dialect "mvel" 3. | when 4. | …
user3854719
  • 23
  • 1
  • 4
2
votes
2 answers

Lightweight web solution that would generate input fields based on the variables listed in the business rules

I need to develop a web-app that would show a list of services provided by our company.One caveat, depending on the value of certain variables(e.g. type of the client, income level, number of children) the cost and duration of the provided services…
2
votes
2 answers

Call guvnor rules in a sequence

I am developing few rules on guvnor plugin. e.g. To check The person is teacher. The teacher is Male. The Male teacher is of 45 years or above age. I have all these 3 rules working separately. But now I want to call them in a sequence. Like if the…
Neeraj
  • 1,776
  • 2
  • 16
  • 35
2
votes
1 answer

Drools Guvnor: How do dates and times work?

I know Java and I know C#. I am a noobie with the JBoss Drools "Guvnor" and just their DRL rules language in general. I need a little help on how to use dates and times correctly in the LHS of rules. For example, I have to assure data quality in a…
Brian Hart
  • 91
  • 1
  • 5
2
votes
2 answers

drools guvnor upload POJO model jar

I like to creata package, POJO model asset with my java code ,using REST API. Creating package with Apache HttpClient is fine, but I have problems creating a model asset, now I create "other assets, documentation" by putting the following
Richard
  • 153
  • 1
  • 14
1
vote
1 answer

Guvnor drools 5.5 rest api for creating model and rule asset

I am trying to create an asset in guvnor through rest api. but the asset is getting created as txt under other assets in guvnor.How can i make it rule asset or model asset. below is my code Client client = ClientBuilder.newClient(); …
prasanth
  • 13
  • 3
1
vote
0 answers

StatelessKnowledgeSession Focus Agenda

I have a problem with a rules execution in drools, when I execute the rules with a StatefulKnowledgeSession there aren't problems: final KnowledgeBase kbase = knowledgeAgent.getKnowledgeBase(); final StatefulKnowledgeSession session =…
Ganchix
  • 315
  • 4
  • 13
1
vote
3 answers

Problems deploying kie-wb-distribution-wars-6.0.1.Final-tomcat7

I have some problems deployng kie-wb-distribution-wars-6.0.1.Final-tomcat7. I followed Michael Anstis' guide (README) but the application give mi some problems. I attach the log. mag 13, 2014 9:46:31 AM org.apache.catalina.core.AprLifecycleListener…
user3635910
  • 13
  • 1
  • 3
1
vote
1 answer

Rule development and deployment management with Drools Guvnor

Introduction Drools Guvnor has it's own versioning system, that in production use allows the users of an application to modify the rules and decision tables in order to adapt to change in their business. Yet, the same assets continue to live on the…
kaskelotti
  • 4,709
  • 9
  • 45
  • 72
1
vote
1 answer

Exception executing consequence for rule (Drools, Guvnor, JBPM5)

am new to BPM, using JBPM5.4 installer. below is the my drl source code taken from Guvnor.. when firing the rules am getting the error. rule "TestRule" dialect "java" when exists (Person( name == "estaban" )) …
user991255
  • 355
  • 1
  • 6
  • 13
1
2 3 4