sepses / cyber-kg-converter

The SEPSES Cyber-KB Engine
http://sepses.ifs.tuwien.ac.at/
MIT License
20 stars 9 forks source link

Ran capec but zero triples added #1

Closed Radu3000 closed 4 years ago

Radu3000 commented 4 years ago

After running this command:

I am getting zero triples in fuseki.

2020-02-07 11:43:28 INFO CAPECParser - Store data to http://localhost:3030/sepses using graph http://w3id.org/sepses/graph/capec 2020-02-07 11:43:28 INFO DummyStorage - Do nothing 2020-02-07 11:43:28 INFO MainParser - ***** CAPEC parser finished 2020-02-07 11:43:28 INFO MainParser - Transformation process finished in 4732 milliseconds

I suspect that it has something to do with this comment:

Please let me know what needs to be done.

Thank you, Radu

Radu3000 commented 4 years ago

Never mind - the with this setting:

I get what I need:

fekaputra commented 4 years ago

Hi Radu,

it’s a matter of configuration (config.properties need to be adjusted to be used with fuseki - attached the correct configuration config.properties.zip )

As you already find out, it will produce the output files (*.ttl) on the output folder.

One note if you want your data to be automatically stored in a fuseki server: I just find out that one of the classes used for Fuseki loading requires oracle-jdk-8 (com.sun.javafx.PlatformUtil). If someone use openjdk-8 or newer version of java (e.g., java 11), it won’t work at the moment.

Radu3000 commented 4 years ago

Thank you Fajar!