DianaP : | 1 Sep 2006 04:06
Picon

question ontology owl

Hi all

My name is Diana Hurtado and I am a computer science student
at the Universidad del valle in Cali, Colombia. 
I am new to the list.

I would like to know if anybody can tell me where I can find the
Computer Science Ontology in OWL?

Thanks for your help

--

Felíz día :)

"No hay peor cosa que la que se deja de hacer...
Vivir.. es el unico riesgo que vale la pena correr"

Diana Paola Hurtado Bustamante
Estudiante Ingenieria de Sistemas
Universidad del Valle
Cali - Colombia
dipahur <at> univalle.edu.co
dipahurb <at> gmail.com
dipahurb <at> yahoo.com
dipah <at> hotmail.com
Cel: 311 - 3081829

_______________________________________________
protege-owl mailing list
protege-owl <at> lists.stanford.edu
https://mailman.stanford.edu/mailman/listinfo/protege-owl
Ig Ibert | 1 Sep 2006 04:13
Picon

Re: question ontology owl

Hi Diana,
 
 
I believe that there are others places to search, however, I don´t remember now. Sorry.
 
Cheers,
Ig

 
2006/8/31, DianaP :) <dipahurb <at> gmail.com>:
Hi all

My name is Diana Hurtado and I am a computer science student
at the Universidad del valle in Cali, Colombia. 
I am new to the list.

I would like to know if anybody can tell me where I can find the
Computer Science Ontology in OWL?

Thanks for your help

--

Felíz día :)

"No hay peor cosa que la que se deja de hacer...
Vivir.. es el unico riesgo que vale la pena correr"

Diana Paola Hurtado Bustamante
Estudiante Ingenieria de Sistemas
Universidad del Valle
Cali - Colombia
dipahur <at> univalle.edu.co
dipahurb <at> gmail.com
dipahurb <at> yahoo.com
dipah <at> hotmail.com
Cel: 311 - 3081829

_______________________________________________
protege-owl mailing list
protege-owl <at> lists.stanford.edu
https://mailman.stanford.edu/mailman/listinfo/protege-owl





--
Abraços,

Ig Ibert Bittencourt
_______________________________________________
protege-owl mailing list
protege-owl <at> lists.stanford.edu
https://mailman.stanford.edu/mailman/listinfo/protege-owl
Ramnath, Vasudha | 1 Sep 2006 05:00
Picon

FW: SWRL rule problem : y isSiblingOf y


Hi

I guess you should add a swrlb:notEqual(?x, ?y) clause and try.
since Person(?x) and Person(?y) will each match all the instances of Persons and the Person X Person space
will have (Anna, Anna) etc.. too ?

rgds
--Vasudha

-----Original Message-----
From: protege-owl-bounce <at> crg-gw.Stanford.EDU [mailto:protege-owl-bounce <at> crg-gw.Stanford.EDU]
On Behalf Of Laurent Kevers
Sent: Thursday, August 31, 2006 10:34 PM
To: protege-owl <at> smi.stanford.edu
Subject: [protege-owl] SWRL rule problem : y isSiblingOf y

Hi all,

I try to use SWRL and Jess to write some basic rules... I have in my 
ontology a class "Person" and for this class the properties"hasName", 
"hasParent" and a "isSiblingOf". "isSiblingOf" is transitive and 
symmetric. I have 4 instances with the following properties :

person_1 : hasName 'Anna'
person_2 : hasName 'Michel'
person_3 : hasName 'Elise', hasParent 'person_1', hasParent 'person_2'
person_4 : hasName 'Paul', hasParent 'person_1', hasParent 'person_2'

I write the following rule to infer the "isSiblingOf" property between 
person_3 and person_4 (and the symmertic property between person_4 and 
person_3) :

Person(?x) ∧ Person(?y) ∧ hasParent(?x, ?a) ∧ hasParent(?x, ?b) ∧ 
hasParent(?y, ?a) ∧ hasParent(?y, ?b) → isSiblingOf(?x, ?y)

When I run this rule with Jess in the SWRL Tab, the result is 4 
"isSiblingOf" properties ! I obtain the 2 correct properties between 
person_3 and person_4 but also a wrong "isSiblingOf" between person_3 
and himself and person_4 and himself...

