Skip to content

The Information Delivery Processes Ontology (IDPO) Ontology is defined in under namespace https://w3id.org/idpo#. This repository contains a JAX-RS webservice for converting BPMN-XML files into IDPO instances using SPARQL-Generate.

License

Notifications You must be signed in to change notification settings

RUB-Informatik-im-Bauwesen/idpo-gen

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

idpo-generation

Working example

Run application

  • this application bases on https://github.com/sparql-generate/sparql-generate
  • however, to process BPMN-XML files with CamelCase XML-Nodes, the generation of IDPO or BPMN instances only works with the following fork: https://github.com/philhag/sparql-generate using the raw XML string instead of validating and prettyfing it first
  • the webservice can be startet from Main.java and listens on http:https://localhost:8080/
  • conversion can be startet using HTTP POST http:https://localhost:8080/convert for IDPO and HTTP POST http:https://localhost:8080/convertBPMN with application/xml body content

Example Query

  • Example:
curl --location --request POST 'http:https://localhost:8080/convertBPMN /' 
--header 'Content-Type: application/xml' 
--data-raw '<?xml version="1.0" encoding="UTF-8" standalone="no"?>
	<definitions xmlns="http:https://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http:https://www.omg.org/spec/BPMN/20100524/DI" xmlns:omgdc="http:https://www.omg.org/spec/DD/20100524/DC" xmlns:omgdi="http:https://www.omg.org/spec/DD/20100524/DI" xmlns:xsi="http:https://www.w3.org/2001/XMLSchema-instance" exporter="bpmn-js (https://demo.bpmn.io)" exporterVersion="8.2.2" id="sid-38422fae-e03e-43a3-bef4-bd33b32041b2" targetNamespace="http:https://bpmn.io/bpmn">  
		<collaboration id="Collaboration_XYZ123" >    
			<participant id="Participant_XYZ123" name="User 1" />
        </collaboration>              		
	 	</definitions>' 
  • Result:
@prefix instances: <http:https://w3id.org/idpo/instances/> .  
@prefix xsd:   <http:https://www.w3.org/2001/XMLSchema#> .  
@prefix rdfs:  <http:https://www.w3.org/2000/01/rdf-schema#> .  
@prefix bpmn2: <https://www.omg.org/spec/BPMN/2.0#> .  
@prefix ite:   <http:https://w3id.org/sparql-generate/iter/> .  
@prefix fun:   <http:https://w3id.org/sparql-generate/fn/> .  

instances:Collaboration_XYZ123  
        a       bpmn2:Collaboration .  
        
instances:Participant_XYZ123  \
        a           bpmn2:Participant ;  
        bpmn2:name  "User 1" .

About

The Information Delivery Processes Ontology (IDPO) Ontology is defined in under namespace https://w3id.org/idpo#. This repository contains a JAX-RS webservice for converting BPMN-XML files into IDPO instances using SPARQL-Generate.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Languages