riddl 0.109 → 0.114
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/examples/twitter/twitter.xml +2 -2
- data/examples/zotero/client.rb +10 -7
- data/examples/zotero/litlist.html +511 -202
- data/lib/ruby/riddl/ns/common-patterns/notifications-consumer/2.0/consumer.xml +1 -4
- data/lib/ruby/riddl/ns/common-patterns/notifications-producer/2.0/producer.xml +25 -3
- data/lib/ruby/riddl/protocols/sse.rb +1 -1
- data/lib/ruby/riddl/wrapper/messageparser.rb +4 -2
- data/ns/common-patterns/notifications-consumer/2.0/consumer.xml +1 -4
- data/ns/common-patterns/notifications-producer/2.0/producer.xml +25 -3
- data/riddl.gemspec +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 76c883a1c81fb878e0263dca4838119d967116d0902bd5fafa2190212c54bf4e
|
4
|
+
data.tar.gz: f0b5c026d9015f2301d53fcf815e40e5fb266d192ae95dafef817dceb7de1f2f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 261200915b3d9ffae10c12bf3cc392e6ca6175100f824f41a3e7513b9ea283a214469237a33ec2bd1b53ddab85998c2b83fd2f329751a0316dc6ae18b37d86ba
|
7
|
+
data.tar.gz: 8b857617ef125831993e9c3ca318e388a41f05ab2f3b555ca4e24c1b4eafe9cdb65c272294221deb4f95ee823462847dfcaf7ad7a4bb218374fd96811e59fc21
|
@@ -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">
|
data/examples/zotero/client.rb
CHANGED
@@ -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;">
|
5
|
+
<div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">A. Polyvyanyy, J. Vanhatalo, and H. Völzer, “Simplified computation and generalization of the refined process structure tree,” <i>Web Services and Formal Methods</i>, pp. 25–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;"
|
9
|
+
<div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">“Snapshot.” 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;">
|
13
|
+
<div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">M. Weidlich, G. Decker, A. Großkopf, and M. Weske, “BPEL to BPMN: The myth of a straight-forward mapping,” <i>On the Move to Meaningful Internet Systems: OTM 2008</i>, pp. 265–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;"
|
17
|
+
<div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">“Snapshot.” 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, “On the translation between BPMN and BPEL: Conceptual mismatch between process modeling languages,” in <i>The 18th International Conference on Advanced Information Systems Engineering. Proceedings of Workshops and Doctoral Consortium</i>, 2006, pp. 521–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;">“Snapshot.” 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;">“Snapshot.” 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ölzer, and J. Koehler, “The refined process structure tree,” <i>Data & Knowledge Engineering</i>, vol. 68, no. 9, pp. 793–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:
|
25
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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, “Implementing collaborative forecasting to improve supply chain performance,” <i>International Journal of Physical Distribution & Logistics Management</i>, vol. 32, no. 6, pp. 431–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:
|
29
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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, “A technique for computer detection and correction of spelling errors,” <i>Communications of the ACM</i>, vol. 7, no. 3, pp. 171–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:
|
33
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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, “Supply chain forecasting – Collaborative forecasting supports supply chain management,” <i>Business Process Management Journal</i>, vol. 6, no. 5, pp. 392–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:
|
37
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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;">“Calculate Differences between traces, (also between traces of adapted processes.” .</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:
|
41
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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;">“Snapshot.” 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:
|
49
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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;">“Snapshot.” 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:
|
53
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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, “Business Process Simulation Revisited,” in <i>Enterprise and Organizational Modeling and Simulation</i>, J. Barjis, Ed. Springer Berlin Heidelberg, 2010, pp. 1–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:
|
57
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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;">“ScienceDirect Snapshot.” 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;">“ScienceDirect Full Text PDF.” Accessed: Jan. 28, 2013. [Online]. Available: http://pdn.sciencedirect.com/science?_ob=MiamiImageURL&_cid=271546&_user=464575&_pii=S0169023X09000354&_check=y&_origin=article&_zone=toolbar&_coverDate=2009--30&view=c&originContentFamily=serial&wchp=dGLzVlV-zSkWz&md5=662e337323976f9fc3dcadc77a0a45ca&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, “Workflow simulation for operational decision support,” <i>Data & Knowledge Engineering</i>, vol. 68, no. 9, pp. 834–850, Sep. 2009, doi: 10.1016/j.datak.2009.02.014.</div>
|
58
78
|
</div>
|
59
79
|
</div>
|
60
80
|
|
61
|
-
<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;">
|
85
|
+
<div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">R. Hans, S. Zöller, S. Abels, A. Miede, and R. Steinmetz, “Enabling Collaboration in Virtual Manufacturing Enterprises with Cloud Computing,” in <i>Proceedings of the 19th Americas Conference on Information Systems (AMCIS 2013)</i>, Chicago, Aug. 2013, pp. 1–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.
|
89
|
+
<div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">A. Barros, G. Decker, M. Dumas, and F. Weber, “Correlation Patterns in Service-Oriented Architectures,” in <i>Fundamental Approaches to Software Engineering</i>, vol. 4422, M. Dwyer and A. Lopes, Eds. Springer Berlin / Heidelberg, 2007, pp. 245–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;">
|
93
|
+
<div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">J. Wagener, O. Spjuth, E. L. Willighagen, and J. E. Wikberg, “XMPP for cloud computing in bioinformatics supporting discovery and invocation of asynchronous web services,” <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.
|
97
|
+
<div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">R. Hans, D. Dahlen, S. Zöller, D. Schuller, and U. Lampe, “Enabling Virtual Manufacturing Enterprises with Cloud Computing – An Analysis of Criteria for the Selection of Database as a Service Offers,” in <i>Advances in Sustainable and Competitive Manufacturing Systems</i>, Porto, Jun. 2013, pp. 427–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, “Balancing Flexibility and Security in Adaptive Process Management Systems,” 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;">
|
104
|
+
<div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">Shamsuzzoha, A. and Helo, P., “Virtual enterprise architectural framework: collaboration for small and medium enterprises,” in <i>Proceedings of the ASME 2013 International Manufacturing Science and Engineering Conference (MSEC2013)</i>, Madison, Wisconsin, USA, Jun. 2013, pp. 1–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;">
|
108
|
+
<div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">Hao, Y., Shamsuzzoha, A. and Helo, P., “Designing of cloud-based virtual factory information system,” in <i>Proceedings of the 23rd International Conference on Flexible Automation & Intelligent Manufacturing (FAIM2013)</i>, Porto, Portugal, Jun. 2013, pp. 415–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;">
|
112
|
+
<div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">Shamsuzzoha, A., Abels, S. and Helo, P. , “Adaptive virtual enterprise process management: perspective of cloud-based data storage,” in <i>Proceedings of the 15th International Conference on Enterprise Information Systems (ICEIS 2013)</i>, Angers Loire Valley, France, Jul. 2013, pp. 88–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;"
|
116
|
+
<div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">“SpringerLink Snapshot.” 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;"
|
120
|
+
<div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">“SpringerLink Full Text PDF.” 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;"
|
124
|
+
<div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">“JClouds is an open source Java library. The API allows to create  portable clou.” .</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;">
|
128
|
+
<div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">JCloud Community, “JClouds.” [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:
|
113
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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, “Modeling and Analyzing Interorganizational Workflows,” <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:
|
117
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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, “Declarative specification and verification of service choreographiess,” <i>ACM Trans. Web</i>, vol. 4, no. 1, pp. 1–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:
|
121
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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, “Service Interaction: Patterns, Formalization, and Analysis,” in <i>Formal Methods for Web Services</i>, 2009, pp. 42–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:
|
125
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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, “Designing Compliant Business Processes with Obligations and Permissions,” in <i>Business Process Management 2006 Workshops</i>, 2006, pp. 5–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:
|
129
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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, “Evolution of Process Choreographies in DYCHOR,” in <i>Int’l Conf. on Cooperative Information Systems</i>, Springer, 2006, pp. 273–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:
|
133
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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üster, K. Ryndina, and H. Gall, “Generation of Business Process Models for Object Life Cycle Compliance,” in <i>Int’l Conference Business Process Management</i>, 2007, pp. 165–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:
|
137
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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, “On the Controlled Evolution of Process Choreographies.,” in <i>Int’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:
|
141
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
142
|
-
Governance, Risk, And
|
143
|
-
Compliance Platforms, Q3 2009,” 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, “Monitoring Business Process Compliance Using Compliance Rule Graphs,” 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–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:
|
147
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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, “Separation of duties for access control enforcement in workflow environments,” <i>IBM Systems Journal</i>, vol. 40, no. 3, pp. 666–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:
|
151
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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, “Dynamic business network process management in instant virtual enterprises,” <i>Comput. Ind.</i>, vol. 60, no. 2, pp. 86–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:
|
155
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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, “Discretionary Enforcement of Electronic Contracts,” 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:
|
159
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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, “Model-Based Analysis of Obligations in Web Service Choreography,” in <i>Advanced Int’l Conference on Telecommunications and Int’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:
|
163
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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, “Business Process Intelligence,” <i>Computers in Industry</i>, vol. 53, no. 3, pp. 321–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:
|
167
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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, “Flexible Support of Team Processes by Adaptive Workflow Systems,” <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:
|
171
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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, “Evolution of Process Choreographies in DYCHOR,” in <i>Proc. CoopIS’06</i>, 2006, pp. 273–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:
|
175
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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, “Providing Integrated Life Cycle Support in Process-Aware Information Systems,” <i>Int’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:
|
179
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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, “Workflow and Process Synchronization with Interaction Expressions and Graphs,” in <i>Proceedings of the 17th International Conference on Data Engineering</i>, Washington, DC, USA, 2001, pp. 243–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:
|
183
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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üller, and B. Pfitzmann, “From Regulatory Policies to Event Monitoring Rules: Towards Model-Driven Compliance Automation,” 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:
|
187
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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ötsch, E. Pulvermüller, and W. Rossak, “Modeling and Verifying Workflow-based Regulations,” 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:
|
191
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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, “Pattern-Based Design and Validation of Business Process Compliance,” in <i>Int’ OTM Conferences 2007, Part I</i>, 2007, vol. 4803, pp. 59–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:
|
195
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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, “Logic Based Modeling and Analysis of Workflows,” in <i>Int’l Conference Principles of Database Systems</i>, 1998, pp. 25–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:
|
199
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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, “Change Patterns and Change Support Features - Enhancing Flexibility in Process-Aware Information Systems.,” <i>Data and Knowledge Engineering</i>, vol. 66, no. 3, pp. 438–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:
|
203
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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, “Auditing Business Process Compliance,” 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:
|
207
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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, “Semantic Correctness in Adaptive Process Management Systems,” in <i>Business Process Management</i>, 2006, vol. 02, pp. 193–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:
|
211
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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, “A Business Process Intelligence System for Enterprise Process Performance Management,” <i>IEEE Transactions on Systems, Man, and Cybernetics, Part C: Applications and Reviews</i>, vol. 38, no. 6, pp. 745–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:
|
215
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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ünther, M. Weske, and N. Desai, “Event-based monitoring of process execution violations,” in <i>Business Process Management</i>, Springer, 2011, pp. 182–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:
|
219
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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 & 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:
|
223
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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, “A Framework for the Systematic Comparison and Evaluation of Compliance Monitoring Approaches,” in <i>Enterprise Distributed Object Computing Conference (EDOC), 2013 17th IEEE International</i>, 2013, pp. 7–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:
|
227
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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;">“Google Books Link.” 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:
|
231
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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;">“Snapshot.” 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:
|
235
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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;">“Full Text PDF.” 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:
|
239
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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;">“IEEE Xplore Abstract Record.” Accessed: Mar. 16, 2014. [Online]. Available: http://ieeexplore.ieee.org/xpl/login.jsp?tp=&arnumber=6658259&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:
|
243
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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;">“ScienceDirect Snapshot.” 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:
|
247
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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;">“ScienceDirect Full Text PDF.” Accessed: Feb. 14, 2012. [Online]. Available: http://www.sciencedirect.com/science?_ob=MiamiImageURL&_cid=271439&_user=464575&_pii=S0166361503001994&_check=y&_origin=article&_zone=toolbar&_coverDate=30-Apr-2004&view=c&originContentFamily=serial&wchp=dGLzVlV-zSkzV&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;">“IEEE Xplore Full Text PDF.” Accessed: Feb. 14, 2012. [Online]. Available: http://ieeexplore.ieee.org/ielx5/5326/4663233/04633624.pdf?tp=&arnumber=4633624&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, “Experience Breeding in Process-Aware Information Systems,” in <i>Advanced Information Systems Engineering</i>, C. Salinesi, M. C. Norrie, and Ó. Pastor, Eds. Springer Berlin Heidelberg, 2013, pp. 594–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;">“Full Text PDF.” 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;">“Snapshot.” 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, “Does My Service Have Partners?,” in <i>Transactions on Petri Nets and Other Models of Concurrency II</i>, 2009, pp. 152–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, “Rule-Based Synchronization of Process Activities,” in <i>2011 IEEE 13th Conference on Commerce and Enterprise Computing (CEC)</i>, Sep. 2011, pp. 121–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, “Process Mining and Verification of Properties: An Approach based on Temporal Logic,” in <i>Int’l OnTheMove Conferences</i>, 2005, vol. 3761, pp. 130–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:
|
251
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
252
|
-
Collaborative Project Management (CPM)
|
253
|
-
Reference Model;,” 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, “Strategies for manufacturing,” <i>Scientific American</i>, vol. 261, no. 3, pp. 144–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:
|
257
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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:
|
261
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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, “On Evolving Organizational Models without Loosing Control on Authorization Constraints in Web Service Orchestrations,” 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:
|
265
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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, “Balancing Flexibility and Security in Adaptive Process Management Systems,” 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:
|
269
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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>, “Expressing and Verifying Business Contracts with Abductive,” in <i>Int’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:
|
273
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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, “ILOG JRules and IBM MQWF – White Paper.”</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:
|
277
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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, “Cloud Process Execution Engine-Evaluation of the Core Concepts,” <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, “Cross-Organizational Workflow Integration using Contracts,” 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, “Dynamic Instance Queuing in Process-Aware Information Systems,” 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, “Building a modular service oriented workflow engine,” in <i>Service-Oriented Computing and Applications (SOCA), 2009 IEEE International Conference on</i>, 2010, pp. 1–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, “Temporal Conformance of Federated Choreographies,” in <i>Database and Expert Systems Applications</i>, 2008, pp. 668–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örster, G. Engels, T. Schattkowsky, and R. V. der Straeten, “Verification of Business Process Quality Constraints Based on Visual Process Patterns,” 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, “Collaborative Project Management  RECOMMENDATION Collaborative Project Management (CPM) Reference Model;,” 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, “SPRINT- Responsibilities: Design and Development of Security Policies in Process-aware Information Systems,” <i>Journal of Wireless Mobile Networks, Ubiquitous Computing, and Dependable Applications (JoWUA)</i>, vol. 2, no. 4, pp. 1–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, “Interorganizational Workflows: An Approach based on Message Sequence Charts and Petri Nets,” <i>Systems Analysis - Modeling - Simulation</i>, vol. 34, no. 3, pp. 335–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, “Governance, Risk and Compliance Management with ARIS,” 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, “Towards Enhancing Business Process Monitoring with Sonification,” 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, “BONAPART Sarbanes-Oxley Analyser,” 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, “Mining Process Execution and Outcomes – Position Paper,” 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., “Business Process Monitoring and Management in Virtual Enterprise through Interactive User Interface Layer,” in <i>Proceedings of the 23rd International Conference on Flexible Automation & Intelligent Manufacturing (FAIM2013)</i>, Porto, Portugal, Jun. 2013, pp. 451–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, “Toward a Sonification Concept for Business Process Monitoring,” in <i>19th International Conference on Auditory Display (ICAD 2013)</i>, Lodz, Poland, Jul. 2013, pp. 323–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, “The Challenges of Service Evolution,” in <i>Proceedings of the 20th international conference on Advanced Information Systems Engineering</i>, Berlin, Heidelberg, 2008, pp. 1–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;">“Supporting Ad-hoc Changes in Distributed Workflow Management Systems. - UTpublications.” 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, “Supporting Ad-Hoc Changes in Distributed Workflow Management Systems,” 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–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;">“Full Text PDF.” 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;">“Snapshot.” 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;">“Full Text PDF.” 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;">“Snapshot.” 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;">“Full Text PDF.” 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;">“Snapshot.” 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, “Workflow Management Systems: Formal Foundation, Conceptual Design, Implementation Aspects,” 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, “Adaptive Process Management with ADEPT2,” in <i>Proceedings of the 21st International Conference on Data Engineering</i>, Washington, DC, USA, 2005, pp. 1113–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;">“Full Text PDF.” 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, “Dealing with Forward and Backward Jumps in Workflow Management Systems,” <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;">“Snapshot.” 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, “Definition and Enactment of Instance-spanning Process Constraints,” 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;">“IEEE Xplore Abstract Record.” 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, “Multiparty Contracts: Agreeing and Implementing Interorganizational Processes,” <i>The Computer Journal</i>, vol. 53, no. 1, pp. 90–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;">“process type level / inter-process coordination formal description on how inter.” .</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, “Privacy Against the Business Partner: Issues for Realizing End-to-End Confidentiality in Web Service Compositions,” in <i>Database and Expert Systems Application, 2009. DEXA’09. 20th International Workshop on</i>, 2009, pp. 117–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;">“Anwendung von Model Checking für Prozess-Verifikation, Constraints werden als .” .</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, “The Forrester Wave<sup>TM</sup>: Enterprise
|
465
|
+
Governance, Risk, And
|
466
|
+
Compliance Platforms, Q3 2009,” 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:
|
281
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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, “Magic Quadrant for Enterprise Governance, Risk and Compliance Platforms,” 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:
|
285
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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, “From Public Views to Private Views – Correctness-by-Design for Services,” in <i>Web Services and Formal Methods</i>, 2008, pp. 139–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:
|
289
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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, “Towards a Theory of Services,” in <i>Information Systems and e-Business Technologies</i>, 2008, pp. 271–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:
|
293
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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, “DECLARE: Full Support for Loosely-Structured Processes.,” in <i>Int’l Enterprise Computing Conference (EDOC’07)</i>, 2007, pp. 287–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:
|
297
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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, “Pattern-based Property Specification and Verification for Service Composition,” 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:
|
301
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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, “On demand business process life cycle, Part 6: Apply customization policies and rules,” 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:
|
305
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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, “Correctness Criteria for Dynamic Changes in Workflow Systems – A Survey.,” <i>Data and Knowledge Engineering</i>, vol. 50, no. 1, pp. 9–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:
|
309
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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, “Inheritance of Interorganizational Workflows to Enable Business-to-Business E-Commerce,” <i>Electronic Commerce Research</i>, vol. 2, no. 3, pp. 195–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:
|
313
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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, “Loosely coupled interorganizational workflows: Modeling and analyzing workflows crossing organizational boundaries,” <i>Information and Management</i>, vol. 37, pp. 67–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:
|
317
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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, “The Specification and Enforcement of Authorization Constraints in WFMS.,” <i>ACM Transactions on Information and System Security</i>, vol. 2, no. 1, pp. 65–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:
|
321
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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;">“Zusammenfassung liegt vor. Recht untechnisch und allgemein, aber interessant in.” .</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:
|
325
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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;">“process level inter-process dependencies / different activities inter-workflow .” .</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:
|
329
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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;">“inter-process task coordination (between organisations) on process type level.” .</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, “Process Flexibility: A Survey of Contemporary Approaches,” in <i>Advances in Enterprise Engineering I</i>, 2008, pp. 16–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üller, “Towards a Framework for Semantic Business Process Compliance Management,” 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, “A Business Process-Based Modelling Extension for Regulatory Compliance.,” 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üller, and K. Xu, “A static compliance-checking framework for business process models,” <i>IBM Systems Journal</i>, vol. 46, no. 2, pp. 335–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, “Taming Compliance with Sarbanes-Oxley Internal Controls Using Database Technology,” in <i>Int’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, “The P2P Approach to Interorganizational Workflows.,” in <i>Int’l Conference on Advanced Information Systems Engineering</i>, 2001, pp. 140–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, “Workflow Evolution,” <i>Data and Knowledge Engineering</i>, vol. 24, no. 3, pp. 211–238, 1998.</div>
|
330
547
|
</div>
|
331
548
|
</div>
|
332
549
|
|
333
|
-
<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:
|
337
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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., “A comparison of ISO 9000:2000 quality system standards, QS9000, ISO/TS 16949 and Baldrige criteria,” <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:
|
341
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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érico, and Batocchio, Antonio, “Business Model Development for Virtual Enterprises,” Bournemouth, UK, Oct. 2012, pp. 624–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:
|
345
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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, “Product architecture assessment: a tool to link product, process, and supply chain design decisions,” <i>Journal of Operations Management</i>, vol. 23, no. 3–4, pp. 345–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:
|
349
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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, “Advanced quality planning: a guide for any organization,” <i>Quality progress</i>, vol. 31, no. 2, pp. 73–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:
|
353
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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, “Choosing Which Process Improvement Methodology to Implement.” 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:
|
357
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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, “Toward the virtual supply chain: the convergence of IT and organization,” <i>International Journal of Logistics Management, The</i>, vol. 10, no. 2, pp. 27–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:
|
361
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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, “Strategies for manufacturing,” <i>Scientific American</i>, vol. 261, no. 3, pp. 144–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:
|
365
|
-
<div class="csl-right-inline" style="margin: 0 .4em 0
|
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, “PPAP 4th Edition,” 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., “Virtual Enterprise Management to Enhance the Manufacturing Process Collaboration,” presented at the 22nd international conference on Flexible Automation and Intelligent Manufacturing  (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;">“2006PPAPManual4thEditionManual.pdf.” .</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;">“[PDF] von texas-quality.org.” 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;">“This work aims at identifying the key business model elements necessary to buil.” .</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, “Plug-and-Play Virtual Factories,” <i>IEEE Internet Computing</i>, vol. 16, no. 5, pp. 78–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, “An ‘Adventurous’ Approach towards Virtual Entrepreneurship,” 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, “SMEs and e-business,” <i>Journal of Small Business and Enterprise Development</i>, vol. 11, no. 3, pp. 280–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, “Virtual forms for the organization of production: A comparative analysis,” <i>International Journal of Production Economics</i>, vol. 110, no. 1–2, pp. 5–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, “Barriers driven methodology for enterprise interoperability,” <i>Establishing The Foundation Of Collaborative Networks</i>, pp. 453–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ánchez, M. P. Martínez-Ruiz, and A. I. Jimenez-Zarco, “Drivers, benefits and challenges of ICT adoption by small and medium sized enterprises (SMEs): A literature review,” <i>Problems and Perspectives in Management</i>, vol. 5, no. 1, pp. 104–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, “Clockspeed: Winning Industry Control in the Age of Temporary Advantage,” <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;,” 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;">
|
634
|
+
<div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">S. Zöller, A. Reinhardt, M. Wachtel, and R. Steinmetz, “Integrating Wireless Sensor Nodes and Smartphones for Energy-Efficient Data Exchange in Smart Environments,” 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–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;">
|
638
|
+
<div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">P. Kinney, “Zigbee technology: Wireless control that simply works,” 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;">
|
642
|
+
<div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">D. Culler, D. Estrin, and M. Srivastava, “Guest editors’ introduction: overview of sensor networks,” <i>Computer</i>, vol. 37, no. 8, pp. 41–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;">
|
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, “Real-time risk monitoring in business processes: A sensor-based approach,” <i>Journal of Systems and Software</i>, vol. 86, no. 11, pp. 2939–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;"
|
650
|
+
<div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">“ScienceDirect Snapshot.” 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;">
|
654
|
+
<div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">S. Zöller, C. Vollmer, M. Wachtel, R. Steinmetz, and A. Reinhardt, “Data Filtering for Wireless Sensor Networks Using Forecasting and Value of Information (accepted for publication),” 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;,” 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;">
|
662
|
+
<div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">H. Edgar, J. Callawy, and E. H. Callaway, “Wireless sensor networks: Architectures and Protocols,” <i>Boca Raton, Florida: CRC Press</i>, vol. 200, pp. 1–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;">
|
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, “Review. Monitoring the intermodal, refrigerated transport of fruit using sensor networks,” <i>Spanish Journal of Agricultural Research</i>, vol. 5, no. 2, pp. 142–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.
|
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, “Linking keeping quality models and sensor systems to an autonomous transport supervision system,” in <i>Cold Chain Management–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;">
|
674
|
+
<div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">R. Jedermann and W. Lang, “Mobile java code for embedded transport monitoring systems,” in <i>Proceedings of the Embedded World Conference</i>, Poing, 2006, pp. 771–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;">
|
678
|
+
<div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">R. Hans, M. Zahn, U. Lampe, and A. Papageorgiou, “Energy-efficient Web Service Invocation on Mobile Devices: The Influence of Compression and Parsing,” in <i>Proceedings of the 2nd International Conference on Mobile Services (MS 2013)</i>, Stanta Clara, Jun. 2013, pp. 1–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;">
|
682
|
+
<div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">S. Zöller, M. Wachtel, F. Knapp, and R. Steinmetz, “Going All the Way -- Detecting and Transmitting Events with Wireless Sensor Networks in Logistics (accepted for publication).,” 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;"
|
686
|
+
<div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">“[PDF] from upatras.gr.” 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;">
|
690
|
+
<div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">S. Zöller, A. Reinhardt, and R. Steinmetz, “Distributed Data Filtering in Logistics Wireless Sensor Networks Based on Transmission Relevance,” 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, “Trimming the Tree: Tailoring Adaptive Huffman Coding to Wireless Sensor Networks,” in <i>7th European Conference on Wireless Sensor Networks (EWSN 2010)</i>, 2010, pp. 33–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, “The Minimum Number of Sensors–Interpolation of Spatial Temperature Profiles in Chilled Transports,” in <i>6th European Conference on Wireless Sensor Networks (EWSN)</i>, 2009, pp. 232–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, “Optimal routing and data aggregation for maximizing lifetime of wireless sensor networks,” <i>Networking, IEEE/ACM Transactions on</i>, vol. 16, no. 4, pp. 892–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, “A survey on sensor networks,” <i>Communications Magazine, IEEE</i>, vol. 40, no. 8, pp. 102–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>, “Transport scenario for the intelligent container,” <i>Understanding Autonomous Cooperation and Control in Logistics</i>, pp. 393–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, “Sensor applications in the supply chain: the example of quality-based issuing of perishables,” in <i>Proceedings of the 1st international conference on The internet of things</i>, 2008, pp. 140–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, “SCAR: context-aware adaptive routing in delay tolerant mobile sensor networks,” in <i>Proceedings of the 2006 international conference on Wireless communications and mobile computing</i>, 2006, pp. 533–538.</div>
|
430
727
|
</div>
|
431
728
|
</div>
|
432
729
|
|
@@ -434,51 +731,51 @@ Reference Model;,” 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;">
|
734
|
+
<div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">S. Schulte, U. Lampe, J. Eckert, and R. Steinmetz, “LOG4SWS. KOM: Self-Adapting Semantic Web Service Discovery for SAWSDL,” in <i>2010 6th World Congress on Services</i>, 2010, pp. 511–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, “An approach to evaluate and enhance the retrieval of Semantic Web services,” in <i>Service Systems and Service Management, 2008 International Conference on</i>, 2008, pp. 1–7.</div>
|
738
|
+
<div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">S. Schulte, J. Eckert, N. Repp, and R. Steinmetz, “An approach to evaluate and enhance the retrieval of Semantic Web services,” in <i>Service Systems and Service Management, 2008 International Conference on</i>, 2008, pp. 1–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;">
|
742
|
+
<div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">D. Martin <i>et al.</i>, “Bringing semantics to web services with owl-s,” <i>World Wide Web</i>, vol. 10, no. 3, pp. 243–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;">
|
746
|
+
<div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">M. Klusch, P. Kapahnke, and I. Zinnikus, “Sawsdl-mx2: A machine-learning approach for integrating semantic web service matchmaking variants,” in <i>Web Services, 2009. ICWS 2009. IEEE International Conference on</i>, 2009, pp. 335–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;">
|
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;">
|
754
|
+
<div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">S. Schulte, N. Repp, D. Schuller, and R. Steinmetz, “From Web Service Policies to Automatic Deviation Handling: Supporting Semantic Description of Reactions to Policy Violations,” in <i>Semantic Computing, 2009. ICSC’09. IEEE International Conference on</i>, 2009, pp. 312–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.
|
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, “Process reliability in service oriented architectures,” in <i>Digital Ecosystems and Technologies, 2009. DEST ’09. 3rd IEEE International Conference on</i>, 2009, pp. 606–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;">
|
762
|
+
<div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">D. Kourtesis and I. Paraskakis, “Web service discovery in the FUSION semantic registry,” in <i>Business Information Systems</i>, 2008, pp. 285–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;">
|
766
|
+
<div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">E. Cimpian <i>et al.</i>, “Ontologies and Matchmaking,” <i>Semantic Service Provisioning</i>, pp. 19–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;">
|
770
|
+
<div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">R. Akkiraju, “Semantic Web Services,” <i>Semantic Web Services: Theory, Tools, and Applications</i>, pp. 191–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.
|
774
|
+
<div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">K. Sivashanmugam, J. A. Miller, A. P. Sheth, and K. Verma, “Framework for semantic web process composition,” <i>International Journal of Electronic Commerce</i>, vol. 9, no. 2, pp. 71–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;">
|
778
|
+
<div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">P. Plebani and B. Pernici, “Urbe: Web service retrieval based on similarity evaluation,” <i>Knowledge and Data Engineering, IEEE Transactions on</i>, vol. 21, no. 11, pp. 1629–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;,” 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, “Semantic annotations for wsdl and xml schema,” 2007.
|
790
|
+
<div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">J. Farrell, I. B. M. H. Lausen, and D. Innsbruck, “Semantic annotations for wsdl and xml schema,” 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, “UDDI Version 3.0. 2,” 2004.
|
794
|
+
<div class="csl-right-inline" style="margin: 0 .4em 0 2.5em;">L. Clement, A. Hately, C. von Riegen, T. Rogers, and others, “UDDI Version 3.0. 2,” 2004. http://www.uddi.org/pubs/uddi_v3.htm.</div>
|
498
795
|
</div>
|
499
796
|
</div>
|
500
797
|
|
@@ -502,23 +799,27 @@ Reference Model;,” 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;">
|
802
|
+
<div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">G. Dudek and H. Stadtler, “Negotiation-based collaborative planning between supply chains partners,” <i>European Journal of Operational Research</i>, vol. 163, no. 3, pp. 668–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;">
|
806
|
+
<div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">J. (Roger) Jiao, X. You, and A. Kumar, “An agent-based framework for collaborative negotiation in the global manufacturing supply chain network,” <i>Robotics and Computer-Integrated Manufacturing</i>, vol. 22, no. 3, pp. 239–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;">
|
810
|
+
<div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">Ralph Vigne, Juergen Mangler, Erich Schikuta, and Stefanie Rinderle-Ma, “WS-Agreement based Service Negotiation in a Heterogeneous Service Environment,” presented at the IEEE International Conference on Service Oriented Computing & 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, “Multiparty Contracts: Agreeing and Implementing Interorganizational Processes,” <i>The Computer Journal</i>, vol. 53, no. 1, pp. 90–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, “Multiparty Contracts: Agreeing and Implementing Interorganizational Processes,” <i>The Computer Journal</i>, vol. 53, no. 1, pp. 90–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, “Let’s Dance: A Language for Service Behavior Modeling,” 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–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;,” 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;">
|
830
|
+
<div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">D. Schuller, Ulrich Lampe, J. Eckert, R. Steinmetz, and S. Schulte, “Cost-driven Optimization of Complex Service-based Workflows for Stochastic QoS Parameters,” in <i>2012 IEEE 19th International Conference on Web Services</i>, Waikiki, Hawaii, Jun. 2012, pp. 66–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;">
|
834
|
+
<div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">S. L. Mansar and H. A. Reijers, “Best practices in business process redesign: validation of a redesign framework,” <i>Computers in Industry</i>, vol. 56, no. 5, pp. 457–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;"
|
838
|
+
<div class="csl-right-inline" style="margin: 0 .4em 0 1.5em;">“Addresses QoS aware Service Composition considering stochastic QoS attributes.” .</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, “Correctness-preserving configuration of business process models,” in <i>Proceedings of the Theory and practice of software, 11th international conference on Fundamental approaches to software engineering</i>, 2008, pp. 46–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>, “Business process mining: An industrial application,” <i>Information Systems</i>, vol. 32, no. 5, pp. 713–732, 2007.</div>
|
538
847
|
</div>
|
539
848
|
</div>
|
540
849
|
|