Where these two inferred properties come from (from my OWL ontology or 
from the SWRL rule) ? Where is the error with this ? Any idea ?

Thanks for your help,

Laurent Kevers
Research assistant
Cental - UCL

-------------------------------------------------------------------------
To unsubscribe go to http://protege.stanford.edu/community/subscribe.html

------------ Institute For Infocomm Research - Disclaimer -------------
This email is confidential and may be privileged.  If you are not the intended recipient, please delete it
and notify us immediately. Please do not copy or use it for any purpose, or disclose its contents to any
other person. Thank you.
--------------------------------------------------------
_______________________________________________
protege-owl mailing list
protege-owl <at> lists.stanford.edu
https://mailman.stanford.edu/mailman/listinfo/protege-owl
Laurent Kevers | 1 Sep 2006 10:57
Picon
Favicon

Re: FW: SWRL rule problem : y isSiblingOf y

Hi,

Thanks for your help ! I tried the swrlb:notEqual() but it makes an error (see below). Someone know what's the problem with that ? I also tried to use differentFrom() : no error but no result. The rule doesn't produces any inference...

Laurent

Exception in thread "AWT-EventQueue-0" java.lang.NoSuchMethodError: jess.Value.symbolValue(Ljess/Context;)Ljava/lang/String;
»···at edu.stanford.smi.protegex.owl.swrl.bridge.jess.SWRLJessBridge.createInfoFromValue(Unknown Source)
»···at edu.stanford.smi.protegex.owl.swrl.bridge.jess.SWRLJessBridge.access$100(Unknown Source)
»···at edu.stanford.smi.protegex.owl.swrl.bridge.jess.SWRLJessBridge$InvokeSWRLBuiltInUserFunction.call(Unknown Source)
»···at jess.ep.a(Unknown Source)
»···at jess.Funcall.execute(Unknown Source)
»···at jess.FuncallValue.resolveValue(Unknown Source)
»···at jess.Test1.doTest(Unknown Source)
»···at jess.NodeJoin.a(Unknown Source)
»···at jess.NodeJoin.callNodeLeft(Unknown Source)
»···at jess.NodeJoin.int(Unknown Source)
»···at jess.Node2.if(Unknown Source)
»···at jess.Node2.a(Unknown Source)
»···at jess.Node2.a(Unknown Source)
»···at jess.Node1.for(Unknown Source)
»···at jess.bd.a(Unknown Source)
»···at jess.Node1.for(Unknown Source)
»···at jess.am.a(Unknown Source)
»···at jess.Rete.a(Unknown Source)
»···at jess.ax.a(Unknown Source)
»···at jess.Rete.addDefrule(Unknown Source)
»···at jess.Jesp.a(Unknown Source)
»···at jess.Jesp.do(Unknown Source)
»···at jess.Jesp.int(Unknown Source)
»···at jess.Jesp.for(Unknown Source)
»···at jess.Jesp.parse(Unknown Source)
»···at jess.Rete.executeCommand(Unknown Source)
»···at jess.Rete.executeCommand(Unknown Source)
»···at edu.stanford.smi.protegex.owl.swrl.bridge.jess.SWRLJessBridge.executeCommand(Unknown Source)
»···at edu.stanford.smi.protegex.owl.swrl.bridge.jess.SWRLJessBridge.defineRule(Unknown Source)
»···at edu.stanford.smi.protegex.owl.swrl.bridge.SWRLRuleEngineBridge.exportSWRLRules(Unknown Source)
»···at edu.stanford.smi.protegex.owl.swrl.bridge.SWRLRuleEngineBridge.exportSWRLRulesAndOWLKnowledge(Unknown Source)
»···at edu.stanford.smi.protegex.owl.swrl.bridge.jess.ui.JessControlPanel$ImportActionListener.actionPerformed(Unknown Source)
»···at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1849)
»···at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2169)
»···at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
»···at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
»···at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:234)
»···at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:231)
»···at java.awt.Component.processMouseEvent(Component.java:5488)
»···at javax.swing.JComponent.processMouseEvent(JComponent.java:3126)
»···at java.awt.Component.processEvent(Component.java:5253)
»···at java.awt.Container.processEvent(Container.java:1966)
»···at java.awt.Component.dispatchEventImpl(Component.java:3955)
»···at java.awt.Container.dispatchEventImpl(Container.java:2024)
»···at java.awt.Component.dispatchEvent(Component.java:3803)
»···at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4212)
»···at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3892)
»···at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3822)
»···at java.awt.Container.dispatchEventImpl(Container.java:2010)
»···at java.awt.Window.dispatchEventImpl(Window.java:1774)
»···at java.awt.Component.dispatchEvent(Component.java:3803)
»···at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
»···at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
»···at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
»···at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
»···at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
»···at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)



