riddl 0.111 → 0.112

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: af5663795b156a2d01e5e032443482c39f249de5a0567ed3a7efc0f1666351be
4
- data.tar.gz: 3af3fbc9ffd7667c1408d3d07d1f9d4204eb991a570d3523ffc55ee72b3e9890
3
+ metadata.gz: 15d7463d1e607ba87b699d916ddcf25ece52a6e9ca19be153a637748da1c9e87
4
+ data.tar.gz: 455f950f53982fb012bb6d7f0fb11afb66d032f7a9b71233c8c40fd565ecc8a8
5
5
  SHA512:
6
- metadata.gz: 299b50d567fb8ac68c07395a0cdaa25a3a2113378093909e7210f0ce765070b222e49d412b8380107b938de8d5469b42e419958eb80add86daea7fe1916596dc
7
- data.tar.gz: 9cc4cfa4cd46acdc65bb242b7e34a2c2e7b388006cb6f359168df42e00f8f17955ac336264d31ed4e56942a8bd7678484af7ad32fb6c37bb3db0ee961b7a8506
6
+ metadata.gz: 57ce500bdd4a305f8d459f2454ba1b5711c96ead5496ee3960ccf341e1328f145249df5652c8875d4d89dcce35f32c76af8ed38a998f3b9c41ec34760239a979
7
+ data.tar.gz: 8a4e78b08f3fcc79fbfc6ce27233434a769ce341818546fd0eb9c7181101db7820b8da80abe6f299edd11880f5d24a65316951373fff135b1adbf332b5fe4161
@@ -0,0 +1,76 @@
1
+ #!/usr/bin/ruby
2
+ require '../../lib/ruby/riddl/client'
3
+ require 'json'
4
+
5
+ twitter = Riddl::Client.interface("https://api.twitter.com/","twitter.xml")
6
+
7
+ ### Base
8
+ consumer_key = File.read(File.expand_path(File.dirname(__FILE__) + '/.twitter.consumer_key')).strip
9
+ consumer_secret = File.read(File.expand_path(File.dirname(__FILE__) + '/.twitter.consumer_secret')).strip
10
+ file_user_id = File.expand_path(File.dirname(__FILE__) + '/.twitter.user_id')
11
+ file_token = File.expand_path(File.dirname(__FILE__) + '/.twitter.token')
12
+ file_token_secret = File.expand_path(File.dirname(__FILE__) + '/.twitter.token_secret')
13
+
14
+ ### When token and secret already saved, skip this part
15
+ if !File.exists?(file_token) && !File.exists?(file_token_secret)
16
+ ### go to request token resource and set necessary role options
17
+ resource = twitter.resource("/oauth/request_token")
18
+ params = [
19
+ Riddl::Option.new(:consumer_key,consumer_key),
20
+ Riddl::Option.new(:consumer_secret,consumer_secret)
21
+ ]
22
+
23
+ ### simulate request token
24
+ # puts resource.simulate_post(params).read
25
+
26
+ ### get request token and save it to variables
27
+ status, response, headers = resource.post params
28
+ token = response.oauth_token
29
+ token_secret = response.oauth_token_secret
30
+
31
+ ### send user away for authorization
32
+ puts "Authorize at https://twitter.com/oauth/authorize?oauth_token=#{token}"
33
+ print "Insert verifier here: "
34
+ verifier = STDIN.gets.strip # wait for verifier
35
+
36
+ ### exchange the token for an access token and save the results
37
+ resource = twitter.resource("/oauth/access_token")
38
+ status, response, headers = resource.post [
39
+ Riddl::Option.new(:consumer_key,consumer_key),
40
+ Riddl::Option.new(:consumer_secret,consumer_secret),
41
+ Riddl::Option.new(:token,token),
42
+ Riddl::Option.new(:verifier,verifier),
43
+ Riddl::Option.new(:token_secret,token_secret)
44
+ ]
45
+ user_id = response.user_id
46
+ token = response.oauth_token
47
+ token_secret = response.oauth_token_secret
48
+
49
+ File.open(file_user_id,'w'){|f|f.write response.oauth_token}
50
+ File.open(file_token,'w'){|f|f.write response.oauth_token}
51
+ File.open(file_token_secret,'w'){|f|f.write response.oauth_token_secret}
52
+ else
53
+ user_id = File.read(file_user_id).strip
54
+ token = File.read(file_token).strip
55
+ token_secret = File.read(file_token_secret).strip
56
+ end
57
+
58
+ ### Show single tweet
59
+ #tweet = 258251258941554688 # some stuff
60
+ #status, res = twitter.resource("/1.1/statuses/show.json").get [
61
+ # Riddl::Parameter::Simple.new("id",tweet),
62
+ # Riddl::Option.new(:consumer_key,consumer_key),
63
+ # Riddl::Option.new(:consumer_secret,consumer_secret),
64
+ # Riddl::Option.new(:token,token),
65
+ # Riddl::Option.new(:token_secret,token_secret)
66
+ #]
67
+ #puts status
68
+
69
+ ### Show timeline
70
+ status, res = twitter.resource("/1.1/statuses/user_timeline.json").get [
71
+ Riddl::Option.new(:consumer_key,consumer_key),
72
+ Riddl::Option.new(:consumer_secret,consumer_secret),
73
+ Riddl::Option.new(:token,token),
74
+ Riddl::Option.new(:token_secret,token_secret)
75
+ ]
76
+ tweets = JSON::parse(res[0].value.read)
@@ -32,10 +32,10 @@
32
32
 
33
33
  <message name="oauth">
34
34
  <header name="Authorization" type="string"/>
35
- </message>
35
+ </message>
36
36
  <message name="oauth_response">
37
37
  <parameter name="return" mimetype="*" handler="http://riddl.org/ns/handlers/oauth"/>
38
- </message>
38
+ </message>
39
39
 
40
40
  <resource>
41
41
  <resource relative="oauth">
@@ -16,27 +16,27 @@ if !File.exists?(file_token) && !File.exists?(file_token_secret)
16
16
 
17
17
  ### go to request token resource and set necessary role options
18
18
  resource = zotero.resource("/oauth/request")
