Semantic Web Drools Module, Request for Feedbak
by Xavier Breton
Hi,
I'm looking for feedback, I'll develop a Semantic Web Drools Module that
will be the subject of my Master Degree Tesis.
The idea is to use Eclipse Modelling Framework (EMF) for prototyping and
follow a Model Driven Architecture (MDA) where the source language is
Semantic of Business Vocabularies and Business Rules (SBVR) and the target
language is Drools DRL.
The mapping could be (PIM level):
- Semantic Web Rule Language (SWRL)
- Ontology Web Language (OWL)
- RuleML
- Rule Interchange Format (RIF)
- REWERSE Rule Markup Language (R2ML)
It could be added to the module at the source UML or Entity Relationship
like models to transform the models into SBVR.
Regards
Xavier Breton
10 years, 9 months
Guided Editor in BRMS / Guvnor Version 5 (Snapshot of 26 June)
by Paul Browne
Folks,
For various reasons I'm trying out the Guided Editor for Business Rules in
the Guvnor Version 5 (Snapshot of 26 June from Hudson, deployed on JBoss App
Server 4.2.2GA).
I've created the Package / Category and uploaded a simple fact model (as
works in BRMS version 4). I create a new business rule using the guided
editor and the screen shows successfully with both 'When' and 'Then'
parts.Assume the next question is due to me missing something, but wanted to
double check:
When I press the green '+' to the right of the screen I am shown the message
/ dialog layer saying '
*Add a condition to the rule... *or* Add an action to the rule.
*Problem is that there doesn't appear to be a way of adding a condition or
action. The only thing I'm seeing in the logs is
* (Contexts.java:flushAndDestroyContexts:335) could not discover
transaction status
*Am I missing something or should I come back to Guvnor later in the
development Cycle?
Thanks
Paul
12 years, 8 months
Drools on android
by Justin King
Hi All,
I'm wondering if anyone has tried to use drools in a google android
application, and if so what problems did you have? I'd also be interested to
know if its even possible!
Thanks!
--
Regards,
Justin King
PhD Candidate
Faculty of Information and Communication Technologies
Swinburne University of Technology
http://www.ict.swin.edu.au/ictstaff/justinking
--
Regards,
Justin King
PhD Candidate
Faculty of Information and Communication Technologies
Swinburne University of Technology
http://www.ict.swin.edu.au/ictstaff/justinking
12 years, 10 months
unknown error while parsing
by Boschung Daniel
hi folks
drools prompt me to contact the development team. the following error apears, whithout stacktrace, while developing
a rule. maybe the error is known to you?!
thanks for a little statement
daniel
14 years
Information needed from .Pkg file
by SubhaSankar Sarkar
Hi,
I have downlaoded the .pkg file after creating certain rules.Please let me
know is it possible to fetch the metadata used in rules/rule creation
time/rule owner information from the .pkg file?
Thanks in Advance !
Subha
14 years, 3 months
Copyright license headers: howto for IntelliJ
by Geoffrey De Smet
Toni added copyright license headers for all files,
but it's also nice to automatically have them ok for new development.
So here's a howto for IntelliJ (I hope one of the Eclipse guys does a
howto for Eclipse :)
- Open IntelliJ.
- Close all projects (this will give you the template project settings).
- Open Settings.
- Go to Copyright/Copyright profiles
- Add Copyright profile
-- name textfield: JBoss Inc
-- Fill this into the text area:
Copyright $today.year JBoss Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
- Do not end with a newline character
- Go to Copyright
-- Default project copyright combobox, select "JBoss Inc"
Rinse an repeat for each JBoss project...
--
With kind regards,
Geoffrey De Smet
14 years, 3 months
windows bug for kagent
by Mark Proctor
I was just looking into why the kagent stuff fails on my windows,
found a bug in Windows:
http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4243868
So the cause was a single attempt to setLastModified on a file, without
checking if it was sucessful. So instead I recommend the following when
dealing with files:
int count = 0;
while ( !f.setLastModified(t) && count < 10 ) {
count++;
System.gc();
Thread.sleep( 100 );
}
If the setLastModified still returns false then throw an exception.
Mark
14 years, 4 months