Ramnath, Vasudha wrote:
Hi I guess you should add a swrlb:notEqual(?x, ?y) clause and try. since Person(?x) and Person(?y) will each match all the instances of Persons and the Person X Person space will have (Anna, Anna) etc.. too ? rgds --Vasudha -----Original Message----- From: protege-owl-bounce <at> crg-gw.Stanford.EDU [mailto:protege-owl-bounce <at> crg-gw.Stanford.EDU] On Behalf Of Laurent Kevers Sent: Thursday, August 31, 2006 10:34 PM To: protege-owl <at> smi.stanford.edu Subject: [protege-owl] SWRL rule problem : y isSiblingOf y Hi all, I try to use SWRL and Jess to write some basic rules... I have in my ontology a class "Person" and for this class the properties"hasName", "hasParent" and a "isSiblingOf". "isSiblingOf" is transitive and symmetric. I have 4 instances with the following properties : person_1 : hasName 'Anna' person_2 : hasName 'Michel' person_3 : hasName 'Elise', hasParent 'person_1', hasParent 'person_2' person_4 : hasName 'Paul', hasParent 'person_1', hasParent 'person_2' I write the following rule to infer the "isSiblingOf" property between person_3 and person_4 (and the symmertic property between person_4 and person_3) : Person(?x) ∧ Person(?y) ∧ hasParent(?x, ?a) ∧ hasParent(?x, ?b) ∧ hasParent(?y, ?a) ∧ hasParent(?y, ?b) → isSiblingOf(?x, ?y) When I run this rule with Jess in the SWRL Tab, the result is 4 "isSiblingOf" properties ! I obtain the 2 correct properties between person_3 and person_4 but also a wrong "isSiblingOf" between person_3 and himself and person_4 and himself... Where these two inferred properties come from (from my OWL ontology or from the SWRL rule) ? Where is the error with this ? Any idea ? Thanks for your help, Laurent Kevers Research assistant Cental - UCL ------------------------------------------------------------------------- To unsubscribe go to http://protege.stanford.edu/community/subscribe.html ------------ Institute For Infocomm Research - Disclaimer ------------- This email is confidential and may be privileged. If you are not the intended recipient, please delete it and notify us immediately. Please do not copy or use it for any purpose, or disclose its contents to any other person. Thank you. -------------------------------------------------------- _______________________________________________ protege-owl mailing list protege-owl <at> lists.stanford.edu https://mailman.stanford.edu/mailman/listinfo/protege-owl

_______________________________________________
protege-owl mailing list
protege-owl <at> lists.stanford.edu
https://mailman.stanford.edu/mailman/listinfo/protege-owl
Ramnath, Vasudha | 1 Sep 2006 10:07
Picon

Re: FW: SWRL rule problem : y isSiblingOf y

Hi,

 

Oops !  Could it be that swrlb:notEqual doesn’t support user-defined types ?

did you look a the SWRLBuiltInBridge page ?

 

--Vasudha

 

 

From: protege-owl-bounces <at> lists.stanford.edu [mailto:protege-owl-bounces <at> lists.stanford.edu] On Behalf Of Laurent Kevers
Sent: Friday, September 01, 2006 4:57 PM
To: User support for the Protege-OWL editor
Subject: Re: [protege-owl] FW: SWRL rule problem : y isSiblingOf y

 

Hi,

Thanks for your help ! I tried the swrlb:notEqual() but it makes an error (see below). Someone know what's the problem with that ? I also tried to use differentFrom() : no error but no result. The rule doesn't produces any inference...

