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).
0
votes
1answer
27 views
How to get logically inserted fact or insrt fact in code in Drools guvnor
My guvnor rule is like :
Rule "aa"
dialect "mvel"
when
Fund( amount> 10000 )
then
Alert fact0 = new Alert();
fact0.setSummary( "hi" );
insert( fact0 );
end
and using ...
0
votes
1answer
120 views
Can the KnowledgeAgent be used to automatically write the KnowledgeBase to a file so it can be used externally?
i'm working at a little drools project and i have following problem:
- when i read the knowledgepackages from drools via the knowledgeAgent it takes a long time to load((now i know that building the ...
1
vote
1answer
177 views
Accessing Guvnor REST APIs using cURL
Any examples for accessing Guvnor server using cURL?
Try 1:
curl -i --user username:pwd -H"Content-Type: application/json" -X GET localhost:8080/guvnor-server/rest/packages
Returns:
HTTP/1.1 ...
0
votes
1answer
52 views
Guvnor seems to copy assets across External RDBMS and file system
I set up SQL Server as the external repository, and left everything else in guvnor and jboss AS7 configured pretty much according to defaults.
When I create assets in guvnor, I see that changes are ...
1
vote
1answer
116 views
Access Drools Guvnor from OSGI bundle
I am using following code to access Drools Guvnor:
KnowledgeAgentConfiguration kaconf = KnowledgeAgentFactory.newKnowledgeAgentConfiguration();
KnowledgeAgent kagent = ...
1
vote
1answer
151 views
Drools Guvnor on Glassfish error
I'm trying to deploy Guvnor (guvnor-5.5.0.Final-tomcat-6.0) to a fresh
glassfish server ( 3.1.2.2 build 5) and am getting the error below.
I did try the other WARs without any luck and I get the same ...
0
votes
2answers
326 views
how to use collection in drools guvnor?
I would like to know how to use a collection in LHS of a rule (to be used in contains, memberof) , which can be managed in Guvnor containing big list of elements (may be tens of thousands). Take a ...
2
votes
1answer
395 views
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 ...
0
votes
1answer
251 views
Changing JBoss BRMS (Drools) to use Oracle 11g: Unable to build package
I am using Guvnor (JBoss BRMS) to manage my drools rule engine which is deployed within JBoss EAP 5.3. I've altered Guvnor to use an Oracle 11g instance for it's RDBMS. I used Guvnor to generate a new ...
2
votes
1answer
489 views
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, ...
1
vote
2answers
214 views
Drools Guvnor data enumeration API
In Guvnor documentation, I know how to define data enumeration and use it in Guvnor. Is it possible to fetch data enumeration from my own Java code?
0
votes
2answers
795 views
Server returned HTTP response code: 401 for URL: http://localhost:8080/jboss-brms/org.drools.guvnor.Guvnor/package/DroolsPackage/LATEST
Enlisted is the way I use to read the rules from the Guvnor , for validating an input given by the user
1. A web-app(Tomcat v7.0 server) that forms the GUI for the user
2. A web-service (JBoss EAP ...
0
votes
0answers
574 views
how to call guvnor rule from java class
I want to call guvnor rule from simple java file. But i am facing issues in it.
I am using jboss7 for deployment.Please any one tell me if I miss any thing.
my drl rule
package com.rule;
import ...
1
vote
1answer
85 views
tomcat: guvnor & webservice load order
I have guvnor deployed on tomcat 7. Now need to deploy a wrapper webservice around the BRMS. The webservice is a spring-ws and uses @Autowired kbase dependency injection. kbase is configured in ...
5
votes
1answer
1k views
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 ...
0
votes
2answers
260 views
Creating an Drools Web application
Now I can create a drools application and I have used to create a drools application which is found in smooks site (A StockTik Example). Now I want to deploy that in a jboss AS . Is it possible. And ...