I'm trying to setup the kie execution service (kie-server-services-6.2.0) for being provisioned by the kie-drools-wb-webapp-6.2.0, when I try to get access by following the webapp url of the execution server it shows a BASIC authentication, and don't know how to proceed for getting the access to the execution server, and also get the endpoint url, for provisioning the build-in rules examples of the kie-wb and get the REST or the WSDL working. The kie-wb has a username with role "admin" and I can build correctly the rules. Many thanks!!
setup drools Kie execution server credentials
8.7k Views Asked by Matías Rawlins Kunstmann At
1
There are 1 best solutions below
Related Questions in DROOLS
- how to use global variable in drools
- Unable to parse file 'pom.xml'
- How to write functions written in the decision manager
- Wrong answer when checking array of objects where the condition built from a group with "or" between objects, checked with other group (with "and")
- Drools 8 OSGi support
- How to inject KieRuntimeBuilder - (Migrating to Drools 8)
- Limitation of IN Operator items in drl, INoperator doesn't support huge list
- Different result for query with and without using agenda-group
- More than one condition in drools spreadsheet
- DROOLS DRL Rule Unit with RuleUnitData declaration isn't working
- KieServices are not injecting with guice
- Drools facts filtering with eval does not work for boolean with quotes ""
- Drools to decide fields to display in UI
- How to get Drools BPMN2 to evaluate Data Assignments as MVEL Expressions?
- Kogito DMN Data Types Create New Data Type Dictionary/Map
Related Questions in BUSINESS-RULES
- XmlSchema Compatibility
- Simple HTML editor example
- Calling .ToString() on editor not returning enum name
- Why is the MVC RuleEditor is too slow loading data sources
- CodeEffects Rule Engine - Template for ReactJS - how to add alphanumeric validation to built-in text field input?
- python loyalt point expire date calculation
- How does DRL key "insert" in rule conditions works with RuleUnit in Drools?
- How to send attachment dynamic in payload?
- Servicenow - How to generate custom excel file from script
- Bizagi Studio/ BARuleCategory SQL
- Issue while Executing BusinessRule in Kie Business-Central
- Is it possible to generate a class diagram from my Visual Studio project environment?
- Preventing Rule Retriggering in Drools or Alternative Technologies
- How do I implement business rules within a Swift/iOS class so that rules&decisions can be made based on a core data table and not hardcoded in code?
- How to trigger privacy impact assessment if processing_activity.special_category_info_available == true in ServiceNow
Related Questions in KIE-WB
- Drools Workbench docker container: Can't access the deployed server
- keep getting KieServer-ControllerConnect error 401 in startup (standalone.bat) for Business central
- jboss/business-central-workbench-showcase docker image problem
- How to deploy a rules kjar to S3 bucket from within the kie workbench?
- Can't enable kie-drools-wb-7.10.0.war in wildfly 11 after deployment
- KIE Workbench Test Scenarios as a part of Maven build
- Error while deploying Drools workbench 7.7.0.Final with wildFly11
- Optaplanner REST API solve issue
- Fail to add TypeDef annotation for HardSoftScoreHibernateType to persist score
- No solver when accessing using Optaplanner REST API
- Managed Repository maintaining multiple time stamped SNAPSHOT versions
- How to change front end of kie workbench of jbpm 6.5?
- Drools validation failing with error as "unterminated string literal"
- Unable Register Kie Server (No Remote Servers) in Workbench (Kie-WB 6.4.0 in WildFly 8.2.1)
- Configure SQL Server 2008 with Kie-WB
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trying to answer you question I decided to create HOWTO from the very beginning what I did to get my Drool rules executed on remote server.
My task was to integrate Kie Workbench and Execution Server, so business users be able to create Drools rules and deploy them to the Repo, while developers could use these rules via calling REST services of standalone Drools execution server.
You should follow these steps:
Before using Drools Execution Server let me use such terminology:
Deployment of Drools Workbench
Most stable version of Kie Drools Workbench to deploy at the moment is 6.1.0.Final. Use this one for deploying on Tomcat 7.0 only!
You can download file called kie-drools-wb-distribution-wars from Jboss sonar repo, use version 6.1.0.Final and tomcat7.war
Make sure you added following jars to Tomcat's lib directory: javax.security.jacc-api-1.4.jar, kie-tomcat-integration.jar, slf4j-api-1.7.2.jar
Make sure you have or added following roles/users to tomcat-users.xml of your Tomcat:
In Kie Workbench create a Model, Rules file. Validate them and click Deploy. Make sure you have jar file with your project being put to Maven repo!
As an example you can use rule and model I created for testing purposes: Drool rule file:
Deployment of Kie Drools Execution Server
For the moment of this To-Do writing the most stable version of Kie Drools Execution Server is kie-server-services-6.2.0.Beta3.war. You can download it here, Jboss sonar repo:
Use XML format. of cause use your own model instead of MyExampleType:
P.S Due to luck of documentation about the topic I checked out Server's sources from GitHub. Take a look at kie-server-client and kie-server-integ-tests code and tests. Hope this helps.