Laurent

Exception in thread "AWT-EventQueue-0" java.lang.NoSuchMethodError: jess.Value.symbolValue(Ljess/Context;)Ljava/lang/String;
»···at edu.stanford.smi.protegex.owl.swrl.bridge.jess.SWRLJessBridge.createInfoFromValue(Unknown Source)
»···at edu.stanford.smi.protegex.owl.swrl.bridge.jess.SWRLJessBridge.access$100(Unknown Source)
»···at edu.stanford.smi.protegex.owl.swrl.bridge.jess.SWRLJessBridge$InvokeSWRLBuiltInUserFunction.call(Unknown Source)
»···at jess.ep.a(Unknown Source)
»···at jess.Funcall.execute(Unknown Source)
»···at jess.FuncallValue.resolveValue(Unknown Source)
»···at jess.Test1.doTest(Unknown Source)
»···at jess.NodeJoin.a(Unknown Source)
»···at jess.NodeJoin.callNodeLeft(Unknown Source)
»···at jess.NodeJoin.int(Unknown Source)
»···at jess.Node2.if(Unknown Source)
»···at jess.Node2.a(Unknown Source)
»···at jess.Node2.a(Unknown Source)
»···at jess.Node1.for(Unknown Source)
»···at jess.bd.a(Unknown Source)
»···at jess.Node1.for(Unknown Source)
»···at jess.am.a(Unknown Source)
»···at jess.Rete.a(Unknown Source)
»···at jess.ax.a(Unknown Source)
»···at jess.Rete.addDefrule(Unknown Source)
»···at jess.Jesp.a(Unknown Source)
»···at jess.Jesp.do(Unknown Source)
»···at jess.Jesp.int(Unknown Source)
»···at jess.Jesp.for(Unknown Source)
»···at jess.Jesp.parse(Unknown Source)
»···at jess.Rete.executeCommand(Unknown Source)
»···at jess.Rete.executeCommand(Unknown Source)
»···at edu.stanford.smi.protegex.owl.swrl.bridge.jess.SWRLJessBridge.executeCommand(Unknown Source)
»···at edu.stanford.smi.protegex.owl.swrl.bridge.jess.SWRLJessBridge.defineRule(Unknown Source)
»···at edu.stanford.smi.protegex.owl.swrl.bridge.SWRLRuleEngineBridge.exportSWRLRules(Unknown Source)
»···at edu.stanford.smi.protegex.owl.swrl.bridge.SWRLRuleEngineBridge.exportSWRLRulesAndOWLKnowledge(Unknown Source)
»···at edu.stanford.smi.protegex.owl.swrl.bridge.jess.ui.JessControlPanel$ImportActionListener.actionPerformed(Unknown Source)
»···at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1849)
»···at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2169)
»···at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
»···at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
»···at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:234)
»···at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:231)
»···at java.awt.Component.processMouseEvent(Component.java:5488)
»···at javax.swing.JComponent.processMouseEvent(JComponent.java:3126)
»···at java.awt.Component.processEvent(Component.java:5253)
»···at java.awt.Container.processEvent(Container.java:1966)
»···at java.awt.Component.dispatchEventImpl(Component.java:3955)
»···at java.awt.Container.dispatchEventImpl(Container.java:2024)
»···at java.awt.Component.dispatchEvent(Component.java:3803)
»···at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4212)
»···at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3892)
»···at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3822)
»···at java.awt.Container.dispatchEventImpl(Container.java:2010)
»···at java.awt.Window.dispatchEventImpl(Window.java:1774)
»···at java.awt.Component.dispatchEvent(Component.java:3803)
»···at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
»···at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
»···at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
»···at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
»···at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
»···at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)



Ramnath, Vasudha wrote:

 

Hi

 

I guess you should add a swrlb:notEqual(?x, ?y) clause and try.

since Person(?x) and Person(?y) will each match all the instances of Persons and the Person X Person space will have (Anna, Anna) etc.. too ?

 

 

rgds

--Vasudha

 

 

-----Original Message-----

