Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Modeling » ATL » Transformation from BPEL to BPMN
Transformation from BPEL to BPMN [message #1551539] Wed, 07 January 2015 17:41 Go to next message
Romain Vicente is currently offline Romain VicenteFriend
Messages: 1
Registered: January 2015
Junior Member
Hi!

I'm working on a transformation from BPEL to BPMN. I want to create a BPMN process tag from the BPEL process tag with this rule :

rule process2process {
	from
		proc : BPEL!Process
	to
		definition : BPMN!Definitions (
			id <- 'Definitions_1',
			name <- 'fakenamespace',
			targetNamespace <- proc.targetNamespace,
			typeLanguage <- 'link',
			rootElements <- process
		),
               process : BPMN!Process (
			id <- 'process1',
			name <- proc.name,
			processType <- 'Public'
		)
}


In the ecore file describing BPMN, rootElements wait a RootElement that inherit BaseElement.
process is type Process that also inherit BaseElement
The rule generate :
<bpmn2:Definitions ...>
    <rootElements xsi:type="bpmn2:Process" id="process_1" name="test" processType="Public"/>
  </bpmn2:Definitions>


I do not know how to obtain the tags I want to generate with ATL :
<bpmn2:definitions ...>
  <bpmn2:process id="process_1" name="test" processType="Public">
</bpmn2:definitions>


Could someone help me to resolve this problem?

Thanks,
Romain
Re: Transformation from BPEL to BPMN [message #1700859 is a reply to message #1551539] Tue, 07 July 2015 17:14 Go to previous message
behnaz changizi is currently offline behnaz changiziFriend
Messages: 11
Registered: January 2014
Junior Member
Hey Romain,
I was wondering if you found a solution.
Thanks

[Updated on: Tue, 07 July 2015 17:15]

Report message to a moderator

Previous Topic:Launch UML2OWL on Mars
Next Topic:On which OCL-Specifiacation is ATL based on?
Goto Forum:
  


Current Time: Thu Sep 26 06:08:10 GMT 2024

Powered by FUDForum. Page generated in 0.03394 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top