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
- Drools LHS Evaluation: matches vs String.contains()
- Drools : Rule firing multiple times
- How to load Drools Rule From DB
- JESS vs DROOLS : Backward chaining
- Failed to execute goal org.kie:kie-maven-plugin:6.1.0.Final:build
- Drools rules not firing
- Drools Stateful Knowledge Session using persistence
- Optaplanner finds unnecessary conflict for Custom dataset for curriculum example
- How to add a rule to an existing KnowlegeBase Drools 5.3?
- Drools: Match local string from array in LHS of rule
- Protocol message contained an invalid tag while trying to Complete Task using drools 5.5.0.Final
- Can't log into Workbench with roles developer, manager, or user
- Drools 6.x Workbench cannot be deployed to tomcat in windows- no resource registered with uniqueName 'jdbc/jbpm'
- Cannot see File Explorer and Project Explorer side panel in Drools 6?
- Facts can not be deleted automatically when I use sliding window
Related Questions in BUSINESS-RULES
- Where to use business rules in MS CRM 2013
- How can I install the Rule Designer on Eclipse for the Business Rules service on Bluemix?
- what is the difference between business object, business engine and business entity and business rules
- Invoke Business Rules service from Node js application on Bluemix
- OWL 2 ontology consistency check
- CRM Business rule that uses multiple lines of text
- Json Business values from server side to client side
- how deal with dynamic rules in a flow
- Logical Expression Visualizer
- Calculating Saturday and Sunday Business Date when Friday or Monday are a Holiday
- BizTalk Dynamic Disassembler Problems - The body part is NULL
- c# Place for business rules in domain driven design
- How do you test a business rule when it's a property accessibility?
- Free "Business Rules" tools?
- How to create a "true" contract first WS with wso2brs
Related Questions in KIE-WB
- Managed Repository maintaining multiple time stamped SNAPSHOT versions
- jboss/business-central-workbench-showcase docker image problem
- Pushing to git repository cloned from KIE Workbench repository
- KIE Workbench Test Scenarios as a part of Maven build
- Drools 6.2.0 workbench edit jbpm variable from drl rule
- How can I connect Kie Workbench with eclipse, So that I can use the project created in kie workbench in eclipse
- Beginning jbpm 6 questions about expectations of integration
- Accessing the modified rule file from Kie Workbench
- Stateless and stateful interaction with Rule engine FROM KIE workbench
- REST interface and KIE-WB
- could not create constructor :: Kie Workbench
- KIE-WB REST API Deployments
- KIE-WB Source Code
- Setting up Kie WB 6.3.0.CR2 and Execution Server 6.3.0.CR2 cant find where to connect?
- Error while deploying Drools workbench 7.7.0.Final with wildFly11
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 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.