From: protege-owl-bounce <at> crg-gw.Stanford.EDU [mailto:protege-owl-bounce <at> crg-gw.Stanford.EDU] On Behalf Of Laurent Kevers

Sent: Thursday, August 31, 2006 10:34 PM

To: protege-owl <at> smi.stanford.edu

Subject: [protege-owl] SWRL rule problem : y isSiblingOf y

 

Hi all,

 

I try to use SWRL and Jess to write some basic rules... I have in my

ontology a class "Person" and for this class the properties"hasName",

"hasParent" and a "isSiblingOf". "isSiblingOf" is transitive and

symmetric. I have 4 instances with the following properties :

 

person_1 : hasName 'Anna'

person_2 : hasName 'Michel'

person_3 : hasName 'Elise', hasParent 'person_1', hasParent 'person_2'

person_4 : hasName 'Paul', hasParent 'person_1', hasParent 'person_2'

 

I write the following rule to infer the "isSiblingOf" property between

person_3 and person_4 (and the symmertic property between person_4 and

person_3) :

 

Person(?x) Person(?y) hasParent(?x, ?a) hasParent(?x, ?b)

hasParent(?y, ?a) hasParent(?y, ?b) → isSiblingOf(?x, ?y)

 

When I run this rule with Jess in the SWRL Tab, the result is 4

"isSiblingOf" properties ! I obtain the 2 correct properties between

person_3 and person_4 but also a wrong "isSiblingOf" between person_3

and himself and person_4 and himself...

 

Where these two inferred properties come from (from my OWL ontology or

from the SWRL rule) ? Where is the error with this ? Any idea ?

 

Thanks for your help,

 

Laurent Kevers

Research assistant

Cental - UCL

 

 

-------------------------------------------------------------------------

To unsubscribe go to http://protege.stanford.edu/community/subscribe.html

 

 

------------ Institute For Infocomm Research - Disclaimer -------------

This email is confidential and may be privileged.  If you are not the intended recipient, please delete it and notify us immediately. Please do not copy or use it for any purpose, or disclose its contents to any other person. Thank you.

--------------------------------------------------------

 

 

 

_______________________________________________

protege-owl mailing list

protege-owl <at> lists.stanford.edu

https://mailman.stanford.edu/mailman/listinfo/protege-owl

 

 

------------ Institute For Infocomm Research - Disclaimer -------------
This email is confidential and may be privileged. If you are not the intended recipient, please delete it and notify us immediately. Please do not copy or use it for any purpose, or disclose its contents to any other person. Thank you.
--------------------------------------------------------
_______________________________________________
protege-owl mailing list
protege-owl <at> lists.stanford.edu
https://mailman.stanford.edu/mailman/listinfo/protege-owl
Picon

Running JessTab in Protegé 3.2

Hi all,
I´m new with protegé 3.2. I´m trying to use the Jess Tab. I´ve downloaded Jess61p8.zip and I´ve pasted "jess.jar" in the folder Plugins of Protegé
I get: Error loading Jess. Is the Jess JAR in the Protege-OWL plugin directory? I´ve added the path in the CLASSPATH

When I try to I enable SWRL and activate Jess, I get :
"Unable to activate the Jess rule engine"

Can anyone help me?

Best regards
Teresa

_______________________________________________
protege-owl mailing list
protege-owl <at> lists.stanford.edu
https://mailman.stanford.edu/mailman/listinfo/protege-owl
Laurent Kevers | 1 Sep 2006 12:53
Picon
Favicon

Re: Running JessTab in Protegé 3.2

Hi Teresa,

I have the jess.jar file in the "plugin" directory AND in the "plugin/JessTab" directory. Hope this will work for you...

Laurent

Teresa Carcelén Fernández wrote:
Hi all,
I´m new with protegé 3.2. I´m trying to use the Jess Tab. I´ve downloaded Jess61p8.zip and I´ve pasted "jess.jar" in the folder Plugins of Protegé
I get: Error loading Jess. Is the Jess JAR in the Protege-OWL plugin directory? I´ve added the path in the CLASSPATH

When I try to I enable SWRL and activate Jess, I get :
"Unable to activate the Jess rule engine"

Can anyone help me?