19
- params = [
19
+ params = [
20
20
  Riddl::Option.new(:consumer_key,consumer_key),
21
21
  Riddl::Option.new(:consumer_secret,consumer_secret)
22
22
  ]
23
-
23
+
24
24
  ### simulate request token
25
25
  # puts resource.simulate_post(params).read
26
-
26
+
27
27
  ### get request token and save it to variables
28
28
  status, response, headers = resource.post params
29
29
  token = response.oauth_token
30
30
  token_secret = response.oauth_token_secret
31
-
31
+
32
32
  ### send user away for authorization
33
33
  puts "Authorize at https://www.zotero.org/oauth/authorize?oauth_token=#{token}"
34
34
  print "Insert verifier here: "
35
35
  verifier = STDIN.gets.strip # wait for verifier
36
-
36
+
37
37
  ### exchange the token for an access token and save the results
38
38
  resource = zotero.resource("/oauth/access")
39
- status, response, headers = resource.post [
39
+ status, response, headers = resource.post [
40
40
  Riddl::Option.new(:consumer_key,consumer_key),
41
41
  Riddl::Option.new(:consumer_secret,consumer_secret),
42
42
  Riddl::Option.new(:token,token),
@@ -58,13 +58,16 @@ end #}}}
58
58
 
59
59
  zotero = Riddl::Client.new("https://api.zotero.org/")
60
60
  status, res = zotero.resource("/groups/62639/collections/X69MNMZX/collections").get [
61
- Riddl::Parameter::Simple.new('key',token,:query)
61
+ Riddl::Parameter::Simple.new('key',token,:query),
62
+ Riddl::Parameter::Simple.new('format',:atom)
62
63
  ]
63
64
 
64
65
  doc = XML::Smart.string(res.first.value.read)
65
66
  doc.register_namespace 'a', 'http://www.w3.org/2005/Atom'
66
67
  doc.register_namespace 'z', 'http://zotero.org/ns/api'
67
68
 
69
+ p 'rrrr'
70
+
68
71
  keys = {}
69
72
  doc.find('//a:entry').each do |e|
70
73
  keys[e.find('string(z:key)')] = e.find('string(a:title)')
@@ -2,367 +2,628 @@
2
2
  <div class="csl-bib-body" style="line-height: 1.35; ">
3
3
  <div class="csl-entry" style="clear: left; ">
4
4
  <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 1em;">[1]</div>
5
- <div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">M. Weidlich, G. Decker, A. Gro&#xDF;kopf, and M. Weske, &#x201C;BPEL to BPMN: The myth of a straight-forward mapping,&#x201D; <i>On the Move to Meaningful Internet Systems: OTM 2008</i>, pp. 265&#x2013;282, 2008.</div>
5
+ <div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">A. Polyvyanyy, J. Vanhatalo, and H. V&#xF6;lzer, &#x201C;Simplified computation and generalization of the refined process structure tree,&#x201D; <i>Web Services and Formal Methods</i>, pp. 25&#x2013;41, 2011, Accessed: Feb. 17, 2013. [Online]. Available: http://www.springerlink.com/index/Q36777U6446L384L.pdf.</div>
6
6
  </div>
7
7
  <div class="csl-entry" style="clear: left; ">
8
8
  <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 1em;">[2]</div>
9
- <div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">J. C. Recker and J. Mendling, &#x201C;On the translation between BPMN and BPEL: Conceptual mismatch between process modeling languages,&#x201D; in <i>The 18th International Conference on Advanced Information Systems Engineering. Proceedings of Workshops and Doctoral Consortium</i>, 2006, pp. 521&#x2013;532.</div>
9
+ <div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">&#x201C;Snapshot.&#x201D; Accessed: Feb. 17, 2013. [Online]. Available: http://link.springer.com/chapter/10.1007%2F978-3-540-88871-0_19?LI=true.</div>
10
10
  </div>
11
11
  <div class="csl-entry" style="clear: left; ">
12
12
  <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 1em;">[3]</div>
13
- <div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">A. Polyvyanyy, J. Vanhatalo, and H. V&#xF6;lzer, &#x201C;Simplified computation and generalization of the refined process structure tree,&#x201D; <i>Web Services and Formal Methods</i>, pp. 25&#x2013;41, 2011.</div>
13
+ <div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">M. Weidlich, G. Decker, A. Gro&#xDF;kopf, and M. Weske, &#x201C;BPEL to BPMN: The myth of a straight-forward mapping,&#x201D; <i>On the Move to Meaningful Internet Systems: OTM 2008</i>, pp. 265&#x2013;282, 2008, Accessed: Feb. 17, 2013. [Online]. Available: http://www.springerlink.com/index/n185p62phr8g74x5.pdf.</div>
14
14
  </div>
15
15
  <div class="csl-entry" style="clear: left; ">
16
16
  <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 1em;">[4]</div>
17
- <div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">J. Vanhatalo, H. V&#xF6;lzer, and J. Koehler, &#x201C;The refined process structure tree,&#x201D; <i>Data &amp; Knowledge Engineering</i>, vol. 68, no. 9, pp. 793&#x2013;818, 2009.</div>
17
+ <div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">&#x201C;Snapshot.&#x201D; Accessed: Feb. 17, 2013. [Online]. Available: http://eprints.qut.edu.au/4637/.</div>
18
+ </div>
19
+ <div class="csl-entry" style="clear: left; ">
20
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 1em;">[5]</div>
21
+ <div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">J. C. Recker and J. Mendling, &#x201C;On the translation between BPMN and BPEL: Conceptual mismatch between process modeling languages,&#x201D; in <i>The 18th International Conference on Advanced Information Systems Engineering. Proceedings of Workshops and Doctoral Consortium</i>, 2006, pp. 521&#x2013;532, Accessed: Feb. 17, 2013. [Online]. Available: http://eprints.qut.edu.au/4637/.</div>
22
+ </div>
23
+ <div class="csl-entry" style="clear: left; ">
24
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 1em;">[6]</div>
25
+ <div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">&#x201C;Snapshot.&#x201D; Accessed: Feb. 17, 2013. [Online]. Available: http://link.springer.com/chapter/10.1007%2F978-3-642-19589-1_2?LI=true.</div>
26
+ </div>
27
+ <div class="csl-entry" style="clear: left; ">
28
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 1em;">[7]</div>
29
+ <div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">&#x201C;Snapshot.&#x201D; Accessed: Feb. 17, 2013. [Online]. Available: http://www.sciencedirect.com/science/article/pii/S0169023X09000330.</div>
30
+ </div>
31
+ <div class="csl-entry" style="clear: left; ">
32
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 1em;">[8]</div>
33
+ <div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">J. Vanhatalo, H. V&#xF6;lzer, and J. Koehler, &#x201C;The refined process structure tree,&#x201D; <i>Data &amp; Knowledge Engineering</i>, vol. 68, no. 9, pp. 793&#x2013;818, 2009, Accessed: Feb. 17, 2013. [Online]. Available: http://www.sciencedirect.com/science/article/pii/S0169023X09000330.</div>
18
34
  </div>
19
35
  </div>
20
36
 
21
37
  <h2>Forecasting & Simulation</h2>
22
38
  <div class="csl-bib-body" style="line-height: 1.35; ">
23
39
  <div class="csl-entry" style="clear: left; ">
24
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 1em;">[1]</div>
25
- <div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">F. J. Damerau, &#x201C;A technique for computer detection and correction of spelling errors,&#x201D; <i>Communications of the ACM</i>, vol. 7, no. 3, pp. 171&#x2013;176, 1964.</div>
40
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[1]</div>
41
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">T. M. McCarthy and S. L. Golicic, &#x201C;Implementing collaborative forecasting to improve supply chain performance,&#x201D; <i>International Journal of Physical Distribution &amp; Logistics Management</i>, vol. 32, no. 6, pp. 431&#x2013;454, Aug. 2002, doi: 10.1108/09600030210437960.</div>
26
42
  </div>
27
43
  <div class="csl-entry" style="clear: left; ">
28
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 1em;">[2]</div>
29
- <div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">T. M. McCarthy and S. L. Golicic, &#x201C;Implementing collaborative forecasting to improve supply chain performance,&#x201D; <i>International Journal of Physical Distribution &amp; Logistics Management</i>, vol. 32, no. 6, pp. 431&#x2013;454, Aug. 2002.</div>
44
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[2]</div>
45
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">F. J. Damerau, &#x201C;A technique for computer detection and correction of spelling errors,&#x201D; <i>Communications of the ACM</i>, vol. 7, no. 3, pp. 171&#x2013;176, 1964, Accessed: Feb. 24, 2013. [Online]. Available: http://dl.acm.org/citation.cfm?id=363994.</div>
30
46
  </div>
31
47
  <div class="csl-entry" style="clear: left; ">
32
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 1em;">[3]</div>
33
- <div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">M. M. Helms, L. P. Ettkin, and S. Chapman, &#x201C;Supply chain forecasting &#x2013; Collaborative forecasting supports supply chain management,&#x201D; <i>Business Process Management Journal</i>, vol. 6, no. 5, pp. 392&#x2013;407, Dec. 2000.</div>
48
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[3]</div>
49
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">M. M. Helms, L. P. Ettkin, and S. Chapman, &#x201C;Supply chain forecasting &#x2013; Collaborative forecasting supports supply chain management,&#x201D; <i>Business Process Management Journal</i>, vol. 6, no. 5, pp. 392&#x2013;407, Dec. 2000, doi: 10.1108/14637150010352408.</div>
34
50
  </div>
35
51
  <div class="csl-entry" style="clear: left; ">
36
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 1em;">[4]</div>
37
- <div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">W. M. P. van der Aalst, &#x201C;Business Process Simulation Revisited,&#x201D; in in <i>Enterprise and Organizational Modeling and Simulation</i>, J. Barjis, Ed. Springer Berlin Heidelberg, 2010, pp. 1&#x2013;14.</div>
52
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[4]</div>
53
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">&#x201C;Calculate Differences between traces, (also between traces of adapted processes.&#x201D; .</div>
38
54
  </div>
39
55
  <div class="csl-entry" style="clear: left; ">
40
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 1em;">[5]</div>
41
- <div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">A. Rozinat, M. T. Wynn, W. M. P. van der Aalst, A. H. M. ter Hofstede, and C. J. Fidge, &#x201C;Workflow simulation for operational decision support,&#x201D; <i>Data &amp; Knowledge Engineering</i>, vol. 68, no. 9, pp. 834&#x2013;850, Sep. 2009.</div>
56
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[5]</div>
57
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">&#x201C;Snapshot.&#x201D; Accessed: Feb. 24, 2013. [Online]. Available: http://dl.acm.org/citation.cfm?id=363994.</div>
42
58
  </div>
43
- </div>
44
-
45
- <h2>Communication Technology</h2>
46
- <div class="csl-bib-body" style="line-height: 1.35; ">
47
59
  <div class="csl-entry" style="clear: left; ">
48
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 1em;">[1]</div>
49
- <div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">A. Barros, G. Decker, M. Dumas, and F. Weber, &#x201C;Correlation Patterns in Service-Oriented Architectures,&#x201D; in <i>Fundamental Approaches to Software Engineering</i>, vol. 4422, M. Dwyer and A. Lopes, Eds. Springer Berlin / Heidelberg, 2007, pp. 245&#x2013;259.</div>
60
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[6]</div>
61
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">&#x201C;Snapshot.&#x201D; Accessed: Jan. 28, 2013. [Online]. Available: http://link.springer.com/chapter/10.1007%2F978-3-642-15723-3_1.</div>
50
62
  </div>
51
63
  <div class="csl-entry" style="clear: left; ">
52
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 1em;">[2]</div>
53
- <div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">JCloud Community, &#x201C;JClouds.&#x201D; .</div>
64
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[7]</div>
65
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">W. M. P. van der Aalst, &#x201C;Business Process Simulation Revisited,&#x201D; in <i>Enterprise and Organizational Modeling and Simulation</i>, J. Barjis, Ed. Springer Berlin Heidelberg, 2010, pp. 1&#x2013;14.</div>
54
66
  </div>
55
67
  <div class="csl-entry" style="clear: left; ">
56
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 1em;">[3]</div>
57
- <div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">J. Wagener, O. Spjuth, E. L. Willighagen, and J. E. Wikberg, &#x201C;XMPP for cloud computing in bioinformatics supporting discovery and invocation of asynchronous web services,&#x201D; <i>BMC Bioinformatics</i>, vol. 10, no. 1, p. 279.</div>
68
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[8]</div>
69
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">&#x201C;ScienceDirect Snapshot.&#x201D; Accessed: Jan. 28, 2013. [Online]. Available: http://www.sciencedirect.com/science/article/pii/S0169023X09000354.</div>
70
+ </div>
71
+ <div class="csl-entry" style="clear: left; ">
72
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[9]</div>
73
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">&#x201C;ScienceDirect Full Text PDF.&#x201D; Accessed: Jan. 28, 2013. [Online]. Available: http://pdn.sciencedirect.com/science?_ob=MiamiImageURL&amp;_cid=271546&amp;_user=464575&amp;_pii=S0169023X09000354&amp;_check=y&amp;_origin=article&amp;_zone=toolbar&amp;_coverDate=2009--30&amp;view=c&amp;originContentFamily=serial&amp;wchp=dGLzVlV-zSkWz&amp;md5=662e337323976f9fc3dcadc77a0a45ca&amp;pid=1-s2.0-S0169023X09000354-main.pdf.</div>
74
+ </div>
75
+ <div class="csl-entry" style="clear: left; ">
76
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[10]</div>
77
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">A. Rozinat, M. T. Wynn, W. M. P. van der Aalst, A. H. M. ter Hofstede, and C. J. Fidge, &#x201C;Workflow simulation for operational decision support,&#x201D; <i>Data &amp; Knowledge Engineering</i>, vol. 68, no. 9, pp. 834&#x2013;850, Sep. 2009, doi: 10.1016/j.datak.2009.02.014.</div>
58
78
  </div>
59
79
  </div>
60
80
 
61
- <h2>Processes and Compliance</h2>
81
+ <h2>Communication Technology</h2>
62
82
  <div class="csl-bib-body" style="line-height: 1.35; ">
63
83
  <div class="csl-entry" style="clear: left; ">
64
84
  <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[1]</div>
65
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">P. Grefen, N. Mehandjiev, G. Kouvas, G. Weichhart, and R. Eshuis, &#x201C;Dynamic business network process management in instant virtual enterprises,&#x201D; <i>Comput. Ind.</i>, vol. 60, no. 2, pp. 86&#x2013;103, Feb. 2009.</div>
85
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">R. Hans, S. Z&#xF6;ller, S. Abels, A. Miede, and R. Steinmetz, &#x201C;Enabling Collaboration in Virtual Manufacturing Enterprises with Cloud Computing,&#x201D; in <i>Proceedings of the 19th Americas Conference on Information Systems (AMCIS 2013)</i>, Chicago, Aug. 2013, pp. 1&#x2013;10.</div>
66
86
  </div>
67
87
  <div class="csl-entry" style="clear: left; ">
68
88
  <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[2]</div>
69
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">M. P. Papazoglou, &#x201C;The Challenges of Service Evolution,&#x201D; in <i>Proceedings of the 20th international conference on Advanced Information Systems Engineering</i>, Berlin, Heidelberg, 2008, pp. 1&#x2013;15.</div>
89
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">A. Barros, G. Decker, M. Dumas, and F. Weber, &#x201C;Correlation Patterns in Service-Oriented Architectures,&#x201D; in <i>Fundamental Approaches to Software Engineering</i>, vol. 4422, M. Dwyer and A. Lopes, Eds. Springer Berlin / Heidelberg, 2007, pp. 245&#x2013;259.</div>
70
90
  </div>
71
91
  <div class="csl-entry" style="clear: left; ">
72
92
  <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[3]</div>
73
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">M. Reichert and T. Bauer, &#x201C;Supporting Ad-Hoc Changes in Distributed Workflow Management Systems,&#x201D; in <i>On the Move to Meaningful Internet Systems 2007: CoopIS, DOA, ODBASE, GADA, and IS</i>, vol. 4803, R. Meersman and Z. Tari, Eds. Berlin, Heidelberg: Springer Berlin Heidelberg, pp. 150&#x2013;168.</div>
93
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">J. Wagener, O. Spjuth, E. L. Willighagen, and J. E. Wikberg, &#x201C;XMPP for cloud computing in bioinformatics supporting discovery and invocation of asynchronous web services,&#x201D; <i>BMC Bioinformatics</i>, vol. 10, no. 1, p. 279, doi: 10.1186/1471-2105-10-279.</div>
74
94
  </div>
75
95
  <div class="csl-entry" style="clear: left; ">
76
96
  <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[4]</div>
77
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">S. Rinderle, M. Reichert, and P. Dadam, &#x201C;Flexible Support of Team Processes by Adaptive Workflow Systems,&#x201D; <i>Distributed and Parallel Databases</i>, Jul-2004. [Online]. Available: http://www.springerlink.com/content/k54776285582p21g/. [Accessed: 01-Feb-2013].</div>
97
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">R. Hans, D. Dahlen, S. Z&#xF6;ller, D. Schuller, and U. Lampe, &#x201C;Enabling Virtual Manufacturing Enterprises with Cloud Computing &#x2013; An Analysis of Criteria for the Selection of Database as a Service Offers,&#x201D; in <i>Advances in Sustainable and Competitive Manufacturing Systems</i>, Porto, Jun. 2013, pp. 427&#x2013;438.</div>
78
98
  </div>
79
99
  <div class="csl-entry" style="clear: left; ">
80
100
  <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[5]</div>
81
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">B. Weber, M. Reichert, W. Wild, and S. Rinderle, &#x201C;Balancing Flexibility and Security in Adaptive Process Management Systems,&#x201D; Nov-2005. [Online]. Available: http://www.springerlink.com/content/d94fx02fwpjxpama/. [Accessed: 01-Feb-2013].</div>
82
101
  </div>
83
102
  <div class="csl-entry" style="clear: left; ">
84
103
  <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[6]</div>
85
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">B. Weber, M. Reichert, W. Wild, and S. Rinderle-Ma, &#x201C;Providing Integrated Life Cycle Support in Process-Aware Information Systems,&#x201D; <i>Int&#x2019;l Journal of Cooperative Information Systems (IJCIS)</i>, Mar-2009. [Online]. Available: http://dbis.eprints.uni-ulm.de/269/. [Accessed: 01-Feb-2013].</div>
104
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">Shamsuzzoha, A. and Helo, P., &#x201C;Virtual enterprise architectural framework: collaboration for small and medium enterprises,&#x201D; in <i>Proceedings of the ASME 2013 International Manufacturing Science and Engineering Conference (MSEC2013)</i>, Madison, Wisconsin, USA, Jun. 2013, pp. 1&#x2013;8.</div>
86
105
  </div>
87
106
  <div class="csl-entry" style="clear: left; ">
88
107
  <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[7]</div>
89
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">M. Weske, &#x201C;Workflow Management Systems: Formal Foundation, Conceptual Design, Implementation Aspects,&#x201D; 2000.</div>
108
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">Hao, Y., Shamsuzzoha, A. and Helo, P., &#x201C;Designing of cloud-based virtual factory information system,&#x201D; in <i>Proceedings of the 23rd International Conference on Flexible Automation &amp; Intelligent Manufacturing (FAIM2013)</i>, Porto, Portugal, Jun. 2013, pp. 415&#x2013;426, [Online]. Available: http://link.springer.com/chapter/10.1007%2F978-3-319-00557-7_34#page-1.</div>
90
109
  </div>
91
110
  <div class="csl-entry" style="clear: left; ">
92
111
  <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[8]</div>
93
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">M. Reichert, S. Rinderle, U. Kreher, and P. Dadam, &#x201C;Adaptive Process Management with ADEPT2,&#x201D; in <i>Proceedings of the 21st International Conference on Data Engineering</i>, Washington, DC, USA, 2005, pp. 1113&#x2013;1114.</div>
112
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">Shamsuzzoha, A., Abels, S. and Helo, P. , &#x201C;Adaptive virtual enterprise process management: perspective of cloud-based data storage,&#x201D; in <i>Proceedings of the 15th International Conference on Enterprise Information Systems (ICEIS 2013)</i>, Angers Loire Valley, France, Jul. 2013, pp. 88&#x2013;94.</div>
94
113
  </div>
95
114
  <div class="csl-entry" style="clear: left; ">
96
115
  <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[9]</div>
97
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">M. Reichert, P. Dadam, and T. Bauer, &#x201C;Dealing with Forward and Backward Jumps in Workflow Management Systems,&#x201D; <i>Informatik - Forschung und Entwicklung</i>, Apr-2004. [Online]. Available: http://www.springerlink.com/content/qg2pxeyb7kqgy2bp/. [Accessed: 01-Feb-2013].</div>
116
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">&#x201C;SpringerLink Snapshot.&#x201D; Accessed: May 14, 2012. [Online]. Available: http://www.springerlink.com/content/g737435n566r6115/abstract/.</div>
98
117
  </div>
99
118
  <div class="csl-entry" style="clear: left; ">
100
119
  <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[10]</div>
101
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">J. Mangler and S. Rinderle-Ma, &#x201C;Rule-Based Synchronization of Process Activities,&#x201D; in <i>2011 IEEE 13th Conference on Commerce and Enterprise Computing (CEC)</i>, 2011, pp. 121&#x2013;128.</div>
120
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">&#x201C;SpringerLink Full Text PDF.&#x201D; Accessed: May 14, 2012. [Online]. Available: http://www.springerlink.com/content/g737435n566r6115/fulltext.pdf.</div>
102
121
  </div>
103
122
  <div class="csl-entry" style="clear: left; ">
104
123
  <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[11]</div>
105
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">G. Stuermer, J. Mangler, and E. Schikuta, &#x201C;Building a modular service oriented workflow engine,&#x201D; in <i>Service-Oriented Computing and Applications (SOCA), 2009 IEEE International Conference on</i>, 2010, pp. 1&#x2013;4.</div>
124
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">&#x201C;JClouds is an open source Java library. The API allows to create&#xA0; portable clou.&#x201D; .</div>
106
125
  </div>
107
126
  <div class="csl-entry" style="clear: left; ">
108
127
  <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[12]</div>
109
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">J. Mangler, G. Stuermer, and E. Schikuta, &#x201C;Cloud Process Execution Engine-Evaluation of the Core Concepts,&#x201D; <i>Arxiv preprint arXiv:1003.3330</i>, 2010.</div>
128
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">JCloud Community, &#x201C;JClouds.&#x201D; [Online]. Available: http://www.jclouds.org/.</div>
110
129
  </div>
130
+ </div>
131
+
132
+ <h2>Processes and Compliance</h2>
133
+ <div class="csl-bib-body" style="line-height: 1.35; ">
111
134
  <div class="csl-entry" style="clear: left; ">
112
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[13]</div>
113
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">M. Jensen and N. Gruschka, &#x201C;Privacy Against the Business Partner: Issues for Realizing End-to-End Confidentiality in Web Service Compositions,&#x201D; in <i>Database and Expert Systems Application, 2009. DEXA&#x2019;09. 20th International Workshop on</i>, 2009, pp. 117&#x2013;121.</div>
135
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[1]</div>
136
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">W. M. P. V. der Aalst, &#x201C;Modeling and Analyzing Interorganizational Workflows,&#x201D; <i>Application of Concurrency to System Design, International Conference on</i>, p. 262, 1998, doi: http://doi.ieeecomputersociety.org/10.1109/CSD.1998.657557.</div>
114
137
  </div>
115
138
  <div class="csl-entry" style="clear: left; ">
116
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[14]</div>
117
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">ILOG, &#x201C;ILOG JRules and IBM MQWF &#x2013; White Paper.&#x201D;</div>
139
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[2]</div>
140
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">M. Montali, M. Pesic, W. M. P. van der Aalst, F. Chesani, P. Mello, and S. Storari, &#x201C;Declarative specification and verification of service choreographiess,&#x201D; <i>ACM Trans. Web</i>, vol. 4, no. 1, pp. 1&#x2013;62, 2010, doi: 10.1145/1658373.1658376.</div>
118
141
  </div>
119
142
  <div class="csl-entry" style="clear: left; ">
120
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[15]</div>
121
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">W. M. P. van der Aalst, N. Lohmann, P. Massuthe, C. Stahl, and K. Wolf, &#x201C;Multiparty Contracts: Agreeing and Implementing Interorganizational Processes,&#x201D; <i>The Computer Journal</i>, vol. 53, no. 1, pp. 90&#x2013;106, Jan. 2010.</div>
143
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[3]</div>
144
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">W. van der Aalst, A. Mooij, C. Stahl, and K. Wolf, &#x201C;Service Interaction: Patterns, Formalization, and Analysis,&#x201D; in <i>Formal Methods for Web Services</i>, 2009, pp. 42&#x2013;88.</div>
122
145
  </div>
123
146
  <div class="csl-entry" style="clear: left; ">
124
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[16]</div>
125
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">S. Rinderle-Ma and M. Leitner, &#x201C;On Evolving Organizational Models without Loosing Control on Authorization Constraints in Web Service Orchestrations,&#x201D; presented at the IEEE Conference on Electronic Commerce, 2010.</div>
147
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[4]</div>
148
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">S. Goedertier and J. Vanthienen, &#x201C;Designing Compliant Business Processes with Obligations and Permissions,&#x201D; in <i>Business Process Management 2006 Workshops</i>, 2006, pp. 5&#x2013;14.</div>
126
149
  </div>
127
150
  <div class="csl-entry" style="clear: left; ">
128
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[17]</div>
129
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">M. Montali, M. Pesic, W. M. P. van der Aalst, F. Chesani, P. Mello, and S. Storari, &#x201C;Declarative specification and verification of service choreographiess,&#x201D; <i>ACM Trans. Web</i>, vol. 4, no. 1, pp. 1&#x2013;62, 2010.</div>
151
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[5]</div>
152
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">S. Rinderle, A. Wombacher, and M. Reichert, &#x201C;Evolution of Process Choreographies in DYCHOR,&#x201D; in <i>Int&#x2019;l Conf. on Cooperative Information Systems</i>, Springer, 2006, pp. 273&#x2013;290.</div>
130
153
  </div>
131
154
  <div class="csl-entry" style="clear: left; ">
132
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[18]</div>
133
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">K. Wolf, &#x201C;Does My Service Have Partners?,&#x201D; in <i>Transactions on Petri Nets and Other Models of Concurrency II</i>, 2009, pp. 152&#x2013;171.</div>
155
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[6]</div>
156
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">J. K&#xFC;ster, K. Ryndina, and H. Gall, &#x201C;Generation of Business Process Models for Object Life Cycle Compliance,&#x201D; in <i>Int&#x2019;l Conference Business Process Management</i>, 2007, pp. 165&#x2013;181.</div>
134
157
  </div>
135
158
  <div class="csl-entry" style="clear: left; ">
136
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[19]</div>
137
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">W. van der Aalst, A. Mooij, C. Stahl, and K. Wolf, &#x201C;Service Interaction: Patterns, Formalization, and Analysis,&#x201D; in <i>Formal Methods for Web Services</i>, 2009, pp. 42&#x2013;88.</div>
159
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[7]</div>
160
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">S. Rinderle, A. Wombacher, and M. Reichert, &#x201C;On the Controlled Evolution of Process Choreographies.,&#x201D; in <i>Int&#x2019;l Conf. on Data Engineering</i>, 2006, p. 124.</div>
138
161
  </div>
139
162
  <div class="csl-entry" style="clear: left; ">
140
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[20]</div>
141
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">Chris McClean, &#x201C;The Forrester Wave<sup>TM</sup>: Enterprise
142
- Governance, Risk, And
143
- Compliance Platforms, Q3 2009,&#x201D; 2009.</div>
163
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[8]</div>
164
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">L. T. Ly, S. Rinderle-Ma, D. Knuplesch, and P. Dadam, &#x201C;Monitoring Business Process Compliance Using Compliance Rule Graphs,&#x201D; in <i>On the Move to Meaningful Internet Systems: OTM 2011</i>, R. Meersman, T. Dillon, P. Herrero, A. Kumar, M. Reichert, L. Qing, B.-C. Ooi, E. Damiani, D. C. Schmidt, J. White, M. Hauswirth, P. Hitzler, and M. Mohania, Eds. Springer Berlin Heidelberg, 2011, pp. 82&#x2013;99.</div>
144
165
  </div>
145
166
  <div class="csl-entry" style="clear: left; ">
146
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[21]</div>
147
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">F. Caldwell, C. Casper, and T. Eid, &#x201C;Magic Quadrant for Enterprise Governance, Risk and Compliance Platforms,&#x201D; Gartner Group, 2009.</div>
167
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[9]</div>
168
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">R. A. Botha and J. H. P. Eloff, &#x201C;Separation of duties for access control enforcement in workflow environments,&#x201D; <i>IBM Systems Journal</i>, vol. 40, no. 3, pp. 666&#x2013;682, 2001, Accessed: Apr. 30, 2010. [Online]. Available: http://portal.acm.org/citation.cfm?id=1017212.</div>
148
169
  </div>
149
170
  <div class="csl-entry" style="clear: left; ">
150
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[22]</div>
151
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">W. van der Aalst, N. Lohmann, P. Massuthe, C. Stahl, and K. Wolf, &#x201C;From Public Views to Private Views &#x2013; Correctness-by-Design for Services,&#x201D; in <i>Web Services and Formal Methods</i>, 2008, pp. 139&#x2013;153.</div>
171
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[10]</div>
172
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">P. Grefen, N. Mehandjiev, G. Kouvas, G. Weichhart, and R. Eshuis, &#x201C;Dynamic business network process management in instant virtual enterprises,&#x201D; <i>Comput. Ind.</i>, vol. 60, no. 2, pp. 86&#x2013;103, Feb. 2009, doi: 10.1016/j.compind.2008.06.006.</div>
152
173
  </div>
153
174
  <div class="csl-entry" style="clear: left; ">
154
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[23]</div>
155
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">W. Reisig, &#x201C;Towards a Theory of Services,&#x201D; in <i>Information Systems and e-Business Technologies</i>, 2008, pp. 271&#x2013;281.</div>
175
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[11]</div>
176
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">Z. Milosevic, A. Josang, T. Dimitrakos, and M. A. Patton, &#x201C;Discretionary Enforcement of Electronic Contracts,&#x201D; 2002.</div>
156
177
  </div>
157
178
  <div class="csl-entry" style="clear: left; ">
158
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[24]</div>
159
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">Emprise, &#x201C;BONAPART Sarbanes-Oxley Analyser,&#x201D; 2008.</div>
179
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[12]</div>
180
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">H. Foster, S. Uchitel, J. Magee, and J. Kramer, &#x201C;Model-Based Analysis of Obligations in Web Service Choreography,&#x201D; in <i>Advanced Int&#x2019;l Conference on Telecommunications and Int&#x2019;l Conference on Internet and Web Applications and Services</i>, 2006, p. 149, doi: http://dx.doi.org/233CE24A-5FFE-42EB-B2F3-E0E6645458FE.</div>
160
181
  </div>
161
182
  <div class="csl-entry" style="clear: left; ">
162
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[25]</div>
163
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">M. Pesic, H. Schonenberg, and W. M. P. van der Aalst, &#x201C;DECLARE: Full Support for Loosely-Structured Processes.,&#x201D; in <i>Int&#x2019;l Enterprise Computing Conference (EDOC'07)</i>, 2007, pp. 287&#x2013;300.</div>
183
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[13]</div>
184
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">D. Grigori, F. Casati, M. Castellanos, U. Dayal, M. Sayal, and M.-C. Shan, &#x201C;Business Process Intelligence,&#x201D; <i>Computers in Industry</i>, vol. 53, no. 3, pp. 321&#x2013;343, Apr. 2004, doi: 10.1016/j.compind.2003.10.007.</div>
164
185
  </div>
165
186
  <div class="csl-entry" style="clear: left; ">
166
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[26]</div>
167
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">M. Peleg, P. Soffer, and J. Ghattas, &#x201C;Mining Process Execution and Outcomes &#x2013; Position Paper,&#x201D; in <i>BPM&#xA0; &#x2019;07 Workshops</i>, 2007.</div>
187
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[14]</div>
188
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">S. Rinderle, M. Reichert, and P. Dadam, &#x201C;Flexible Support of Team Processes by Adaptive Workflow Systems,&#x201D; <i>Distributed and Parallel Databases</i>, Jul. 2004. http://www.springerlink.com/content/k54776285582p21g/ (accessed Feb. 01, 2013).</div>
168
189
  </div>
169
190
  <div class="csl-entry" style="clear: left; ">
170
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[27]</div>
171
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">J. Yu, T. P. Manh, J. Hand, and Y. Jin, &#x201C;Pattern-based Property Specification and Verification for Service Composition,&#x201D; Swinburne University of Technology, CeCSES Report SUT.CeCSES-TR010, 2006.</div>
191
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[15]</div>
192
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">S. Rinderle, A. Wombacher, and M. Reichert, &#x201C;Evolution of Process Choreographies in DYCHOR,&#x201D; in <i>Proc. CoopIS&#x2019;06</i>, 2006, pp. 273&#x2013;290.</div>
172
193
  </div>
173
194
  <div class="csl-entry" style="clear: left; ">
174
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[28]</div>
175
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">S. Rinderle, A. Wombacher, and M. Reichert, &#x201C;On the Controlled Evolution of Process Choreographies.,&#x201D; in <i>Int&#x2019;l Conf. on Data Engineering</i>, 2006, p. 124.</div>
195
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[16]</div>
196
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">B. Weber, M. Reichert, W. Wild, and S. Rinderle-Ma, &#x201C;Providing Integrated Life Cycle Support in Process-Aware Information Systems,&#x201D; <i>Int&#x2019;l Journal of Cooperative Information Systems (IJCIS)</i>, Mar. 2009. http://dbis.eprints.uni-ulm.de/269/ (accessed Feb. 01, 2013).</div>
176
197
  </div>
177
198
  <div class="csl-entry" style="clear: left; ">
178
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[29]</div>
179
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">S. Rinderle, A. Wombacher, and M. Reichert, &#x201C;Evolution of Process Choreographies in DYCHOR,&#x201D; in <i>Proc. CoopIS&#x2019;06</i>, 2006, pp. 273&#x2013;290.</div>
199
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[17]</div>
200
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">C. Heinlein, &#x201C;Workflow and Process Synchronization with Interaction Expressions and Graphs,&#x201D; in <i>Proceedings of the 17th International Conference on Data Engineering</i>, Washington, DC, USA, 2001, pp. 243&#x2013;252.</div>
180
201
  </div>
181
202
  <div class="csl-entry" style="clear: left; ">
182
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[30]</div>
183
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">L. Ly, S. Rinderle, and P. Dadam, &#x201C;Semantic Correctness in Adaptive Process Management Systems,&#x201D; in <i>Business Process Management</i>, 2006, vol. 02, pp. 193&#x2013;208.</div>
203
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[18]</div>
204
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">C. Giblin, S. M&#xFC;ller, and B. Pfitzmann, &#x201C;From Regulatory Policies to Event Monitoring Rules: Towards Model-Driven Compliance Automation,&#x201D; IBM Research GmbH, Research Report RZ-3662, 2006.</div>
184
205
  </div>
185
206
  <div class="csl-entry" style="clear: left; ">
186
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[31]</div>
187
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">S. Goedertier and J. Vanthienen, &#x201C;Designing Compliant Business Processes with Obligations and Permissions,&#x201D; in <i>Business Process Management 2006 Workshops</i>, 2006, pp. 5&#x2013;14.</div>
207
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[19]</div>
208
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">D. F&#xF6;tsch, E. Pulverm&#xFC;ller, and W. Rossak, &#x201C;Modeling and Verifying Workflow-based Regulations,&#x201D; 2006.</div>
188
209
  </div>
189
210
  <div class="csl-entry" style="clear: left; ">
190
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[32]</div>
191
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">C. Giblin, S. M&#xFC;ller, and B. Pfitzmann, &#x201C;From Regulatory Policies to Event Monitoring Rules: Towards Model-Driven Compliance Automation,&#x201D; IBM Research GmbH, Research Report RZ-3662, 2006.</div>
211
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[20]</div>
212
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">K. Namiri and N. Stojanovic, &#x201C;Pattern-Based Design and Validation of Business Process Compliance,&#x201D; in <i>Int&#x2019; OTM Conferences 2007, Part I</i>, 2007, vol. 4803, pp. 59&#x2013;76.</div>
192
213
  </div>
193
214
  <div class="csl-entry" style="clear: left; ">
194
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[33]</div>
195
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">D. F&#xF6;tsch, E. Pulverm&#xFC;ller, and W. Rossak, &#x201C;Modeling and Verifying Workflow-based Regulations,&#x201D; in <i>Workshop on Regulations Modelling and their Validation and Verification</i>, 2006.</div>
215
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[21]</div>
216
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">H. Davulcu, M. Kifer, C. R. Ramakrishnan, and I. V. Ramakrishnan, &#x201C;Logic Based Modeling and Analysis of Workflows,&#x201D; in <i>Int&#x2019;l Conference Principles of Database Systems</i>, 1998, pp. 25&#x2013;33.</div>
196
217
  </div>
197
218
  <div class="csl-entry" style="clear: left; ">
198
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[34]</div>
199
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">H. Foster, S. Uchitel, J. Magee, and J. Kramer, &#x201C;Model-Based Analysis of Obligations in Web Service Choreography,&#x201D; in <i>Advanced Int&#x2019;l Conference on Telecommunications and Int'l Conference on Internet and Web Applications and Services</i>, 2006, p. 149.</div>
219
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[22]</div>
220
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">B. Weber, M. Reichert, and S. Rinderle-Ma, &#x201C;Change Patterns and Change Support Features - Enhancing Flexibility in Process-Aware Information Systems.,&#x201D; <i>Data and Knowledge Engineering</i>, vol. 66, no. 3, pp. 438&#x2013;466, 2008.</div>
200
221
  </div>
201
222
  <div class="csl-entry" style="clear: left; ">
202
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[35]</div>
203
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">G. Goldszmidt, J. Joseph, and N. Sachdeva, &#x201C;On demand business process life cycle, Part 6: Apply customization policies and rules,&#x201D; IBM, 2005.</div>
223
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[23]</div>
224
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">A. K. Ghose and G. Koliadis, &#x201C;Auditing Business Process Compliance,&#x201D; Faculty of Informatics, University of Wollongong, 2007.</div>
204
225
  </div>
205
226
  <div class="csl-entry" style="clear: left; ">
206
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[36]</div>
207
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">S. Rinderle, M. Reichert, and P. Dadam, &#x201C;Correctness Criteria for Dynamic Changes in Workflow Systems &#x2013; A Survey.,&#x201D; <i>Data and Knowledge Engineering</i>, vol. 50, no. 1, pp. 9&#x2013;34, 2004.</div>
227
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[24]</div>
228
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">L. Ly, S. Rinderle, and P. Dadam, &#x201C;Semantic Correctness in Adaptive Process Management Systems,&#x201D; in <i>Business Process Management</i>, 2006, vol. 02, pp. 193&#x2013;208.</div>
208
229
  </div>
209
230
  <div class="csl-entry" style="clear: left; ">
210
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[37]</div>
211
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">W. M. P. van der Aalst, &#x201C;Inheritance of Interorganizational Workflows to Enable Business-to-Business E-Commerce,&#x201D; <i>Electronic Commerce Research</i>, vol. 2, no. 3, pp. 195&#x2013;231, Jul. 2002.</div>
231
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[25]</div>
232
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">WenAn Tan, Weiming Shen, Lida Xu, Bosheng Zhou, and Ling Li, &#x201C;A Business Process Intelligence System for Enterprise Process Performance Management,&#x201D; <i>IEEE Transactions on Systems, Man, and Cybernetics, Part C: Applications and Reviews</i>, vol. 38, no. 6, pp. 745&#x2013;756, Nov. 2008, doi: 10.1109/TSMCC.2008.2001571.</div>
212
233
  </div>
213
234
  <div class="csl-entry" style="clear: left; ">
214
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[38]</div>
215
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">Z. Milosevic, A. Josang, T. Dimitrakos, and M. A. Patton, &#x201C;Discretionary Enforcement of Electronic Contracts,&#x201D; in <i>Enterprise Computing</i>, 2002.</div>
235
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[26]</div>
236
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">M. Weidlich, H. Ziekow, J. Mendling, O. G&#xFC;nther, M. Weske, and N. Desai, &#x201C;Event-based monitoring of process execution violations,&#x201D; in <i>Business Process Management</i>, Springer, 2011, pp. 182&#x2013;198.</div>
216
237
  </div>
217
238
  <div class="csl-entry" style="clear: left; ">
218
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[39]</div>
219
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">R. A. Botha and J. H. P. Eloff, &#x201C;Separation of duties for access control enforcement in workflow environments,&#x201D; <i>IBM Systems Journal</i>, vol. 40, no. 3, pp. 666&#x2013;682, 2001.</div>
239
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[27]</div>
240
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">W. W. Eckerson, <i>Performance Dashboards: Measuring, Monitoring, and Managing Your Business</i>. John Wiley &amp; Sons, 2010.</div>
220
241
  </div>
221
242
  <div class="csl-entry" style="clear: left; ">
222
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[40]</div>
223
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">J. van den Heuvel and H. Weigand, &#x201C;Cross-Organizational Workflow Integration using Contracts,&#x201D; in <i>Int&#x2019;l Business Object Workshop</i>, 2000.</div>
243
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[28]</div>
244
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">L. T. Ly, F. M. Maggi, M. Montali, S. Rinderle-Ma, and W. M. P. van der Aalst, &#x201C;A Framework for the Systematic Comparison and Evaluation of Compliance Monitoring Approaches,&#x201D; in <i>Enterprise Distributed Object Computing Conference (EDOC), 2013 17th IEEE International</i>, 2013, pp. 7&#x2013;16, doi: 10.1109/EDOC.2013.11.</div>
224
245
  </div>
225
246
  <div class="csl-entry" style="clear: left; ">
226
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[41]</div>
227
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">W. V. D. Aalst, &#x201C;Loosely coupled interorganizational workflows: Modeling and analyzing workflows crossing organizational boundaries,&#x201D; <i>Information and Management</i>, vol. 37, pp. 67&#x2013;75, 2000.</div>
247
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[29]</div>
248
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">&#x201C;Google Books Link.&#x201D; Accessed: Jan. 25, 2013. [Online]. Available: http://books.google.at/books?id=daiXfV1jcakC.</div>
228
249
  </div>
229
250
  <div class="csl-entry" style="clear: left; ">
230
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[42]</div>
231
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">E. Bertino, E. Ferrari, and V. Alturi, &#x201C;The Specification and Enforcement of Authorization Constraints in WFMS.,&#x201D; <i>ACM Transactions on Information and System Security</i>, vol. 2, no. 1, pp. 65&#x2013;104, 1999.</div>
251
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[30]</div>
252
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">&#x201C;Snapshot.&#x201D; Accessed: Aug. 06, 2013. [Online]. Available: http://link.springer.com/chapter/10.1007/978-3-642-25109-2_7.</div>
232
253
  </div>
233
254
  <div class="csl-entry" style="clear: left; ">
234
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[43]</div>
235
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">W. M. P. van der Aalst, &#x201C;Interorganizational Workflows: An Approach based on Message Sequence Charts and Petri Nets,&#x201D; <i>Systems Analysis - Modeling - Simulation</i>, vol. 34, no. 3, pp. 335&#x2013;367, 1999.</div>
255
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[31]</div>
256
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">&#x201C;Full Text PDF.&#x201D; Accessed: Aug. 06, 2013. [Online]. Available: http://link.springer.com/content/pdf/10.1007%2F978-3-642-25109-2_7.pdf.</div>
236
257
  </div>
237
258
  <div class="csl-entry" style="clear: left; ">
238
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[44]</div>
239
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">H. Davulcu, M. Kifer, C. R. Ramakrishnan, and I. V. Ramakrishnan, &#x201C;Logic Based Modeling and Analysis of Workflows,&#x201D; in <i>Int&#x2019;l Conference Principles of Database Systems</i>, 1998, pp. 25&#x2013;33.</div>
259
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[32]</div>
260
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">&#x201C;IEEE Xplore Abstract Record.&#x201D; Accessed: Mar. 16, 2014. [Online]. Available: http://ieeexplore.ieee.org/xpl/login.jsp?tp=&amp;arnumber=6658259&amp;url=http%3A%2F%2Fieeexplore.ieee.org%2Fiel7%2F6657190%2F6658245%2F06658259.pdf%3Farnumber%3D6658259.</div>
240
261
  </div>
241
262
  <div class="csl-entry" style="clear: left; ">
242
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[45]</div>
243
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">W. M. P. V. der Aalst, &#x201C;Modeling and Analyzing Interorganizational Workflows,&#x201D; <i>Application of Concurrency to System Design, International Conference on</i>, p. 262, 1998.</div>
263
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[33]</div>
264
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">&#x201C;ScienceDirect Snapshot.&#x201D; Accessed: Feb. 14, 2012. [Online]. Available: http://www.sciencedirect.com/science/article/pii/S0166361503001994.</div>
244
265
  </div>
245
266
  <div class="csl-entry" style="clear: left; ">
246
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[46]</div>
247
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">R. A. Frosch and N. E. Gallopoulos, &#x201C;Strategies for manufacturing,&#x201D; <i>Scientific American</i>, vol. 261, no. 3, pp. 144&#x2013;152, 1989.</div>
267
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[34]</div>
268
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">&#x201C;ScienceDirect Full Text PDF.&#x201D; Accessed: Feb. 14, 2012. [Online]. Available: http://www.sciencedirect.com/science?_ob=MiamiImageURL&amp;_cid=271439&amp;_user=464575&amp;_pii=S0166361503001994&amp;_check=y&amp;_origin=article&amp;_zone=toolbar&amp;_coverDate=30-Apr-2004&amp;view=c&amp;originContentFamily=serial&amp;wchp=dGLzVlV-zSkzV&amp;md5=71e0eca272aa0d0d066d852de9ed1a66/1-s2.0-S0166361503001994-main.pdf.</div>
269
+ </div>
270
+ <div class="csl-entry" style="clear: left; ">
271
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[35]</div>
272
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">&#x201C;IEEE Xplore Full Text PDF.&#x201D; Accessed: Feb. 14, 2012. [Online]. Available: http://ieeexplore.ieee.org/ielx5/5326/4663233/04633624.pdf?tp=&amp;arnumber=4633624&amp;isnumber=4663233.</div>
273
+ </div>
274
+ <div class="csl-entry" style="clear: left; ">
275
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[36]</div>
276
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">S. Kabicher-Fuchs, J. Mangler, and S. Rinderle-Ma, &#x201C;Experience Breeding in Process-Aware Information Systems,&#x201D; in <i>Advanced Information Systems Engineering</i>, C. Salinesi, M. C. Norrie, and &#xD3;. Pastor, Eds. Springer Berlin Heidelberg, 2013, pp. 594&#x2013;609.</div>
277
+ </div>
278
+ <div class="csl-entry" style="clear: left; ">
279
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[37]</div>
280
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">&#x201C;Full Text PDF.&#x201D; Accessed: Jan. 14, 2014. [Online]. Available: http://link.springer.com/content/pdf/10.1007%2F978-3-642-38709-8_38.pdf.</div>
281
+ </div>
282
+ <div class="csl-entry" style="clear: left; ">
283
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[38]</div>
284
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">&#x201C;Snapshot.&#x201D; Accessed: Jan. 14, 2014. [Online]. Available: http://link.springer.com/chapter/10.1007%2F978-3-642-38709-8_38.</div>
285
+ </div>
286
+ <div class="csl-entry" style="clear: left; ">
287
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[39]</div>
288
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">K. Wolf, &#x201C;Does My Service Have Partners?,&#x201D; in <i>Transactions on Petri Nets and Other Models of Concurrency II</i>, 2009, pp. 152&#x2013;171.</div>
289
+ </div>
290
+ <div class="csl-entry" style="clear: left; ">
291
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[40]</div>
292
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">J. Mangler and S. Rinderle-Ma, &#x201C;Rule-Based Synchronization of Process Activities,&#x201D; in <i>2011 IEEE 13th Conference on Commerce and Enterprise Computing (CEC)</i>, Sep. 2011, pp. 121&#x2013;128, doi: 10.1109/CEC.2011.23.</div>
293
+ </div>
294
+ <div class="csl-entry" style="clear: left; ">
295
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[41]</div>
296
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">W. van der Aalst, H. de Beer, and B. van Dongen, &#x201C;Process Mining and Verification of Properties: An Approach based on Temporal Logic,&#x201D; in <i>Int&#x2019;l OnTheMove Conferences</i>, 2005, vol. 3761, pp. 130&#x2013;147.</div>
248
297
  </div>
249
298
  <div class="csl-entry" style="clear: left; ">
250
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[47]</div>
251
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">ProSTEP iViP, &#x201C;Collaborative Project Management&#xA0; RECOMMENDATION
252
- Collaborative Project Management (CPM)
253
- Reference Model;,&#x201D; PSI 1-1 Version 3.0.</div>
299
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[42]</div>
300
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">R. A. Frosch and N. E. Gallopoulos, &#x201C;Strategies for manufacturing,&#x201D; <i>Scientific American</i>, vol. 261, no. 3, pp. 144&#x2013;152, 1989.</div>
254
301
  </div>
255
302
  <div class="csl-entry" style="clear: left; ">
256
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[48]</div>
257
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">B. Weber, M. Reichert, and S. Rinderle-Ma, &#x201C;Change Patterns and Change Support Features - Enhancing Flexibility in Process-Aware Information Systems.,&#x201D; <i>Data and Knowledge Engineering</i>, vol. 66, no. 3, pp. 438&#x2013;466, 2008.</div>
303
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[43]</div>
304
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">A. Marchetti, <i>Sarbanes-Oxley Ongoing Compliance Guide.</i> Parson Consulting, 2007.</div>
258
305
  </div>
259
306
  <div class="csl-entry" style="clear: left; ">
260
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[49]</div>
261
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">H. Schonenberg, R. Mans, N. Russell, N. Mulyar, and W. Aalst, &#x201C;Process Flexibility: A Survey of Contemporary Approaches,&#x201D; in <i>Advances in Enterprise Engineering I</i>, 2008, pp. 16&#x2013;30.</div>
307
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[44]</div>
308
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">S. Rinderle-Ma and M. Leitner, &#x201C;On Evolving Organizational Models without Loosing Control on Authorization Constraints in Web Service Orchestrations,&#x201D; presented at the IEEE Conference on Electronic Commerce, 2010.</div>
262
309
  </div>
263
310
  <div class="csl-entry" style="clear: left; ">
264
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[50]</div>
265
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">E. M. Kharbili, S. Stein, I. Markovic, and E. Pulverm&#xFC;ller, &#x201C;Towards a Framework for Semantic Business Process Compliance Management,&#x201D; in <i>Int&#x2019;l Workshop of Governance, Risk, and Compliance in Information Systems</i>, 2008.</div>
311
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[45]</div>
312
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">B. Weber, M. Reichert, W. Wild, and S. Rinderle, &#x201C;Balancing Flexibility and Security in Adaptive Process Management Systems,&#x201D; Nov. 2005. http://www.springerlink.com/content/d94fx02fwpjxpama/ (accessed Feb. 01, 2013).</div>
266
313
  </div>
267
314
  <div class="csl-entry" style="clear: left; ">
268
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[51]</div>
269
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">D. Karagiannis, &#x201C;A Business Process-Based Modelling Extension for Regulatory Compliance.,&#x201D; presented at the Multikonferenz Wirtschaftsinformatik, 2008.</div>
315
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[46]</div>
316
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">M. Alberti <i>et al.</i>, &#x201C;Expressing and Verifying Business Contracts with Abductive,&#x201D; in <i>Int&#x2019;l Conference Normative Multi-agent Systems</i>, 2007.</div>
270
317
  </div>
271
318
  <div class="csl-entry" style="clear: left; ">
272
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[52]</div>
273
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">J. Eder and A. Tahamtan, &#x201C;Temporal Conformance of Federated Choreographies,&#x201D; in <i>Database and Expert Systems Applications</i>, 2008, pp. 668&#x2013;675.</div>
319
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[47]</div>
320
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">ILOG, &#x201C;ILOG JRules and IBM MQWF &#x2013; White Paper.&#x201D;</div>
274
321
  </div>
275
322
  <div class="csl-entry" style="clear: left; ">
276
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[53]</div>
277
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">K. Namiri and N. Stojanovic, &#x201C;Pattern-Based Design and Validation of Business Process Compliance,&#x201D; in <i>Int&#x2019; OTM Conferences 2007, Part I</i>, 2007, vol. 4803, pp. 59&#x2013;76.</div>
323
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[48]</div>
324
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">J. Mangler, G. Stuermer, and E. Schikuta, &#x201C;Cloud Process Execution Engine-Evaluation of the Core Concepts,&#x201D; <i>Arxiv preprint arXiv:1003.3330</i>, 2010.</div>
325
+ </div>
326
+ <div class="csl-entry" style="clear: left; ">
327
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[49]</div>
328
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">J. van den Heuvel and H. Weigand, &#x201C;Cross-Organizational Workflow Integration using Contracts,&#x201D; 2000.</div>
329
+ </div>
330
+ <div class="csl-entry" style="clear: left; ">
331
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[50]</div>
332
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">J. Pflug and S. Rinderle-Ma, &#x201C;Dynamic Instance Queuing in Process-Aware Information Systems,&#x201D; USA, 2013, [Online]. Available: http://eprints.cs.univie.ac.at/3558/.</div>
333
+ </div>
334
+ <div class="csl-entry" style="clear: left; ">
335
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[51]</div>
336
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">G. Stuermer, J. Mangler, and E. Schikuta, &#x201C;Building a modular service oriented workflow engine,&#x201D; in <i>Service-Oriented Computing and Applications (SOCA), 2009 IEEE International Conference on</i>, 2010, pp. 1&#x2013;4.</div>
337
+ </div>
338
+ <div class="csl-entry" style="clear: left; ">
339
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[52]</div>
340
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">J. Eder and A. Tahamtan, &#x201C;Temporal Conformance of Federated Choreographies,&#x201D; in <i>Database and Expert Systems Applications</i>, 2008, pp. 668&#x2013;675.</div>
341
+ </div>
342
+ <div class="csl-entry" style="clear: left; ">
343
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[53]</div>
344
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">A. F&#xF6;rster, G. Engels, T. Schattkowsky, and R. V. der Straeten, &#x201C;Verification of Business Process Quality Constraints Based on Visual Process Patterns,&#x201D; 2007.</div>
345
+ </div>
346
+ <div class="csl-entry" style="clear: left; ">
347
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[54]</div>
348
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">ProSTEP iViP, &#x201C;Collaborative Project Management&#xA0; RECOMMENDATION Collaborative Project Management (CPM) Reference Model;,&#x201D; PSI 1-1 Version 3.0.</div>
349
+ </div>
350
+ <div class="csl-entry" style="clear: left; ">
351
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[55]</div>
352
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">M. Leitner, J. Mangler, and S. Rinderle-Ma, &#x201C;SPRINT- Responsibilities: Design and Development of Security Policies in Process-aware Information Systems,&#x201D; <i>Journal of Wireless Mobile Networks, Ubiquitous Computing, and Dependable Applications (JoWUA)</i>, vol. 2, no. 4, pp. 1&#x2013;24, Dec. 2011.</div>
353
+ </div>
354
+ <div class="csl-entry" style="clear: left; ">
355
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[56]</div>
356
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">W. M. P. van der Aalst, &#x201C;Interorganizational Workflows: An Approach based on Message Sequence Charts and Petri Nets,&#x201D; <i>Systems Analysis - Modeling - Simulation</i>, vol. 34, no. 3, pp. 335&#x2013;367, 1999.</div>
357
+ </div>
358
+ <div class="csl-entry" style="clear: left; ">
359
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[57]</div>
360
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">IDS Scheer, &#x201C;Governance, Risk and Compliance Management with ARIS,&#x201D; 2007.</div>
361
+ </div>
362
+ <div class="csl-entry" style="clear: left; ">
363
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[58]</div>
364
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">T. Hildebrandt, &#x201C;Towards Enhancing Business Process Monitoring with Sonification,&#x201D; Berlin, Germany, Aug. 2013, [Online]. Available: http://eprints.cs.univie.ac.at/3756/.</div>
365
+ </div>
366
+ <div class="csl-entry" style="clear: left; ">
367
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[59]</div>
368
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">Emprise, &#x201C;BONAPART Sarbanes-Oxley Analyser,&#x201D; 2008.</div>
369
+ </div>
370
+ <div class="csl-entry" style="clear: left; ">
371
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[60]</div>
372
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">M. Peleg, P. Soffer, and J. Ghattas, &#x201C;Mining Process Execution and Outcomes &#x2013; Position Paper,&#x201D; 2007.</div>
373
+ </div>
374
+ <div class="csl-entry" style="clear: left; ">
375
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[61]</div>
376
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">Shamsuzzoha, A., Ferreira, F., Azevedo, A. and Helo, P., &#x201C;Business Process Monitoring and Management in Virtual Enterprise through Interactive User Interface Layer,&#x201D; in <i>Proceedings of the 23rd International Conference on Flexible Automation &amp; Intelligent Manufacturing (FAIM2013)</i>, Porto, Portugal, Jun. 2013, pp. 451&#x2013;464.</div>
377
+ </div>
378
+ <div class="csl-entry" style="clear: left; ">
379
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[62]</div>
380
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">T. Hildebrandt and S. Rinderle-Ma, &#x201C;Toward a Sonification Concept for Business Process Monitoring,&#x201D; in <i>19th International Conference on Auditory Display (ICAD 2013)</i>, Lodz, Poland, Jul. 2013, pp. 323&#x2013;330, [Online]. Available: http://eprints.cs.univie.ac.at/3729/.</div>
381
+ </div>
382
+ <div class="csl-entry" style="clear: left; ">
383
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[63]</div>
384
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">M. P. Papazoglou, &#x201C;The Challenges of Service Evolution,&#x201D; in <i>Proceedings of the 20th international conference on Advanced Information Systems Engineering</i>, Berlin, Heidelberg, 2008, pp. 1&#x2013;15, doi: 10.1007/978-3-540-69534-9_1.</div>
385
+ </div>
386
+ <div class="csl-entry" style="clear: left; ">
387
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[64]</div>
388
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">&#x201C;Supporting Ad-hoc Changes in Distributed Workflow Management Systems. - UTpublications.&#x201D; Accessed: Feb. 01, 2013. [Online]. Available: http://doc.utwente.nl/61967/.</div>
389
+ </div>
390
+ <div class="csl-entry" style="clear: left; ">
391
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[65]</div>
392
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">M. Reichert and T. Bauer, &#x201C;Supporting Ad-Hoc Changes in Distributed Workflow Management Systems,&#x201D; in <i>On the Move to Meaningful Internet Systems 2007: CoopIS, DOA, ODBASE, GADA, and IS</i>, vol. 4803, R. Meersman and Z. Tari, Eds. Berlin, Heidelberg: Springer Berlin Heidelberg, pp. 150&#x2013;168.</div>
393
+ </div>
394
+ <div class="csl-entry" style="clear: left; ">
395
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[66]</div>
396
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">&#x201C;Full Text PDF.&#x201D; Accessed: Feb. 01, 2013. [Online]. Available: http://dbis.eprints.uni-ulm.de/165/1/RRD04.pdf.</div>
397
+ </div>
398
+ <div class="csl-entry" style="clear: left; ">
399
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[67]</div>
400
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">&#x201C;Snapshot.&#x201D; Accessed: Feb. 01, 2013. [Online]. Available: http://dbis.eprints.uni-ulm.de/165/.</div>
401
+ </div>
402
+ <div class="csl-entry" style="clear: left; ">
403
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[68]</div>
404
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">&#x201C;Full Text PDF.&#x201D; Accessed: Feb. 01, 2013. [Online]. Available: http://dbis.eprints.uni-ulm.de/143/1/WRWR05a.pdf.</div>
405
+ </div>
406
+ <div class="csl-entry" style="clear: left; ">
407
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[69]</div>
408
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">&#x201C;Snapshot.&#x201D; Accessed: Feb. 01, 2013. [Online]. Available: http://dbis.eprints.uni-ulm.de/143/.</div>
409
+ </div>
410
+ <div class="csl-entry" style="clear: left; ">
411
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[70]</div>
412
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">&#x201C;Full Text PDF.&#x201D; Accessed: Feb. 01, 2013. [Online]. Available: http://dbis.eprints.uni-ulm.de/269/1/IJCIS_Web.pdf.</div>
413
+ </div>
414
+ <div class="csl-entry" style="clear: left; ">
415
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[71]</div>
416
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">&#x201C;Snapshot.&#x201D; Accessed: Feb. 01, 2013. [Online]. Available: http://dbis.eprints.uni-ulm.de/269/.</div>
417
+ </div>
418
+ <div class="csl-entry" style="clear: left; ">
419
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[72]</div>
420
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">M. Weske, &#x201C;Workflow Management Systems: Formal Foundation, Conceptual Design, Implementation Aspects,&#x201D; 2000, Accessed: Feb. 01, 2013. [Online]. Available: http://bpt.hpi.uni-potsdam.de/lib/papers/habil.pdf.</div>
421
+ </div>
422
+ <div class="csl-entry" style="clear: left; ">
423
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[73]</div>
424
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">M. Reichert, S. Rinderle, U. Kreher, and P. Dadam, &#x201C;Adaptive Process Management with ADEPT2,&#x201D; in <i>Proceedings of the 21st International Conference on Data Engineering</i>, Washington, DC, USA, 2005, pp. 1113&#x2013;1114, doi: 10.1109/ICDE.2005.17.</div>
425
+ </div>
426
+ <div class="csl-entry" style="clear: left; ">
427
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[74]</div>
428
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">&#x201C;Full Text PDF.&#x201D; Accessed: Feb. 01, 2013. [Online]. Available: http://dbis.eprints.uni-ulm.de/163/1/RDB04.pdf.</div>
429
+ </div>
430
+ <div class="csl-entry" style="clear: left; ">
431
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[75]</div>
432
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">M. Reichert, P. Dadam, and T. Bauer, &#x201C;Dealing with Forward and Backward Jumps in Workflow Management Systems,&#x201D; <i>Informatik - Forschung und Entwicklung</i>, Apr. 2004. http://www.springerlink.com/content/qg2pxeyb7kqgy2bp/ (accessed Feb. 01, 2013).</div>
433
+ </div>
434
+ <div class="csl-entry" style="clear: left; ">
435
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[76]</div>
436
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">&#x201C;Snapshot.&#x201D; Accessed: Feb. 01, 2013. [Online]. Available: http://dbis.eprints.uni-ulm.de/163/.</div>
437
+ </div>
438
+ <div class="csl-entry" style="clear: left; ">
439
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[77]</div>
440
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">M. Leitner, J. Mangler, and S. Rinderle-Ma, &#x201C;Definition and Enactment of Instance-spanning Process Constraints,&#x201D; presented at the WISE, Nov. 2012.</div>
441
+ </div>
442
+ <div class="csl-entry" style="clear: left; ">
443
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[78]</div>
444
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">&#x201C;IEEE Xplore Abstract Record.&#x201D; Accessed: Mar. 21, 2012. [Online]. Available: http://ieeexplore.ieee.org/xpls/abs_all.jsp?arnumber=6046963.</div>
445
+ </div>
446
+ <div class="csl-entry" style="clear: left; ">
447
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[79]</div>
448
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">W. M. P. van der Aalst, N. Lohmann, P. Massuthe, C. Stahl, and K. Wolf, &#x201C;Multiparty Contracts: Agreeing and Implementing Interorganizational Processes,&#x201D; <i>The Computer Journal</i>, vol. 53, no. 1, pp. 90&#x2013;106, Jan. 2010, doi: 10.1093/comjnl/bxn064.</div>
449
+ </div>
450
+ <div class="csl-entry" style="clear: left; ">
451
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[80]</div>
452
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">&#x201C;process type level / inter-process coordination formal description on how inter.&#x201D; .</div>
453
+ </div>
454
+ <div class="csl-entry" style="clear: left; ">
455
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[81]</div>
456
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">M. Jensen and N. Gruschka, &#x201C;Privacy Against the Business Partner: Issues for Realizing End-to-End Confidentiality in Web Service Compositions,&#x201D; in <i>Database and Expert Systems Application, 2009. DEXA&#x2019;09. 20th International Workshop on</i>, 2009, pp. 117&#x2013;121.</div>
457
+ </div>
458
+ <div class="csl-entry" style="clear: left; ">
459
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[82]</div>
460
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">&#x201C;Anwendung von Model Checking f&#xFC;r Prozess-Verifikation, Constraints werden als .&#x201D; .</div>
461
+ </div>
462
+ <div class="csl-entry" style="clear: left; ">
463
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[83]</div>
464
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">Chris McClean, &#x201C;The Forrester Wave<sup>TM</sup>: Enterprise
465
+ Governance, Risk, And
466
+ Compliance Platforms, Q3 2009,&#x201D; 2009.</div>
278
467
  </div>
279
468
  <div class="csl-entry" style="clear: left; ">
280
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[54]</div>
281
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">A. Marchetti, <i>Sarbanes-Oxley Ongoing Compliance Guide.</i> Parson Consulting, 2007.</div>
469
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[84]</div>
470
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">F. Caldwell, C. Casper, and T. Eid, &#x201C;Magic Quadrant for Enterprise Governance, Risk and Compliance Platforms,&#x201D; Gartner Group, 2009.</div>
282
471
  </div>
283
472
  <div class="csl-entry" style="clear: left; ">
284
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[55]</div>
285
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">Y. Liu, S. M&#xFC;ller, and K. Xu, &#x201C;A static compliance-checking framework for business process models,&#x201D; <i>IBM Systems Journal</i>, vol. 46, no. 2, pp. 335&#x2013;261, 2007.</div>
473
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[85]</div>
474
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">W. van der Aalst, N. Lohmann, P. Massuthe, C. Stahl, and K. Wolf, &#x201C;From Public Views to Private Views &#x2013; Correctness-by-Design for Services,&#x201D; in <i>Web Services and Formal Methods</i>, 2008, pp. 139&#x2013;153.</div>
286
475
  </div>
287
476
  <div class="csl-entry" style="clear: left; ">
288
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[56]</div>
289
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">J. K&#xFC;ster, K. Ryndina, and H. Gall, &#x201C;Generation of Business Process Models for Object Life Cycle Compliance,&#x201D; in <i>Int&#x2019;l Conference Business Process Management</i>, 2007, pp. 165&#x2013;181.</div>
477
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[86]</div>
478
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">W. Reisig, &#x201C;Towards a Theory of Services,&#x201D; in <i>Information Systems and e-Business Technologies</i>, 2008, pp. 271&#x2013;281.</div>
290
479
  </div>
291
480
  <div class="csl-entry" style="clear: left; ">
292
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[57]</div>
293
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">IDS Scheer, &#x201C;Governance, Risk and Compliance Management with ARIS,&#x201D; 2007.</div>
481
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[87]</div>
482
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">M. Pesic, H. Schonenberg, and W. M. P. van der Aalst, &#x201C;DECLARE: Full Support for Loosely-Structured Processes.,&#x201D; in <i>Int&#x2019;l Enterprise Computing Conference (EDOC&#x2019;07)</i>, 2007, pp. 287&#x2013;300.</div>
294
483
  </div>
295
484
  <div class="csl-entry" style="clear: left; ">
296
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[58]</div>
297
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">A. K. Ghose and G. Koliadis, &#x201C;Auditing Business Process Compliance,&#x201D; Faculty of Informatics, University of Wollongong, 2007.</div>
485
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[88]</div>
486
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">J. Yu, T. P. Manh, J. Hand, and Y. Jin, &#x201C;Pattern-based Property Specification and Verification for Service Composition,&#x201D; Swinburne University of Technology, CeCSES Report SUT.CeCSES-TR010, 2006.</div>
298
487
  </div>
299
488
  <div class="csl-entry" style="clear: left; ">
300
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[59]</div>
301
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">A. F&#xF6;rster, G. Engels, T. Schattkowsky, and R. V. der Straeten, &#x201C;Verification of Business Process Quality Constraints Based on Visual Process Patterns,&#x201D; in <i>Symposium on Theoretical Aspects of Sofware Engineering</i>, 2007.</div>
489
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[89]</div>
490
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">G. Goldszmidt, J. Joseph, and N. Sachdeva, &#x201C;On demand business process life cycle, Part 6: Apply customization policies and rules,&#x201D; IBM, 2005. [Online]. Available: http://www.ibm.com/developerworks/webservices/library/ws-odbp6/.</div>
302
491
  </div>
303
492
  <div class="csl-entry" style="clear: left; ">
304
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[60]</div>
305
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">M. Alberti, F. Chesani, M. Gavanelli, E. Lamma, P. Mello, M. Montali, and P. Torroni, &#x201C;Expressing and Verifying Business Contracts with Abductive,&#x201D; in <i>Int&#x2019;l Conference Normative Multi-agent Systems</i>, 2007.</div>
493
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[90]</div>
494
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">S. Rinderle, M. Reichert, and P. Dadam, &#x201C;Correctness Criteria for Dynamic Changes in Workflow Systems &#x2013; A Survey.,&#x201D; <i>Data and Knowledge Engineering</i>, vol. 50, no. 1, pp. 9&#x2013;34, 2004.</div>
306
495
  </div>
307
496
  <div class="csl-entry" style="clear: left; ">
308
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[61]</div>
309
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">S. Rinderle, A. Wombacher, and M. Reichert, &#x201C;Evolution of Process Choreographies in DYCHOR,&#x201D; in <i>Int&#x2019;l Conf. on Cooperative Information Systems</i>, Springer, 2006, pp. 273&#x2013;290.</div>
497
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[91]</div>
498
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">W. M. P. van der Aalst, &#x201C;Inheritance of Interorganizational Workflows to Enable Business-to-Business E-Commerce,&#x201D; <i>Electronic Commerce Research</i>, vol. 2, no. 3, pp. 195&#x2013;231, Jul. 2002, doi: 10.1023/A:1016031730365.</div>
310
499
  </div>
311
500
  <div class="csl-entry" style="clear: left; ">
312
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[62]</div>
313
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">R. Agrawal, C. Johnson, J. Kiernan, and F. Leymann, &#x201C;Taming Compliance with Sarbanes-Oxley Internal Controls Using Database Technology,&#x201D; in <i>Int&#x2019;l Conference on Data Engineering</i>, Washington, DC, USA, 2006, p. 92.</div>
501
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[92]</div>
502
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">W. V. D. Aalst, &#x201C;Loosely coupled interorganizational workflows: Modeling and analyzing workflows crossing organizational boundaries,&#x201D; <i>Information and Management</i>, vol. 37, pp. 67&#x2013;75, 2000, [Online]. Available: http://is.tm.tue.nl/staff/wvdaalst/publications/p99.pdf.</div>
314
503
  </div>
315
504
  <div class="csl-entry" style="clear: left; ">
316
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[63]</div>
317
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">W. van der Aalst, H. de Beer, and B. van Dongen, &#x201C;Process Mining and Verification of Properties: An Approach based on Temporal Logic,&#x201D; in <i>Int&#x2019;l OnTheMove Conferences</i>, 2005, vol. 3761, pp. 130&#x2013;147.</div>
505
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[93]</div>
506
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">E. Bertino, E. Ferrari, and V. Alturi, &#x201C;The Specification and Enforcement of Authorization Constraints in WFMS.,&#x201D; <i>ACM Transactions on Information and System Security</i>, vol. 2, no. 1, pp. 65&#x2013;104, 1999.</div>
318
507
  </div>
319
508
  <div class="csl-entry" style="clear: left; ">
320
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[64]</div>
321
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">C. Heinlein, &#x201C;Workflow and Process Synchronization with Interaction Expressions and Graphs,&#x201D; in <i>Proceedings of the 17th International Conference on Data Engineering</i>, Washington, DC, USA, 2001, pp. 243&#x2013;252.</div>
509
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[94]</div>
510
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">&#x201C;Zusammenfassung liegt vor. Recht untechnisch und allgemein, aber interessant in.&#x201D; .</div>
322
511
  </div>
323
512
  <div class="csl-entry" style="clear: left; ">
324
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[65]</div>
325
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">W. M. P. van der Aalst and M. Weske, &#x201C;The P2P Approach to Interorganizational Workflows.,&#x201D; in <i>Int&#x2019;l Conference on Advanced Information Systems Engineering</i>, 2001, pp. 140&#x2013;156.</div>
513
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[95]</div>
514
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">&#x201C;process level inter-process dependencies / different activities inter-workflow .&#x201D; .</div>
326
515
  </div>
327
516
  <div class="csl-entry" style="clear: left; ">
328
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[66]</div>
329
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">F. Casati, S. Ceri, B. Pernici, and G. Pozzi, &#x201C;Workflow Evolution,&#x201D; <i>Data and Knowledge Engineering</i>, vol. 24, no. 3, pp. 211&#x2013;238, 1998.</div>
517
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[96]</div>
518
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">&#x201C;inter-process task coordination (between organisations) on process type level.&#x201D; .</div>
519
+ </div>
520
+ <div class="csl-entry" style="clear: left; ">
521
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[97]</div>
522
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">H. Schonenberg, R. Mans, N. Russell, N. Mulyar, and W. Aalst, &#x201C;Process Flexibility: A Survey of Contemporary Approaches,&#x201D; in <i>Advances in Enterprise Engineering I</i>, 2008, pp. 16&#x2013;30.</div>
523
+ </div>
524
+ <div class="csl-entry" style="clear: left; ">
525
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[98]</div>
526
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">E. M. Kharbili, S. Stein, I. Markovic, and E. Pulverm&#xFC;ller, &#x201C;Towards a Framework for Semantic Business Process Compliance Management,&#x201D; 2008.</div>
527
+ </div>
528
+ <div class="csl-entry" style="clear: left; ">
529
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[99]</div>
530
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">D. Karagiannis, &#x201C;A Business Process-Based Modelling Extension for Regulatory Compliance.,&#x201D; presented at the Multikonferenz Wirtschaftsinformatik, 2008.</div>
531
+ </div>
532
+ <div class="csl-entry" style="clear: left; ">
533
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[100]</div>
534
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">Y. Liu, S. M&#xFC;ller, and K. Xu, &#x201C;A static compliance-checking framework for business process models,&#x201D; <i>IBM Systems Journal</i>, vol. 46, no. 2, pp. 335&#x2013;261, 2007.</div>
535
+ </div>
536
+ <div class="csl-entry" style="clear: left; ">
537
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[101]</div>
538
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">R. Agrawal, C. Johnson, J. Kiernan, and F. Leymann, &#x201C;Taming Compliance with Sarbanes-Oxley Internal Controls Using Database Technology,&#x201D; in <i>Int&#x2019;l Conference on Data Engineering</i>, Washington, DC, USA, 2006, p. 92, doi: http://dx.doi.org/10.1109/ICDE.2006.155.</div>
539
+ </div>
540
+ <div class="csl-entry" style="clear: left; ">
541
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[102]</div>
542
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">W. M. P. van der Aalst and M. Weske, &#x201C;The P2P Approach to Interorganizational Workflows.,&#x201D; in <i>Int&#x2019;l Conference on Advanced Information Systems Engineering</i>, 2001, pp. 140&#x2013;156.</div>
543
+ </div>
544
+ <div class="csl-entry" style="clear: left; ">
545
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 3em;">[103]</div>
546
+ <div class="csl-right-inline" style="margin: 0 .4em 0 3.5em;">F. Casati, S. Ceri, B. Pernici, and G. Pozzi, &#x201C;Workflow Evolution,&#x201D; <i>Data and Knowledge Engineering</i>, vol. 24, no. 3, pp. 211&#x2013;238, 1998.</div>
330
547
  </div>
331
548
  </div>
332
549
 
333
- <h2>SMES</h2>
550
+ <h2>SME and Business Aspects</h2>
334
551
  <div class="csl-bib-body" style="line-height: 1.35; ">
335
552
  <div class="csl-entry" style="clear: left; ">
336
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 1em;">[1]</div>
337
- <div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">S. K. Fixson, &#x201C;Product architecture assessment: a tool to link product, process, and supply chain design decisions,&#x201D; <i>Journal of Operations Management</i>, vol. 23, no. 3&#x2013;4, pp. 345&#x2013;369, 2005.</div>
553
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[1]</div>
554
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">Kartha, C.P., &#x201C;A comparison of ISO 9000:2000 quality system standards, QS9000, ISO/TS 16949 and Baldrige criteria,&#x201D; <i>The TQM Magazine (Emerald Group Publishing Limited)</i>, vol. 16, no. Number 5: 336, 2004, [Online]. Available: http://www.emeraldinsight.com/journals.htm?articleid=842121.</div>
338
555
  </div>
339
556
  <div class="csl-entry" style="clear: left; ">
340
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 1em;">[2]</div>
341
- <div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">M. Taylor and A. Murphy, &#x201C;SMEs and e-business,&#x201D; <i>Journal of Small Business and Enterprise Development</i>, vol. 11, no. 3, pp. 280&#x2013;289, 2004.</div>
557
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[2]</div>
558
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">Rojas, Evelyn, Barros, Ana, Azevedo, Am&#xE9;rico, and Batocchio, Antonio, &#x201C;Business Model Development for Virtual Enterprises,&#x201D; Bournemouth, UK, Oct. 2012, pp. 624&#x2013;634.</div>
342
559
  </div>
343
560
  <div class="csl-entry" style="clear: left; ">
344
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 1em;">[3]</div>
345
- <div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">A. Chandrashekar and P. B. Schary, &#x201C;Toward the virtual supply chain: the convergence of IT and organization,&#x201D; <i>International Journal of Logistics Management, The</i>, vol. 10, no. 2, pp. 27&#x2013;40, 1999.</div>
561
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[3]</div>
562
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">S. K. Fixson, &#x201C;Product architecture assessment: a tool to link product, process, and supply chain design decisions,&#x201D; <i>Journal of Operations Management</i>, vol. 23, no. 3&#x2013;4, pp. 345&#x2013;369, 2005.</div>
346
563
  </div>
347
564
  <div class="csl-entry" style="clear: left; ">
348
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 1em;">[4]</div>
349
- <div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">V. Corvello and P. Migliarese, &#x201C;Virtual forms for the organization of production: A comparative analysis,&#x201D; <i>International Journal of Production Economics</i>, vol. 110, no. 1&#x2013;2, pp. 5&#x2013;15, 2007.</div>
565
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[4]</div>
566
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">L. C. Thisse, &#x201C;Advanced quality planning: a guide for any organization,&#x201D; <i>Quality progress</i>, vol. 31, no. 2, pp. 73&#x2013;77, 1998, Accessed: Jul. 04, 2013. [Online]. Available: http://alexandrow.pdforms.texas-quality.org/SiteImages/125/Reference%20Library/Quality%20Planning.pdf.</div>
350
567
  </div>
351
568
  <div class="csl-entry" style="clear: left; ">
352
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 1em;">[5]</div>
353
- <div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">D. Chen and N. Daclin, &#x201C;Barriers driven methodology for enterprise interoperability,&#x201D; <i>Establishing The Foundation Of Collaborative Networks</i>, pp. 453&#x2013;460, 2007.</div>
569
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[5]</div>
570
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">T. U. Mark Gershon, &#x201C;Choosing Which Process Improvement Methodology to Implement.&#x201D; 2010, [Online]. Available: http://na-businesspress.homestead.com/JABE/Jabe105/GershonWeb.pdf.</div>
354
571
  </div>
355
572
  <div class="csl-entry" style="clear: left; ">
356
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 1em;">[6]</div>
357
- <div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">V. Barba-S&#xE1;nchez, M. P. Mart&#xED;nez-Ruiz, and A. I. Jimenez-Zarco, &#x201C;Drivers, benefits and challenges of ICT adoption by small and medium sized enterprises (SMEs): A literature review,&#x201D; <i>Problems and Perspectives in Management</i>, vol. 5, no. 1, pp. 104&#x2013;115, 2007.</div>
573
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[6]</div>
574
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">A. Chandrashekar and P. B. Schary, &#x201C;Toward the virtual supply chain: the convergence of IT and organization,&#x201D; <i>International Journal of Logistics Management, The</i>, vol. 10, no. 2, pp. 27&#x2013;40, 1999.</div>
358
575
  </div>
359
576
  <div class="csl-entry" style="clear: left; ">
360
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 1em;">[7]</div>
361
- <div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">R. van Hoek, &#x201C;Clockspeed: Winning Industry Control in the Age of Temporary Advantage,&#x201D; <i>Supply Chain Management: An International Journal</i>, vol. 5, no. 3, p. 162, 2000.</div>
577
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[7]</div>
578
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">R. A. Frosch and N. E. Gallopoulos, &#x201C;Strategies for manufacturing,&#x201D; <i>Scientific American</i>, vol. 261, no. 3, pp. 144&#x2013;152, 1989.</div>
362
579
  </div>
363
580
  <div class="csl-entry" style="clear: left; ">
364
- <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 1em;">[8]</div>
365
- <div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">R. A. Frosch and N. E. Gallopoulos, &#x201C;Strategies for manufacturing,&#x201D; <i>Scientific American</i>, vol. 261, no. 3, pp. 144&#x2013;152, 1989.</div>
581
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[8]</div>
582
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">D. C. G. David P. Fowler, &#x201C;PPAP 4th Edition,&#x201D; Jun. 2006.</div>
583
+ </div>
584
+ <div class="csl-entry" style="clear: left; ">
585
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[9]</div>
586
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">Shamsuzzoha, A. and Helo, P., &#x201C;Virtual Enterprise Management to Enhance the Manufacturing Process Collaboration,&#x201D; presented at the 22nd international conference on Flexible Automation and Intelligent Manufacturing&#xA0; (FAIM 2012), Helsinki, Finland, Jun. 2012.</div>
587
+ </div>
588
+ <div class="csl-entry" style="clear: left; ">
589
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[10]</div>
590
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">&#x201C;2006PPAPManual4thEditionManual.pdf.&#x201D; .</div>
591
+ </div>
592
+ <div class="csl-entry" style="clear: left; ">
593
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[11]</div>
594
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">&#x201C;[PDF] von texas-quality.org.&#x201D; Accessed: Jul. 04, 2013. [Online]. Available: http://alexandrow.pdforms.texas-quality.org/SiteImages/125/Reference%20Library/Quality%20Planning.pdf.</div>
595
+ </div>
596
+ <div class="csl-entry" style="clear: left; ">
597
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[12]</div>
598
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">&#x201C;This work aims at identifying the key business model elements necessary to buil.&#x201D; .</div>
599
+ </div>
600
+ <div class="csl-entry" style="clear: left; ">
601
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[13]</div>
602
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">S. Schulte, D. Schuller, R. Steinmetz, and S. Abels, &#x201C;Plug-and-Play Virtual Factories,&#x201D; <i>IEEE Internet Computing</i>, vol. 16, no. 5, pp. 78&#x2013;82, 2012.</div>
603
+ </div>
604
+ <div class="csl-entry" style="clear: left; ">
605
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[14]</div>
606
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">Georgi Pavlov, Atanas Manafov, Irena Pavlova, and Velimir Manafov, &#x201C;An &#x2018;Adventurous&#x2019; Approach towards Virtual Entrepreneurship,&#x201D; presented at the International Conference for Entrepreneurship, Innovation and Regional Development ICEIRD 2012, Sofia, Bulgaria, Jun. 2012.</div>
607
+ </div>
608
+ <div class="csl-entry" style="clear: left; ">
609
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[15]</div>
610
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">M. Taylor and A. Murphy, &#x201C;SMEs and e-business,&#x201D; <i>Journal of Small Business and Enterprise Development</i>, vol. 11, no. 3, pp. 280&#x2013;289, 2004.</div>
611
+ </div>
612
+ <div class="csl-entry" style="clear: left; ">
613
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[16]</div>
614
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">V. Corvello and P. Migliarese, &#x201C;Virtual forms for the organization of production: A comparative analysis,&#x201D; <i>International Journal of Production Economics</i>, vol. 110, no. 1&#x2013;2, pp. 5&#x2013;15, 2007.</div>
615
+ </div>
616
+ <div class="csl-entry" style="clear: left; ">
617
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[17]</div>
618
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">D. Chen and N. Daclin, &#x201C;Barriers driven methodology for enterprise interoperability,&#x201D; <i>Establishing The Foundation Of Collaborative Networks</i>, pp. 453&#x2013;460, 2007.</div>
619
+ </div>
620
+ <div class="csl-entry" style="clear: left; ">
621
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[18]</div>
622
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">V. Barba-S&#xE1;nchez, M. P. Mart&#xED;nez-Ruiz, and A. I. Jimenez-Zarco, &#x201C;Drivers, benefits and challenges of ICT adoption by small and medium sized enterprises (SMEs): A literature review,&#x201D; <i>Problems and Perspectives in Management</i>, vol. 5, no. 1, pp. 104&#x2013;115, 2007.</div>
623
+ </div>
624
+ <div class="csl-entry" style="clear: left; ">
625
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[19]</div>
626
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">R. van Hoek, &#x201C;Clockspeed: Winning Industry Control in the Age of Temporary Advantage,&#x201D; <i>Supply Chain Management: An International Journal</i>, vol. 5, no. 3, p. 162, 2000.</div>
366
627
  </div>
367
628
  </div>
368
629
 
@@ -370,27 +631,27 @@ Reference Model;,&#x201D; PSI 1-1 Version 3.0.</div>
370
631
  <div class="csl-bib-body" style="line-height: 1.35; ">
371
632
  <div class="csl-entry" style="clear: left; ">
372
633
  <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[1]</div>
373
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">A. Reinhardt, D. Christin, M. Hollick, J. Schmitt, P. Mogre, and R. Steinmetz, &#x201C;Trimming the Tree: Tailoring Adaptive Huffman Coding to Wireless Sensor Networks,&#x201D; in <i>7th European Conference on Wireless Sensor Networks (EWSN 2010)</i>, 2010, pp. 33&#x2013;48.</div>
634
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">S. Z&#xF6;ller, A. Reinhardt, M. Wachtel, and R. Steinmetz, &#x201C;Integrating Wireless Sensor Nodes and Smartphones for Energy-Efficient Data Exchange in Smart Environments,&#x201D; in <i>Proceedings of the 5th IEEE PerCom International Workshop on Smart Environments and Ambient Intelligence (SENAmI)</i>, San Diego, CA, USA, Mar. 2013, pp. 652&#x2013;657.</div>
374
635
  </div>
375
636
  <div class="csl-entry" style="clear: left; ">
376
637
  <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[2]</div>
377
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">R. Jedermann and W. Lang, &#x201C;The Minimum Number of Sensors&#x2013;Interpolation of Spatial Temperature Profiles in Chilled Transports,&#x201D; in <i>6th European Conference on Wireless Sensor Networks (EWSN)</i>, 2009, pp. 232&#x2013;246.</div>
638
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">P. Kinney, &#x201C;Zigbee technology: Wireless control that simply works,&#x201D; in <i>Communications design conference</i>, 2003, vol. 2, Accessed: Jul. 04, 2013. [Online]. Available: http://www.ceid.upatras.gr/faculty/alexiou/ahts/projects/project04/ylikoAskisewn/Evdomada1/B1/Tutorials/802.15.4-Tutorials/ZigBee_Technology_Sept2003.pdf.</div>
378
639
  </div>
379
640
  <div class="csl-entry" style="clear: left; ">
380
641
  <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[3]</div>
381
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">C. Hua and T. S. . Yum, &#x201C;Optimal routing and data aggregation for maximizing lifetime of wireless sensor networks,&#x201D; <i>Networking, IEEE/ACM Transactions on</i>, vol. 16, no. 4, pp. 892&#x2013;903, 2008.</div>
642
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">D. Culler, D. Estrin, and M. Srivastava, &#x201C;Guest editors&#x2019; introduction: overview of sensor networks,&#x201D; <i>Computer</i>, vol. 37, no. 8, pp. 41&#x2013;49, 2004.</div>
382
643
  </div>
383
644
  <div class="csl-entry" style="clear: left; ">
384
645
  <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[4]</div>
385
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">K. Sohraby, D. Minoli, and T. F. Znati, <i>Wireless sensor networks: technology, protocols, and applications</i>. Wiley-Blackwell, 2007.</div>
646
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">R. Conforti, M. La Rosa, G. Fortino, A. H. M. ter Hofstede, J. Recker, and M. Adams, &#x201C;Real-time risk monitoring in business processes: A sensor-based approach,&#x201D; <i>Journal of Systems and Software</i>, vol. 86, no. 11, pp. 2939&#x2013;2965, Nov. 2013, doi: 10.1016/j.jss.2013.07.024.</div>
386
647
  </div>
387
648
  <div class="csl-entry" style="clear: left; ">
388
649
  <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[5]</div>
389
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">R. Jedermann and W. Lang, &#x201C;Mobile java code for embedded transport monitoring systems,&#x201D; in <i>Proceedings of the Embedded World Conference</i>, Poing, 2006, pp. 771&#x2013;777.</div>
650
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">&#x201C;ScienceDirect Snapshot.&#x201D; Accessed: Mar. 20, 2014. [Online]. Available: http://www.sciencedirect.com/science/article/pii/S016412121300174X.</div>
390
651
  </div>
391
652
  <div class="csl-entry" style="clear: left; ">
392
653
  <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[6]</div>
393
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">D. Culler, D. Estrin, and M. Srivastava, &#x201C;Guest editors&#x2019; introduction: overview of sensor networks,&#x201D; <i>Computer</i>, vol. 37, no. 8, pp. 41&#x2013;49, 2004.</div>
654
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">S. Z&#xF6;ller, C. Vollmer, M. Wachtel, R. Steinmetz, and A. Reinhardt, &#x201C;Data Filtering for Wireless Sensor Networks Using Forecasting and Value of Information (accepted for publication),&#x201D; presented at the The 38th IEEE Conference on Local Computer Networks (LCN), Oct. 2013.</div>
394
655
  </div>
395
656
  <div class="csl-entry" style="clear: left; ">
396
657
  <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[7]</div>
@@ -398,35 +659,71 @@ Reference Model;,&#x201D; PSI 1-1 Version 3.0.</div>
398
659
  </div>
399
660
  <div class="csl-entry" style="clear: left; ">
400
661
  <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[8]</div>
401
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">I. F. Akyildiz, W. Su, Y. Sankarasubramaniam, and E. Cayirci, &#x201C;A survey on sensor networks,&#x201D; <i>Communications Magazine, IEEE</i>, vol. 40, no. 8, pp. 102&#x2013;114, 2002.</div>
662
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">H. Edgar, J. Callawy, and E. H. Callaway, &#x201C;Wireless sensor networks: Architectures and Protocols,&#x201D; <i>Boca Raton, Florida: CRC Press</i>, vol. 200, pp. 1&#x2013;40, 2004.</div>
402
663
  </div>
403
664
  <div class="csl-entry" style="clear: left; ">
404
665
  <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[9]</div>
405
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">R. Jedermann, J. Gehrke, M. Becker, C. Behrens, E. Morales-Kluge, O. Herzog, and W. Lang, &#x201C;Transport scenario for the intelligent container,&#x201D; <i>Understanding Autonomous Cooperation and Control in Logistics</i>, pp. 393&#x2013;404.</div>
666
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">L. Ruiz-Garcia, P. Barreiro, J. Rodriguez-Bermejo, and J. I. Robla, &#x201C;Review. Monitoring the intermodal, refrigerated transport of fruit using sensor networks,&#x201D; <i>Spanish Journal of Agricultural Research</i>, vol. 5, no. 2, pp. 142&#x2013;156, 2007.</div>
406
667
  </div>
407
668
  <div class="csl-entry" style="clear: left; ">
408
669
  <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[10]</div>
409
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">R. Verdone, D. Dardari, G. Mazzini, and A. Conti, <i>Wireless sensor and actuator networks: technologies, analysis and design</i>. Academic Press, 2008.</div>
670
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">R. Jedermann, R. Schouten, A. Sklorz, W. Lang, and O. van Kooten, &#x201C;Linking keeping quality models and sensor systems to an autonomous transport supervision system,&#x201D; in <i>Cold Chain Management&#x2013;2nd international Workshop, Bonn</i>, 2006, vol. 8.</div>
410
671
  </div>
411
672
  <div class="csl-entry" style="clear: left; ">
412
673
  <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[11]</div>
413
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">A. Dada and F. Thiesse, &#x201C;Sensor applications in the supply chain: the example of quality-based issuing of perishables,&#x201D; in <i>Proceedings of the 1st international conference on The internet of things</i>, 2008, pp. 140&#x2013;154.</div>
674
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">R. Jedermann and W. Lang, &#x201C;Mobile java code for embedded transport monitoring systems,&#x201D; in <i>Proceedings of the Embedded World Conference</i>, Poing, 2006, pp. 771&#x2013;777.</div>
414
675
  </div>
415
676
  <div class="csl-entry" style="clear: left; ">
416
677
  <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[12]</div>
417
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">L. Ruiz-Garcia, P. Barreiro, J. Rodriguez-Bermejo, and J. I. Robla, &#x201C;Review. Monitoring the intermodal, refrigerated transport of fruit using sensor networks,&#x201D; <i>Spanish Journal of Agricultural Research</i>, vol. 5, no. 2, pp. 142&#x2013;156, 2007.</div>
678
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">R. Hans, M. Zahn, U. Lampe, and A. Papageorgiou, &#x201C;Energy-efficient Web Service Invocation on Mobile Devices: The Influence of Compression and Parsing,&#x201D; in <i>Proceedings of the 2nd International Conference on Mobile Services (MS 2013)</i>, Stanta Clara, Jun. 2013, pp. 1&#x2013;6.</div>
418
679
  </div>
419
680
  <div class="csl-entry" style="clear: left; ">
420
681
  <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[13]</div>
421
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">C. Mascolo and M. Musolesi, &#x201C;SCAR: context-aware adaptive routing in delay tolerant mobile sensor networks,&#x201D; in <i>Proceedings of the 2006 international conference on Wireless communications and mobile computing</i>, 2006, pp. 533&#x2013;538.</div>
682
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">S. Z&#xF6;ller, M. Wachtel, F. Knapp, and R. Steinmetz, &#x201C;Going All the Way -- Detecting and Transmitting Events with Wireless Sensor Networks in Logistics (accepted for publication).,&#x201D; presented at the The 38th IEEE Conference on Local Computer Networks (LCN), Oct. 2013.</div>
422
683
  </div>
423
684
  <div class="csl-entry" style="clear: left; ">
424
685
  <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[14]</div>
425
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">R. Jedermann, R. Schouten, A. Sklorz, W. Lang, and O. van Kooten, &#x201C;Linking keeping quality models and sensor systems to an autonomous transport supervision system,&#x201D; in <i>Cold Chain Management&#x2013;2nd international Workshop, Bonn</i>, 2006, vol. 8.</div>
686
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">&#x201C;[PDF] from upatras.gr.&#x201D; Accessed: Jul. 04, 2013. [Online]. Available: http://www.ceid.upatras.gr/faculty/alexiou/ahts/projects/project04/ylikoAskisewn/Evdomada1/B1/Tutorials/802.15.4-Tutorials/ZigBee_Technology_Sept2003.pdf.</div>
426
687
  </div>
427
688
  <div class="csl-entry" style="clear: left; ">
428
689
  <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[15]</div>
429
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">H. Edgar, J. Callawy, and E. H. Callaway, &#x201C;Wireless sensor networks: Architectures and Protocols,&#x201D; <i>Boca Raton, Florida: CRC Press</i>, vol. 200, pp. 1&#x2013;40, 2004.</div>
690
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">S. Z&#xF6;ller, A. Reinhardt, and R. Steinmetz, &#x201C;Distributed Data Filtering in Logistics Wireless Sensor Networks Based on Transmission Relevance,&#x201D; presented at the The 37th IEEE Conference on Local Computer Networks (LCN 2012).</div>
691
+ </div>
692
+ <div class="csl-entry" style="clear: left; ">
693
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[16]</div>
694
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">A. Reinhardt, D. Christin, M. Hollick, J. Schmitt, P. Mogre, and R. Steinmetz, &#x201C;Trimming the Tree: Tailoring Adaptive Huffman Coding to Wireless Sensor Networks,&#x201D; in <i>7th European Conference on Wireless Sensor Networks (EWSN 2010)</i>, 2010, pp. 33&#x2013;48.</div>
695
+ </div>
696
+ <div class="csl-entry" style="clear: left; ">
697
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[17]</div>
698
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">R. Jedermann and W. Lang, &#x201C;The Minimum Number of Sensors&#x2013;Interpolation of Spatial Temperature Profiles in Chilled Transports,&#x201D; in <i>6th European Conference on Wireless Sensor Networks (EWSN)</i>, 2009, pp. 232&#x2013;246.</div>
699
+ </div>
700
+ <div class="csl-entry" style="clear: left; ">
701
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[18]</div>
702
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">C. Hua and T. S. P. Yum, &#x201C;Optimal routing and data aggregation for maximizing lifetime of wireless sensor networks,&#x201D; <i>Networking, IEEE/ACM Transactions on</i>, vol. 16, no. 4, pp. 892&#x2013;903, 2008.</div>
703
+ </div>
704
+ <div class="csl-entry" style="clear: left; ">
705
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[19]</div>
706
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">K. Sohraby, D. Minoli, and T. F. Znati, <i>Wireless sensor networks: technology, protocols, and applications</i>. Wiley-Blackwell, 2007.</div>
707
+ </div>
708
+ <div class="csl-entry" style="clear: left; ">
709
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[20]</div>
710
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">I. F. Akyildiz, W. Su, Y. Sankarasubramaniam, and E. Cayirci, &#x201C;A survey on sensor networks,&#x201D; <i>Communications Magazine, IEEE</i>, vol. 40, no. 8, pp. 102&#x2013;114, 2002.</div>
711
+ </div>
712
+ <div class="csl-entry" style="clear: left; ">
713
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[21]</div>
714
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">R. Jedermann <i>et al.</i>, &#x201C;Transport scenario for the intelligent container,&#x201D; <i>Understanding Autonomous Cooperation and Control in Logistics</i>, pp. 393&#x2013;404.</div>
715
+ </div>
716
+ <div class="csl-entry" style="clear: left; ">
717
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[22]</div>
718
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">R. Verdone, D. Dardari, G. Mazzini, and A. Conti, <i>Wireless sensor and actuator networks: technologies, analysis and design</i>. Academic Press, 2008.</div>
719
+ </div>
720
+ <div class="csl-entry" style="clear: left; ">
721
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[23]</div>
722
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">A. Dada and F. Thiesse, &#x201C;Sensor applications in the supply chain: the example of quality-based issuing of perishables,&#x201D; in <i>Proceedings of the 1st international conference on The internet of things</i>, 2008, pp. 140&#x2013;154.</div>
723
+ </div>
724
+ <div class="csl-entry" style="clear: left; ">
725
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[24]</div>
726
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">C. Mascolo and M. Musolesi, &#x201C;SCAR: context-aware adaptive routing in delay tolerant mobile sensor networks,&#x201D; in <i>Proceedings of the 2006 international conference on Wireless communications and mobile computing</i>, 2006, pp. 533&#x2013;538.</div>
430
727
  </div>
431
728
  </div>
432
729
 
@@ -434,51 +731,51 @@ Reference Model;,&#x201D; PSI 1-1 Version 3.0.</div>
434
731
  <div class="csl-bib-body" style="line-height: 1.35; ">
435
732
  <div class="csl-entry" style="clear: left; ">
436
733
  <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[1]</div>
437
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">D. Schuller, A. Papageorgiou, S. Schulte, J. Eckert, N. Repp, and R. Steinmetz, &#x201C;Process reliability in service oriented architectures,&#x201D; in <i>Digital Ecosystems and Technologies, 2009. DEST&#xA0; &#x2019;09. 3rd IEEE International Conference on</i>, 2009, pp. 606&#x2013;611.</div>
734
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">S. Schulte, U. Lampe, J. Eckert, and R. Steinmetz, &#x201C;LOG4SWS. KOM: Self-Adapting Semantic Web Service Discovery for SAWSDL,&#x201D; in <i>2010 6th World Congress on Services</i>, 2010, pp. 511&#x2013;518.</div>
438
735
  </div>
439
736
  <div class="csl-entry" style="clear: left; ">
440
737
  <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[2]</div>
441
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">S. Schulte, J. Eckert, N. Repp, and R. Steinmetz, &#x201C;An approach to evaluate and enhance the retrieval of Semantic Web services,&#x201D; in <i>Service Systems and Service Management, 2008 International Conference on</i>, 2008, pp. 1&#x2013;7.</div>
738
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">S. Schulte, J. Eckert, N. Repp, and R. Steinmetz, &#x201C;An approach to evaluate and enhance the retrieval of Semantic Web services,&#x201D; in <i>Service Systems and Service Management, 2008 International Conference on</i>, 2008, pp. 1&#x2013;7, doi: 10.1109/ICSSSM.2008.4598550.</div>
442
739
  </div>
443
740
  <div class="csl-entry" style="clear: left; ">
444
741
  <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[3]</div>
445
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">S. Schulte, U. Lampe, J. Eckert, and R. Steinmetz, &#x201C;LOG4SWS. KOM: Self-Adapting Semantic Web Service Discovery for SAWSDL,&#x201D; in <i>2010 6th World Congress on Services</i>, 2010, pp. 511&#x2013;518.</div>
742
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">D. Martin <i>et al.</i>, &#x201C;Bringing semantics to web services with owl-s,&#x201D; <i>World Wide Web</i>, vol. 10, no. 3, pp. 243&#x2013;277, 2007.</div>
446
743
  </div>
447
744
  <div class="csl-entry" style="clear: left; ">
448
745
  <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[4]</div>
449
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">D. Kourtesis and I. Paraskakis, &#x201C;Web service discovery in the FUSION semantic registry,&#x201D; in <i>Business Information Systems</i>, 2008, pp. 285&#x2013;296.</div>
746
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">M. Klusch, P. Kapahnke, and I. Zinnikus, &#x201C;Sawsdl-mx2: A machine-learning approach for integrating semantic web service matchmaking variants,&#x201D; in <i>Web Services, 2009. ICWS 2009. IEEE International Conference on</i>, 2009, pp. 335&#x2013;342.</div>
450
747
  </div>
451
748
  <div class="csl-entry" style="clear: left; ">
452
749
  <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[5]</div>
453
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">E. Cimpian, H. Meyer, D. Roman, A. Sirbu, N. Steinmetz, S. Staab, and I. Toma, &#x201C;Ontologies and Matchmaking,&#x201D; <i>Semantic Service Provisioning</i>, pp. 19&#x2013;54, 2008.</div>
750
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">D. Fensel, <i>Enabling Semantic Web Services: The Web Service Modeling Ontology</i>. Springer-Verlag New York Inc, 2007.</div>
454
751
  </div>
455
752
  <div class="csl-entry" style="clear: left; ">
456
753
  <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[6]</div>
457
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">D. Martin, M. Burstein, D. Mcdermott, S. Mcilraith, M. Paolucci, K. Sycara, D. L. Mcguinness, E. Sirin, and N. Srinivasan, &#x201C;Bringing semantics to web services with owl-s,&#x201D; <i>World Wide Web</i>, vol. 10, no. 3, pp. 243&#x2013;277, 2007.</div>
754
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">S. Schulte, N. Repp, D. Schuller, and R. Steinmetz, &#x201C;From Web Service Policies to Automatic Deviation Handling: Supporting Semantic Description of Reactions to Policy Violations,&#x201D; in <i>Semantic Computing, 2009. ICSC&#x2019;09. IEEE International Conference on</i>, 2009, pp. 312&#x2013;317.</div>
458
755
  </div>
459
756
  <div class="csl-entry" style="clear: left; ">
460
757
  <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[7]</div>
461
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">D. Fensel, <i>Enabling Semantic Web Services: The Web Service Modeling Ontology</i>. Springer-Verlag New York Inc, 2007.</div>
758
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">D. Schuller, A. Papageorgiou, S. Schulte, J. Eckert, N. Repp, and R. Steinmetz, &#x201C;Process reliability in service oriented architectures,&#x201D; in <i>Digital Ecosystems and Technologies, 2009. DEST &#x2019;09. 3rd IEEE International Conference on</i>, 2009, pp. 606&#x2013;611, doi: 10.1109/DEST.2009.5276712.</div>
462
759
  </div>
463
760
  <div class="csl-entry" style="clear: left; ">
464
761
  <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[8]</div>
465
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">R. Akkiraju, &#x201C;Semantic Web Services,&#x201D; <i>Semantic Web Services: Theory, Tools, and Applications</i>, pp. 191&#x2013;216, Chapter IX, 2007.</div>
762
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">D. Kourtesis and I. Paraskakis, &#x201C;Web service discovery in the FUSION semantic registry,&#x201D; in <i>Business Information Systems</i>, 2008, pp. 285&#x2013;296.</div>
466
763
  </div>
467
764
  <div class="csl-entry" style="clear: left; ">
468
765
  <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[9]</div>
469
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">K. Sivashanmugam, J. A. Miller, A. P. Sheth, and K. Verma, &#x201C;Framework for semantic web process composition,&#x201D; <i>International Journal of Electronic Commerce</i>, vol. 9, no. 2, pp. 71&#x2013;106, 2005.</div>
766
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">E. Cimpian <i>et al.</i>, &#x201C;Ontologies and Matchmaking,&#x201D; <i>Semantic Service Provisioning</i>, pp. 19&#x2013;54, 2008.</div>
470
767
  </div>
471
768
  <div class="csl-entry" style="clear: left; ">
472
769
  <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[10]</div>
473
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">S. Schulte, N. Repp, D. Schuller, and R. Steinmetz, &#x201C;From Web Service Policies to Automatic Deviation Handling: Supporting Semantic Description of Reactions to Policy Violations,&#x201D; in <i>Semantic Computing, 2009. ICSC&#x2019;09. IEEE International Conference on</i>, 2009, pp. 312&#x2013;317.</div>
770
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">R. Akkiraju, &#x201C;Semantic Web Services,&#x201D; <i>Semantic Web Services: Theory, Tools, and Applications</i>, pp. 191&#x2013;216, Chapter IX, 2007.</div>
474
771
  </div>
475
772
  <div class="csl-entry" style="clear: left; ">
476
773
  <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[11]</div>
477
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">P. Plebani and B. Pernici, &#x201C;Urbe: Web service retrieval based on similarity evaluation,&#x201D; <i>Knowledge and Data Engineering, IEEE Transactions on</i>, vol. 21, no. 11, pp. 1629&#x2013;1642, 2009.</div>
774
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">K. Sivashanmugam, J. A. Miller, A. P. Sheth, and K. Verma, &#x201C;Framework for semantic web process composition,&#x201D; <i>International Journal of Electronic Commerce</i>, vol. 9, no. 2, pp. 71&#x2013;106, 2005.</div>
478
775
  </div>
479
776
  <div class="csl-entry" style="clear: left; ">
480
777
  <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[12]</div>
481
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">M. Klusch, P. Kapahnke, and I. Zinnikus, &#x201C;Sawsdl-mx2: A machine-learning approach for integrating semantic web service matchmaking variants,&#x201D; in <i>Web Services, 2009. ICWS 2009. IEEE International Conference on</i>, 2009, pp. 335&#x2013;342.</div>
778
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">P. Plebani and B. Pernici, &#x201C;Urbe: Web service retrieval based on similarity evaluation,&#x201D; <i>Knowledge and Data Engineering, IEEE Transactions on</i>, vol. 21, no. 11, pp. 1629&#x2013;1642, 2009.</div>
482
779
  </div>
483
780
  <div class="csl-entry" style="clear: left; ">
484
781
  <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[13]</div>
@@ -490,11 +787,11 @@ Reference Model;,&#x201D; PSI 1-1 Version 3.0.</div>
490
787
  </div>
491
788
  <div class="csl-entry" style="clear: left; ">
492
789
  <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[15]</div>
493
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">J. Farrell, I. B. M. . Lausen, and D. Innsbruck, &#x201C;Semantic annotations for wsdl and xml schema,&#x201D; 2007. [Online]. Available: http://www.w3.org/TR/2007/REC-sawsdl-20070828/.</div>
790
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">J. Farrell, I. B. M. H. Lausen, and D. Innsbruck, &#x201C;Semantic annotations for wsdl and xml schema,&#x201D; 2007. http://www.w3.org/TR/2007/REC-sawsdl-20070828/.</div>
494
791
  </div>
495
792
  <div class="csl-entry" style="clear: left; ">
496
793
  <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 2em;">[16]</div>
497
- <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">L. Clement, A. Hately, C. von Riegen, T. Rogers, and others, &#x201C;UDDI Version 3.0. 2,&#x201D; 2004. [Online]. Available: http://www.uddi.org/pubs/uddi_v3.htm.</div>
794
+ <div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">L. Clement, A. Hately, C. von Riegen, T. Rogers, and others, &#x201C;UDDI Version 3.0. 2,&#x201D; 2004. http://www.uddi.org/pubs/uddi_v3.htm.</div>
498
795
  </div>
499
796
  </div>
500
797
 
@@ -502,23 +799,27 @@ Reference Model;,&#x201D; PSI 1-1 Version 3.0.</div>
502
799
  <div class="csl-bib-body" style="line-height: 1.35; ">
503
800
  <div class="csl-entry" style="clear: left; ">
504
801
  <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 1em;">[1]</div>
505
- <div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">J. (Roger) Jiao, X. You, and A. Kumar, &#x201C;An agent-based framework for collaborative negotiation in the global manufacturing supply chain network,&#x201D; <i>Robotics and Computer-Integrated Manufacturing</i>, vol. 22, no. 3, pp. 239&#x2013;255, Jul. 2006.</div>
802
+ <div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">G. Dudek and H. Stadtler, &#x201C;Negotiation-based collaborative planning between supply chains partners,&#x201D; <i>European Journal of Operational Research</i>, vol. 163, no. 3, pp. 668&#x2013;687, 2005.</div>
506
803
  </div>
507
804
  <div class="csl-entry" style="clear: left; ">
508
805
  <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 1em;">[2]</div>
509
- <div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">G. Dudek and H. Stadtler, &#x201C;Negotiation-based collaborative planning between supply chains partners,&#x201D; <i>European Journal of Operational Research</i>, vol. 163, no. 3, pp. 668&#x2013;687, 2005.</div>
806
+ <div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">J. (Roger) Jiao, X. You, and A. Kumar, &#x201C;An agent-based framework for collaborative negotiation in the global manufacturing supply chain network,&#x201D; <i>Robotics and Computer-Integrated Manufacturing</i>, vol. 22, no. 3, pp. 239&#x2013;255, Jul. 2006, doi: 10.1016/j.rcim.2005.04.003.</div>
510
807
  </div>
511
808
  <div class="csl-entry" style="clear: left; ">
512
809
  <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 1em;">[3]</div>
513
- <div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">J. M. Zaha, A. Barros, M. Dumas, and A. Hofstede, &#x201C;Let&#x2019;s Dance: A Language for Service Behavior Modeling,&#x201D; in in <i>On the Move to Meaningful Internet Systems 2006: CoopIS, DOA, GADA, and ODBASE</i>, vol. 4275, R. Meersman and Z. Tari, Eds. Berlin, Heidelberg: Springer Berlin Heidelberg, 2006, pp. 145&#x2013;162.</div>
810
+ <div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">Ralph Vigne, Juergen Mangler, Erich Schikuta, and Stefanie Rinderle-Ma, &#x201C;WS-Agreement based Service Negotiation in a Heterogeneous Service Environment,&#x201D; presented at the IEEE International Conference on Service Oriented Computing &amp; Applications (SOCA 2012), Taipei, Taiwan, Dec. 2012.</div>
514
811
  </div>
515
812
  <div class="csl-entry" style="clear: left; ">
516
813
  <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 1em;">[4]</div>
517
- <div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">W. M. P. van der Aalst, N. Lohmann, P. Massuthe, C. Stahl, and K. Wolf, &#x201C;Multiparty Contracts: Agreeing and Implementing Interorganizational Processes,&#x201D; <i>The Computer Journal</i>, vol. 53, no. 1, pp. 90&#x2013;106, Jan. 2010.</div>
814
+ <div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">W. M. P. van der Aalst, N. Lohmann, P. Massuthe, C. Stahl, and K. Wolf, &#x201C;Multiparty Contracts: Agreeing and Implementing Interorganizational Processes,&#x201D; <i>The Computer Journal</i>, vol. 53, no. 1, pp. 90&#x2013;106, Jan. 2010, doi: 10.1093/comjnl/bxn064.</div>
815
+ </div>
816
+ <div class="csl-entry" style="clear: left; ">
817
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 1em;">[5]</div>
818
+ <div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">J. M. Zaha, A. Barros, M. Dumas, and A. Hofstede, &#x201C;Let&#x2019;s Dance: A Language for Service Behavior Modeling,&#x201D; in <i>On the Move to Meaningful Internet Systems 2006: CoopIS, DOA, GADA, and ODBASE</i>, vol. 4275, R. Meersman and Z. Tari, Eds. Berlin, Heidelberg: Springer Berlin Heidelberg, 2006, pp. 145&#x2013;162.</div>
518
819
  </div>
519
820
  </div>
520
821
 
521
- <h2>Design</h2>
822
+ <h2>Process Design and Optimization</h2>
522
823
  <div class="csl-bib-body" style="line-height: 1.35; ">
523
824
  <div class="csl-entry" style="clear: left; ">
524
825
  <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 1em;">[1]</div>
@@ -526,15 +827,23 @@ Reference Model;,&#x201D; PSI 1-1 Version 3.0.</div>
526
827
  </div>
527
828
  <div class="csl-entry" style="clear: left; ">
528
829
  <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 1em;">[2]</div>
529
- <div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">W. M. . Van Der Aalst, M. Dumas, F. Gottschalk, A. H. . Ter Hofstede, M. La Rosa, and J. Mendling, &#x201C;Correctness-preserving configuration of business process models,&#x201D; in <i>Proceedings of the Theory and practice of software, 11th international conference on Fundamental approaches to software engineering</i>, 2008, pp. 46&#x2013;61.</div>
830
+ <div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">D. Schuller, Ulrich Lampe, J. Eckert, R. Steinmetz, and S. Schulte, &#x201C;Cost-driven Optimization of Complex Service-based Workflows for Stochastic QoS Parameters,&#x201D; in <i>2012 IEEE 19th International Conference on Web Services</i>, Waikiki, Hawaii, Jun. 2012, pp. 66&#x2013;74.</div>
530
831
  </div>
531
832
  <div class="csl-entry" style="clear: left; ">
532
833
  <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 1em;">[3]</div>
533
- <div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">W. M. P. Van Der Aalst, H. A. Reijers, A. Weijters, B. F. Van Dongen, A. K. Alves de Medeiros, M. Song, and H. M. W. Verbeek, &#x201C;Business process mining: An industrial application,&#x201D; <i>Information Systems</i>, vol. 32, no. 5, pp. 713&#x2013;732, 2007.</div>
834
+ <div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">S. L. Mansar and H. A. Reijers, &#x201C;Best practices in business process redesign: validation of a redesign framework,&#x201D; <i>Computers in Industry</i>, vol. 56, no. 5, pp. 457&#x2013;471, 2005.</div>
534
835
  </div>
535
836
  <div class="csl-entry" style="clear: left; ">
536
837
  <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 1em;">[4]</div>
537
- <div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">S. L. Mansar and H. A. Reijers, &#x201C;Best practices in business process redesign: validation of a redesign framework,&#x201D; <i>Computers in Industry</i>, vol. 56, no. 5, pp. 457&#x2013;471, 2005.</div>
838
+ <div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">&#x201C;Addresses QoS aware Service Composition considering stochastic QoS attributes.&#x201D; .</div>
839
+ </div>
840
+ <div class="csl-entry" style="clear: left; ">
841
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 1em;">[5]</div>
842
+ <div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">W. M. P. Van Der Aalst, M. Dumas, F. Gottschalk, A. H. M. Ter Hofstede, M. La Rosa, and J. Mendling, &#x201C;Correctness-preserving configuration of business process models,&#x201D; in <i>Proceedings of the Theory and practice of software, 11th international conference on Fundamental approaches to software engineering</i>, 2008, pp. 46&#x2013;61.</div>
843
+ </div>
844
+ <div class="csl-entry" style="clear: left; ">
845
+ <div class="csl-left-margin" style="float: left; padding-right: 0.5em; text-align: right; width: 1em;">[6]</div>
846
+ <div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">W. M. P. Van Der Aalst <i>et al.</i>, &#x201C;Business process mining: An industrial application,&#x201D; <i>Information Systems</i>, vol. 32, no. 5, pp. 713&#x2013;732, 2007.</div>
538
847
  </div>
539
848
  </div>
540
849