Best regards
Teresa
_______________________________________________ protege-owl mailing list protege-owl <at> lists.stanford.edu https://mailman.stanford.edu/mailman/listinfo/protege-owl

_______________________________________________
protege-owl mailing list
protege-owl <at> lists.stanford.edu
https://mailman.stanford.edu/mailman/listinfo/protege-owl
Andreas Langegger | 1 Sep 2006 12:49
Picon
Favicon

Re: Ontology from database schema?


Hi Jennifer,

thanks. I installed the 2.0b version and it worked. As you said, I had
to convert the original Frames project to OWL afterwards.

Also thanks for the information provided on the Wiki.

Regards,
Andy

Jennifer Vendetti wrote:
> Hello Andy,
> 
> Andreas Langegger wrote:
> 
>> Hello Jennifer,
>>
>> is it possible, that the DataGenie plugin does only support the JDBC-ODBC bridge? I tried to connect to a
MySQL database putting the renamed driver.jar in the protégé root like for database projects.
>>  
>>
> Sorry for the delay - I had to look into this a little bit.  The version 
> of the DataGenie plug-in (version 1.1) that is bundled with Protege only 
> supports JDBC-ODBC bridge.  However, the University of Washington 
> (original developers of the plug-in) released a newer version (version 
> 2.0.1) that supports JDBC.  I tried downloading it and it didn't work 
> out of the box.  So, I fixed a couple of minor bugs to get it working 
> and posted the new version on our Wiki:
> 
> http://protege.cim3.net/cgi-bin/wiki.pl?DataGenie
> 
> I was able to successfully connect to a MySQL database and do an import.
> 
> Another thing to note - this plug-in was developed before Protege-OWL 
> existed.  A safer route might be to import your database via the 
> Protege-Frames editor and then convert to OWL (if you are interested in 
> OWL).
> 
>> What's actually the difference between an OWL Database project (when creating new projects) and the
DataGenie tab?
>>  
>>
> The database project type in Protege means that your ontology will be 
> saved in Protege's databse format.  The DataGenie Tab is a plug-in that 
> allows you to import data from an arbitrary database into Protege (i.e., 
> a database that is not in the Protege format).
> 
> Jennifer
> 
> _______________________________________________
> protege-owl mailing list
> protege-owl <at> lists.stanford.edu
> https://mailman.stanford.edu/mailman/listinfo/protege-owl

--
----------------------------------------------------------------------
Dipl.-Ing.(FH) Andreas Langegger
Institute of Applied Knowledge Processing
Johannes Kepler University Linz
A-4040 Linz, Altenberger Straße 69
> http://www.faw.at
> http://www.langegger.at
Steven Wartik | 1 Sep 2006 14:20

Re: Running JessTab in Protegé 3.2

Teresa,

I seem to recall that JessTab requires version 7 of Jess.

Steve Wartik
Teresa Carcelén Fernández wrote:
Hi all,
I´m new with protegé 3.2. I´m trying to use the Jess Tab. I´ve downloaded Jess61p8.zip and I´ve pasted "jess.jar" in the folder Plugins of Protegé
I get: Error loading Jess. Is the Jess JAR in the Protege-OWL plugin directory? I´ve added the path in the CLASSPATH

When I try to I enable SWRL and activate Jess, I get :
"Unable to activate the Jess rule engine"

Can anyone help me?

Best regards
Teresa
_______________________________________________ protege-owl mailing list protege-owl <at> lists.stanford.edu https://mailman.stanford.edu/mailman/listinfo/protege-owl

_______________________________________________
protege-owl mailing list
protege-owl <at> lists.stanford.edu
https://mailman.stanford.edu/mailman/listinfo/protege-owl
Erik Lund-Jensen | 1 Sep 2006 14:20
Picon

Svar: Re: Running JessTab in Protegé 3.2 (Jeg holder ferie...)

Tak for din henvendelse - jeg holder ferie frem til 18. september. Hvis det er en hastesag kan du henvende dig
til Karin Grundsø, lokal 1046. 
venlig hilsen
Erik Lund-Jensen

_______________________________________________
protege-owl mailing list
protege-owl <at> lists.stanford.edu
https://mailman.stanford.edu/mailman/listinfo/protege-owl


Gmane