-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbiblio?f[author]=14.html
More file actions
1026 lines (961 loc) · 259 KB
/
biblio?f[author]=14.html
File metadata and controls
1026 lines (961 loc) · 259 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en" dir="ltr"
xmlns:fb="http://www.facebook.com/2008/fbml"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:dc="http://purl.org/dc/terms/"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:og="http://ogp.me/ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:sioc="http://rdfs.org/sioc/ns#"
xmlns:sioct="http://rdfs.org/sioc/types#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<meta name="Generator" content="Drupal 7 (http://drupal.org)" />
<title>Publications | mdslab.unime.it</title>
<style type="text/css" media="all">
@import url("http://mdslab.unime.it/modules/system/system.base.css?s5k77o");
@import url("http://mdslab.unime.it/modules/system/system.menus.css?s5k77o");
@import url("http://mdslab.unime.it/modules/system/system.messages.css?s5k77o");
@import url("http://mdslab.unime.it/modules/system/system.theme.css?s5k77o");
</style>
<style type="text/css" media="all">
@import url("http://mdslab.unime.it/modules/calendar/css/calendar_multiday.css?s5k77o");
@import url("http://mdslab.unime.it/modules/comment/comment.css?s5k77o");
@import url("http://mdslab.unime.it/modules/date/date_api/date.css?s5k77o");
@import url("http://mdslab.unime.it/modules/date/date_popup/themes/datepicker.1.7.css?s5k77o");
@import url("http://mdslab.unime.it/modules/date/date_repeat_field/date_repeat_field.css?s5k77o");
@import url("http://mdslab.unime.it/modules/field/theme/field.css?s5k77o");
@import url("http://mdslab.unime.it/modules/node/node.css?s5k77o");
@import url("http://mdslab.unime.it/modules/search/search.css?s5k77o");
@import url("http://mdslab.unime.it/modules/user/user.css?s5k77o");
@import url("sites/all/modules/views/css/views.css%3Fs5k77o.css");
@import url("sites/all/modules/ckeditor/css/ckeditor.css%3Fs5k77o.css");
</style>
<style type="text/css" media="all">
@import url("sites/all/modules/ctools/css/ctools.css%3Fs5k77o.css");
@import url("sites/all/modules/sharebar/css/sharebar.css%3Fs5k77o.css");
@import url("sites/all/modules/stickynav/css/stickynav.css%3Fs5k77o.css");
@import url("sites/all/modules/tagclouds/tagclouds.css%3Fs5k77o.css");
@import url("sites/all/modules/biblio/biblio.css%3Fs5k77o.css");
</style>
<style type="text/css" media="all">
@import url("sites/all/themes/impact_theme/style.css%3Fs5k77o.css");
</style>
<script type="text/javascript" src="http://mdslab.unime.it/misc/jquery.js?v=1.4.4"></script>
<script type="text/javascript" src="http://mdslab.unime.it/misc/jquery.once.js?v=1.2"></script>
<script type="text/javascript" src="http://mdslab.unime.it/misc/drupal.js?s5k77o"></script>
<script type="text/javascript" src="sites/all/modules/fb_likebox/fb_likebox.js%3Fs5k77o"></script>
<script type="text/javascript" src="sites/all/modules/sharebar/js/sharebar.js%3Fs5k77o"></script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
jQuery(document).ready(function($) { $('.sharebar').sharebar({horizontal:'TRUE',swidth:'75',minwidth:1000,position:'left',leftOffset:10,rightOffset:10}); });
//--><!]]>
</script>
<script type="text/javascript" src="sites/all/modules/stickynav/js/stickynav.js%3Fs5k77o"></script>
<script type="text/javascript" src="sites/all/modules/google_analytics/googleanalytics.js%3Fs5k77o"></script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
(function(i,s,o,g,r,a,m){i["GoogleAnalyticsObject"]=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,"script","//www.google-analytics.com/analytics.js","ga");ga("create", "UA-64466975-1", {"cookieDomain":"auto"});ga("set", "anonymizeIp", true);ga("send", "pageview");
//--><!]]>
</script>
<script type="text/javascript" src="sites/all/themes/impact_theme/js/main-menu.js%3Fs5k77o"></script>
<script type="text/javascript" src="sites/all/themes/impact_theme/js/pngfix.min.js%3Fs5k77o"></script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
jQuery.extend(Drupal.settings, {"basePath":"\/","pathPrefix":"","ajaxPageState":{"theme":"impact_theme","theme_token":"z1RWUTHuc6lHJDH7e1iBIFtgFooIT4DpLxgw9TIYOGw","js":{"modules\/addthis\/addthis.js":1,"misc\/jquery.js":1,"misc\/jquery.once.js":1,"misc\/drupal.js":1,"sites\/all\/modules\/fb_likebox\/fb_likebox.js":1,"sites\/all\/modules\/sharebar\/js\/sharebar.js":1,"0":1,"sites\/all\/modules\/stickynav\/js\/stickynav.js":1,"sites\/all\/modules\/google_analytics\/googleanalytics.js":1,"1":1,"sites\/all\/themes\/impact_theme\/js\/main-menu.js":1,"sites\/all\/themes\/impact_theme\/js\/pngfix.min.js":1},"css":{"modules\/system\/system.base.css":1,"modules\/system\/system.menus.css":1,"modules\/system\/system.messages.css":1,"modules\/system\/system.theme.css":1,"modules\/calendar\/css\/calendar_multiday.css":1,"modules\/comment\/comment.css":1,"modules\/date\/date_api\/date.css":1,"modules\/date\/date_popup\/themes\/datepicker.1.7.css":1,"modules\/date\/date_repeat_field\/date_repeat_field.css":1,"modules\/field\/theme\/field.css":1,"modules\/node\/node.css":1,"modules\/search\/search.css":1,"modules\/user\/user.css":1,"sites\/all\/modules\/views\/css\/views.css":1,"sites\/all\/modules\/ckeditor\/css\/ckeditor.css":1,"sites\/all\/modules\/ctools\/css\/ctools.css":1,"sites\/all\/modules\/sharebar\/css\/sharebar.css":1,"sites\/all\/modules\/stickynav\/css\/stickynav.css":1,"sites\/all\/modules\/tagclouds\/tagclouds.css":1,"sites\/all\/modules\/biblio\/biblio.css":1,"sites\/all\/themes\/impact_theme\/style.css":1}},"stickynav":{"selector":"#navigation"},"googleanalytics":{"trackOutbound":1,"trackMailto":1,"trackDownload":1,"trackDownloadExtensions":"7z|aac|arc|arj|asf|asx|avi|bin|csv|doc(x|m)?|dot(x|m)?|exe|flv|gif|gz|gzip|hqx|jar|jpe?g|js|mp(2|3|4|e?g)|mov(ie)?|msi|msp|pdf|phps|png|ppt(x|m)?|pot(x|m)?|pps(x|m)?|ppam|sld(x|m)?|thmx|qtm?|ra(m|r)?|sea|sit|tar|tgz|torrent|txt|wav|wma|wmv|wpd|xls(x|m|b)?|xlt(x|m)|xlam|xml|z|zip"},"sharebar":{"cls":"#sharebar","hrcls":"#sharebarx"},"urlIsAjaxTrusted":{"\/biblio?destination=biblio%3Ff%5Bauthor%5D%3D14":true}});
//--><!]]>
</script>
<!--[if lt IE 9]><script src="/sites/all/themes/impact_theme/js/html5.js"></script><![endif]-->
</head>
<body class="html not-front not-logged-in one-sidebar sidebar-first page-biblio">
<div id="wrapper">
<header id="header" class="clearfix">
<div id="site-logo"><a href="index.html" title="Home">
<img src="sites/default/files/mdslogo2_1.png" alt="Home" />
</a></div> <nav id="navigation" role="navigation">
<div id="main-menu">
<ul class="menu"><li class="first leaf"><a href="index.html">Home</a></li>
<li class="expanded"><a href="node/11.html">About Us</a><ul class="menu"><li class="first leaf"><a href="node/218.html">Contact Us</a></li>
<li class="leaf"><a href="node/412.html">Infrastructure</a></li>
<li class="last leaf"><a href="locationmap.html" title="">Where we are</a></li>
</ul></li>
<li class="collapsed"><a title="" class="nolink">News & Events</a></li>
<li class="leaf"><a href="people.html">People</a></li>
<li class="collapsed"><a href="research-activities.html" title="">Research</a></li>
<li class="expanded active-trail"><a href="biblio/filter/clear.html" title="" class="active-trail active">Publications</a><ul class="menu"><li class="first leaf active-trail"><a href="biblio/filter/clear.html" title="" class="active-trail active">All</a></li>
<li class="leaf"><a href="show-cp.html" title="">Conference Procedeeing</a></li>
<li class="last leaf"><a href="journals.html" title="">Journals</a></li>
</ul></li>
<li class="leaf"><a href="projects.html">Projects</a></li>
<li class="leaf"><a href="partnership.html">Partnership</a></li>
<li class="leaf"><a href="node/220.html">Awards</a></li>
<li class="last leaf"><a href="node/10.html">Teaching</a></li>
</ul> </div>
</nav>
</header>
<div id="main" class="clearfix">
<div id="primary">
<section id="content" role="main">
<div id="breadcrumbs"><h2 class="element-invisible">You are here</h2><nav class="breadcrumb"><a href="index.html">Home</a> » Publications</nav></div> <div id="content-wrap">
<h1 class="page-title">Publications</h1> <div class="region region-content">
<ul id="sharebar" style="background:#FFFFFF;border-color:#CCCCCC;margin-top:8px;"><li><script src="http://platform.linkedin.com/in.js" type="text/javascript">
lang: en_US</script><script type="IN/Share" data-url="http://mdslab.unime.it/biblio" data-counter="top"></script></li><li><!-- Place this tag where you want the +1 button to render. -->
<div class="g-plusone" data-size="tall" data-href="http://mdslab.unime.it/biblio"></div><!-- Place this tag after the last +1 button tag. -->
<script type="text/javascript">(function() {var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;po.src = 'https://apis.google.com/js/plusone.js';var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);})();</script></li><li><a href="http://twitter.com/share" class="twitter-share-button" data-url="http://mdslab.unime.it/biblio"data-count="vertical" data-via="nmudgal">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></li><li><div id="fb-root"></div> <script>(function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "//connect.facebook.net/en_US/all.js#xfbml=1"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk'));</script> <html xmlns:fb="http://ogp.me/ns/fb#"> <fb:like href="http://mdslab.unime.it/biblio" send="true" layout="box_count" width="450" show_faces="true"></fb:like></li><li><script type="text/javascript">(function() { var s = document.createElement('SCRIPT\), s1 = document.getElementsByTagName('SCRIPT')[0]; s.type = 'text/javascript'; s.async = true; s.src = 'http://widgets.digg.com/buttons.js'; s1.parentNode.insertBefore(s, s1); })(); </script><a class="DiggThisButton DiggMedium"></a></li><li><script language="javascript" src="http://widgets.dzone.com/links/widgets/zoneit.js"></script></li><li><a href="mailto:?subject=http://mdslab.unime.it/biblio" class="sharebar-button email">Email</a></li></ul><ul id="sharebarx"<li><script src="http://platform.linkedin.com/in.js" type="text/javascript">
lang: en_US</script><script type="IN/Share" data-url="http://mdslab.unime.it/biblio" data-counter="right"></script></li><li><!-- Place this tag where you want the +1 button to render. --><div class="g-plusone" data-href="http://mdslab.unime.it/biblio"></div><!-- Place this tag after the last +1 button tag. --><script type="text/javascript">(function() {var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;po.src = 'https://apis.google.com/js/plusone.js';var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);})();</script></li><li><a href="http://twitter.com/share" class="twitter-share-button" data-url="http://mdslab.unime.it/biblio" data-count="horizontal" data-via="nmudgal">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></li><li><div id="fb-root"></div> <script>(function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "//connect.facebook.net/en_US/all.js#xfbml=1"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk'));</script> <html xmlns:fb="http://ogp.me/ns/fb#"> <fb:like href="http://mdslab.unime.it/biblio" send="true" layout="button_count" width="450" show_faces="true"></fb:like></li><li><script type="text/javascript">(function() { var s = document.createElement('SCRIPT'), s1 = document.getElementsByTagName('SCRIPT')[0]; s.type = 'text/javascript'; s.async = true; s.src = 'http://widgets.digg.com/buttons.js'; s1.parentNode.insertBefore(s, s1); })(); </script><a class="DiggThisButton DiggCompact"></a></li><li><script language="javascript" src="http://widgets.dzone.com/links/widgets/zoneit.js"></script></li><li><a href="mailto:?subject=http://mdslab.unime.it/biblio" class="sharebar-button email">Email</a></li></ul><div id="block-system-main" class="block block-system">
<div class="content">
<div id="biblio-header" class="clear-block"><div class="biblio-export">Export 1 results: <ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex%3Ff[author]=14" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf%3Ff[author]=14" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-filter-status"><div class="biblio-current-filters"><b>Filters: </b><strong><em class="placeholder">Author</em></strong> is <strong><em class="placeholder">Antonio Puliafito</em></strong> <a href="biblio/filter/clear.html">[Clear All Filters]</a></div></div></div><div class="biblio-category-section"><div class="biblio-separator-bar">In Press</div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=113.html" rel="nofollow" class="biblio-local-author active">Giacobbe, M.</a>, <a href="biblio%3Ff[author]=584.html" rel="nofollow" class="active">F. Alessi</a>, <a href="biblio%3Ff[author]=391.html" rel="nofollow" class="active">A. Zaia</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title"><i><a href="node/638.html">Arancino.cc(TM): an open hardware platform for urban regeneration</a>, </i></span>
, In Press.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Arancino.cc%28TM%29%3A+an+open+hardware+platform+for+urban+regeneration&rft.date=9998&rft.aulast=Giacobbe&rft.aufirst=Maurizio&rft.au=Alessi%2C+Francesco&rft.au=Zaia%2C+Angelo&rft.au=Puliafito%2C+Antonio"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/638" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/638" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div></div><div class="biblio-category-section"><div class="biblio-separator-bar">2020</div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=551.html" rel="nofollow" class="active">Cicceri, G.</a>, <a href="biblio%3Ff[author]=552.html" rel="nofollow" class="active">F. De Vita</a>, <a href="biblio%3Ff[author]=93.html" rel="nofollow" class="active">D. Bruneo</a>, <a href="biblio%3Ff[author]=91.html" rel="nofollow" class="active">G. Merlino</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/613.html">A deep learning approach for pressure ulcer prevention using wearable computing</a>", </span>
<i>Human-centric Computing and Information Sciences</i>, vol. 10, 2020.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.atitle=A+deep+learning+approach+for+pressure+ulcer+prevention+using+wearable+computing&rft.title=Human-centric+Computing+and+Information+Sciences&rft.date=2020&rft.volume=10&rft.aulast=Cicceri&rft.aufirst=Giovanni&rft.au=De+Vita%2C+Fabrizio&rft.au=Bruneo%2C+Dario&rft.au=Merlino%2C+Giovanni&rft.au=Puliafito%2C+Antonio&rft_id=info%3Adoi%2F10.1186%2Fs13673-020-0211-8"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/613" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/613" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=455.html" rel="nofollow" class="active">Tapas, N.</a>, <a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">F. Longo</a>, <a href="biblio%3Ff[author]=91.html" rel="nofollow" class="active">G. Merlino</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/630.html">Experimenting with smart contracts for access control and delegation in IoT</a>", </span>
<i>Future Generation Computer Systems</i>, vol. 111, pp. 324 - 338, 2020.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.atitle=Experimenting+with+smart+contracts+for+access+control+and+delegation+in+IoT&rft.title=Future+Generation+Computer+Systems&rft.issn=0167-739X&rft.date=2020&rft.volume=111&rft.spage=324&rft.epage=338&rft.aulast=Tapas&rft.aufirst=Nachiket&rft.au=Longo%2C+Francesco&rft.au=Merlino%2C+Giovanni&rft.au=Puliafito%2C+Antonio&rft_id=info%3Adoi%2Fhttps%3A%2F%2Fdoi.org%2F10.1016%2Fj.future.2020.04.020"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/630" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/630" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div></div><div class="biblio-category-section"><div class="biblio-separator-bar">2019</div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=113.html" rel="nofollow" class="biblio-local-author active">Giacobbe, M.</a>, <a href="biblio%3Ff[author]=451.html" rel="nofollow" class="active">M. Gabriella Xibilia</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/550.html">Building a Digital Business Technology Platform in the Industry 4.0 Era</a>", </span>
<i>Accepted for the 1st International Conference on Smart Innovation, Ergonomics and Applied Human Factors (SEAHF)</i>, Madrid, Spain, 2019.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Building+a+Digital+Business+Technology+Platform+in+the+Industry+4.0+Era&rft.date=2019&rft.aulast=Giacobbe&rft.aufirst=Maurizio&rft.au=Xibilia%2C+Maria&rft.au=Puliafito%2C+Antonio&rft.au=Puliafito%2C+Antonio&rft.place=Madrid%2C+Spain"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/550" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/550" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=379.html" rel="nofollow" class="active">Puliafito, C.</a>, <a href="biblio%3Ff[author]=467.html" rel="nofollow" class="active">E. Mingozzi</a>, <a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">F. Longo</a>, <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, and <a href="biblio%3Ff[author]=480.html" rel="nofollow" class="active">O. Rana</a>, </span>
<span class="biblio-title">"<a href="node/556.html">Fog computing for the Internet of Things: A survey</a>", </span>
<i>ACM Transactions on Internet Technology - ACM</i>, vol. 19, no. 2: Association for Computing Machinery, 2019.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.atitle=Fog+computing+for+the+Internet+of+Things%3A+A+survey&rft.title=ACM+Transactions+on+Internet+Technology+-+ACM&rft.issn=15335399&rft.date=2019&rft.volume=19&rft.aulast=Puliafito&rft.aufirst=Carlo&rft.au=Mingozzi%2C+Enzo&rft.au=Longo%2C+Francesco&rft.au=Puliafito%2C+Antonio&rft.au=Rana%2C+Omer&rft.pub=Association+for+Computing+Machinery&rft_id=info%3Adoi%2F10.1145%2F3301443"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/556" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/556" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=389.html" rel="nofollow" class="active">Di Pietro, R.</a>, <a href="biblio%3Ff[author]=119.html" rel="nofollow" class="active">M. Scarpa</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/558.html">How much enhancing Confidentiality and Integrity on data can affect Mobile Multi-Cloud: The ARIANNA Experience</a>", </span>
<i>28th IEEE International Conference on Enabling Technologies: Infrastructure for Collaborative Enterprises (WETICE-2019)</i>, Capri (Napoli), Italy, IEEE, 06/2019.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=How+much+enhancing+Confidentiality+and+Integrity+on+data+can+affect+Mobile+Multi-Cloud%3A+The+ARIANNA+Experience&rft.date=2019&rft.aulast=Di+Pietro&rft.aufirst=Riccardo&rft.au=Scarpa%2C+Marco&rft.au=Puliafito%2C+Antonio&rft.au=Puliafito%2C+Antonio&rft.pub=IEEE&rft.place=Capri+%28Napoli%29%2C+Italy"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/558" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/558" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=93.html" rel="nofollow" class="active">Bruneo, D.</a>, <a href="biblio%3Ff[author]=90.html" rel="nofollow" class="active">S. Distefano</a>, <a href="biblio%3Ff[author]=113.html" rel="nofollow" class="biblio-local-author active">M. Giacobbe</a>, <a href="biblio%3Ff[author]=410.html" rel="nofollow" class="active">A. Longo Minnolo</a>, <a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">F. Longo</a>, <a href="biblio%3Ff[author]=91.html" rel="nofollow" class="active">G. Merlino</a>, <a href="biblio%3Ff[author]=15.html" rel="nofollow" class="active">D. Mulfari</a>, <a href="biblio%3Ff[author]=125.html" rel="nofollow" class="active">A. Panarello</a>, <a href="biblio%3Ff[author]=454.html" rel="nofollow" class="active">G. Patanè</a>, <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, et al., </span>
<span class="biblio-title">"<a href="node/549.html">An IoT service ecosystem for Smart Cities: The #SmartME project</a>", </span>
<i>Internet of Things - Elsevier</i>, vol. 5, pp. 12-33, 2019.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.atitle=An+IoT+service+ecosystem+for+Smart+Cities%3A+The+%23SmartME+project&rft.title=Internet+of+Things+-+Elsevier&rft.issn=2542-6605&rft.date=2019&rft.volume=5&rft.spage=12&rft.epage=33&rft.aulast=Bruneo&rft.aufirst=Dario&rft.au=Distefano%2C+Salvatore&rft.au=Giacobbe%2C+Maurizio&rft.au=Minnolo%2C+Antonino&rft.au=Longo%2C+Francesco&rft.au=Merlino%2C+Giovanni&rft.au=Mulfari%2C+Davide&rft.au=Panarello%2C+Alfonso&rft.au=Patan%C3%A8%2C+Giuseppe&rft.au=Puliafito%2C+Antonio&rft.au=Puliafito%2C+Carlo&rft.au=Tapas%2C+Nachiket&rft_id=info%3Adoi%2Fhttps%3A%2F%2Fdoi.org%2F10.1016%2Fj.iot.2018.11.004"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/549" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/549" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div></div><div class="biblio-category-section"><div class="biblio-separator-bar">2018</div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=389.html" rel="nofollow" class="active">Di Pietro, R.</a>, <a href="biblio%3Ff[author]=119.html" rel="nofollow" class="active">M. Scarpa</a>, <a href="biblio%3Ff[author]=113.html" rel="nofollow" class="biblio-local-author active">M. Giacobbe</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/538.html">An Approach to Enhancing Confidentiality and Integrity on Mobile Multi-Cloud Systems: The “ARIANNA” Experience</a>", </span>
<i>The Fourth IEEE International Workshop on Mobile Cloud Computing systems, Management, and Security (MCSMS-2018)</i>, Valencia, Spain, 10/2018.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=An+Approach+to+Enhancing+Confidentiality+and+Integrity+on+Mobile+Multi-Cloud+Systems%3A+The+%E2%80%9CARIANNA%E2%80%9D+Experience&rft.date=2018&rft.aulast=Di+Pietro&rft.aufirst=Riccardo&rft.au=Scarpa%2C+Marco&rft.au=Giacobbe%2C+Maurizio&rft.au=Puliafito%2C+Antonio&rft.place=Valencia%2C+Spain"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/538" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/538" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=113.html" rel="nofollow" class="biblio-local-author active">Giacobbe, M.</a>, <a href="biblio%3Ff[author]=390.html" rel="nofollow" class="active">G. Pellegrino</a>, <a href="biblio%3Ff[author]=119.html" rel="nofollow" class="active">M. Scarpa</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/533.html">An approach to implement the “Smart Office” idea: the #SmartMe Energy system</a>", </span>
<i> Journal of Ambient Intelligence and Humanized Computing</i>, pp. 1-19, 05/2018.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.atitle=An+approach+to+implement+the+%E2%80%9CSmart+Office%E2%80%9D+idea%3A+the+%23SmartMe+Energy+system&rft.title=+Journal+of+Ambient+Intelligence+and+Humanized+Computing&rft.issn=1868-5145&rft.date=2018&rft.spage=1&rft.epage=19&rft.aulast=Giacobbe&rft.aufirst=Maurizio&rft.au=Pellegrino%2C+Giuseppe&rft.au=Scarpa%2C+Marco&rft.au=Puliafito%2C+Antonio&rft_id=info%3Adoi%2F10.1007%2Fs12652-018-0809-0"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/533" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/533" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=125.html" rel="nofollow" class="active">Panarello, A.</a>, <a href="biblio%3Ff[author]=455.html" rel="nofollow" class="active">N. Tapas</a>, <a href="biblio%3Ff[author]=91.html" rel="nofollow" class="active">G. Merlino</a>, <a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">F. Longo</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/554.html">Blockchain and iot integration: A systematic survey</a>", </span>
<i>Sensors - MDPI</i>, vol. 18, no. 8: MDPI AG, 2018.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.atitle=Blockchain+and+iot+integration%3A+A+systematic+survey&rft.title=Sensors+-+MDPI&rft.issn=14248220&rft.date=2018&rft.volume=18&rft.aulast=Panarello&rft.aufirst=Alfonso&rft.au=Tapas%2C+Nachiket&rft.au=Merlino%2C+Giovanni&rft.au=Longo%2C+Francesco&rft.au=Puliafito%2C+Antonio&rft.pub=MDPI+AG&rft_id=info%3Adoi%2F10.3390%2Fs18082575"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/554" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/554" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=93.html" rel="nofollow" class="active">Bruneo, D.</a>, <a href="biblio%3Ff[author]=453.html" rel="nofollow" class="active">S. Chillari</a>, <a href="biblio%3Ff[author]=90.html" rel="nofollow" class="active">S. Distefano</a>, <a href="biblio%3Ff[author]=113.html" rel="nofollow" class="biblio-local-author active">M. Giacobbe</a>, <a href="biblio%3Ff[author]=410.html" rel="nofollow" class="active">A. Longo Minnolo</a>, <a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">F. Longo</a>, <a href="biblio%3Ff[author]=91.html" rel="nofollow" class="active">G. Merlino</a>, <a href="biblio%3Ff[author]=15.html" rel="nofollow" class="active">D. Mulfari</a>, <a href="biblio%3Ff[author]=125.html" rel="nofollow" class="active">A. Panarello</a>, <a href="biblio%3Ff[author]=454.html" rel="nofollow" class="active">G. Patanè</a>, et al., </span>
<span class="biblio-title">"<a href="node/535.html">Building a Smart City Service Platform in Messina with the #SmartME Project</a>", </span>
<i>The 32nd IEEE International Conference on Advanced Information Networking and Applications (IEEE AINA-2018)</i>, Pedagogical University of Cracow, Poland, 05/2018.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Building+a+Smart+City+Service+Platform+in+Messina+with+the+%23SmartME+Project&rft.date=2018&rft.aulast=Bruneo&rft.aufirst=Dario&rft.au=Chillari%2C+Sebastiano&rft.au=Distefano%2C+Salvatore&rft.au=Giacobbe%2C+Maurizio&rft.au=Minnolo%2C+Antonino&rft.au=Longo%2C+Francesco&rft.au=Merlino%2C+Giovanni&rft.au=Mulfari%2C+Davide&rft.au=Panarello%2C+Alfonso&rft.au=Patan%C3%A8%2C+Giuseppe&rft.au=Puliafito%2C+Antonio&rft.au=Puliafito%2C+Carlo&rft.au=Scarpa%2C+Marco&rft.au=Tapas%2C+Nachiket&rft.au=Visalli%2C+Giancarlo&rft.au=Visalli%2C+Giancarlo&rft.place=Pedagogical+University+of+Cracow%2C+Poland"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/535" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/535" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=462.html" rel="nofollow" class="active">Dautov, R.</a>, <a href="biblio%3Ff[author]=90.html" rel="nofollow" class="active">S. Distefano</a>, <a href="biblio%3Ff[author]=93.html" rel="nofollow" class="active">D. Bruneo</a>, <a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">F. Longo</a>, <a href="biblio%3Ff[author]=91.html" rel="nofollow" class="active">G. Merlino</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/544.html">Data Processing in Cyber-Physical-Social Systems Through Edge Computing</a>", </span>
<i>IEEE Access - IEEE</i>, vol. 6: Institute of Electrical and Electronics Engineers Inc., pp. 29822-29835, 2018.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.atitle=Data+Processing+in+Cyber-Physical-Social+Systems+Through+Edge+Computing&rft.title=IEEE+Access+-+IEEE&rft.issn=21693536&rft.date=2018&rft.volume=6&rft.spage=29822&rft.epage=29835&rft.aulast=Dautov&rft.aufirst=Rustem&rft.au=Distefano%2C+Salvatore&rft.au=Bruneo%2C+Dario&rft.au=Longo%2C+Francesco&rft.au=Merlino%2C+Giovanni&rft.au=Puliafito%2C+Antonio&rft.pub=Institute+of+Electrical+and+Electronics+Engineers+Inc.&rft_id=info%3Adoi%2F10.1109%2FACCESS.2018.2839915"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/544" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/544" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=458.html" rel="nofollow" class="active">Zanafi, S.</a>, <a href="biblio%3Ff[author]=113.html" rel="nofollow" class="biblio-local-author active">M. Giacobbe</a>, <a href="biblio%3Ff[author]=119.html" rel="nofollow" class="active">M. Scarpa</a>, <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, and <a href="biblio%3Ff[author]=459.html" rel="nofollow" class="active">N. Aknin</a>, </span>
<span class="biblio-title">"<a href="node/547.html">Enabling Sustainable Smart Environments Using Fog Computing</a>", </span>
<i>The 1st International Conference on Electronics, Control, Optimization and Computer Science (ICECOCS’18)</i>, Kenitra - Morocco, IEEE, 12/2018.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Enabling+Sustainable+Smart+Environments+Using+Fog+Computing&rft.date=2018&rft.aulast=Zanafi&rft.aufirst=Sarah&rft.au=Giacobbe%2C+Maurizio&rft.au=Scarpa%2C+Marco&rft.au=Puliafito%2C+Antonio&rft.au=Aknin%2C+Noura&rft.au=Aknin%2C+Noura&rft.pub=IEEE&rft.place=Kenitra+-+Morocco"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/547" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/547" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=113.html" rel="nofollow" class="biblio-local-author active">Giacobbe, M.</a>, <a href="biblio%3Ff[author]=389.html" rel="nofollow" class="active">R. Di Pietro</a>, <a href="biblio%3Ff[author]=410.html" rel="nofollow" class="active">A. Longo Minnolo</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/536.html">Evaluating Information Quality In Delivering IoT-as-a-Service</a>", </span>
<i>4th IEEE International Workshop on Sensors and Smart Cities, in conjunction with the 4th IEEE Conference on Smart Computing (SmartComp)</i>, Taormina, Sicily, Italy, 06/2018.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Evaluating+Information+Quality+In+Delivering+IoT-as-a-Service&rft.date=2018&rft.aulast=Giacobbe&rft.aufirst=Maurizio&rft.au=Di+Pietro%2C+Riccardo&rft.au=Minnolo%2C+Antonino&rft.au=Puliafito%2C+Antonio&rft.place=Taormina%2C+Sicily%2C+Italy"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/536" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/536" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=113.html" rel="nofollow" class="biblio-local-author active">Giacobbe, M.</a>, <a href="biblio%3Ff[author]=470.html" rel="nofollow" class="active">C. Chaouch</a>, <a href="biblio%3Ff[author]=119.html" rel="nofollow" class="active">M. Scarpa</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/548.html">An Implementation Of InfluxDB For Monitoring And Analytics In Distributed IoT Environments</a>", </span>
<i>Science of Electronics, Technologies of Information and Telecommunication Conference (SETIT 2018)</i>, Hammamet, Tunisia, Springer, 12/2018.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=An+Implementation+Of+InfluxDB+For+Monitoring+And+Analytics+In+Distributed+IoT+Environments&rft.date=2018&rft.aulast=Giacobbe&rft.aufirst=Maurizio&rft.au=Chaouch%2C+Chakib&rft.au=Scarpa%2C+Marco&rft.au=Puliafito%2C+Antonio&rft.pub=Springer&rft.place=Hammamet%2C+Tunisia"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/548" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/548" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=93.html" rel="nofollow" class="active">Bruneo, D.</a>, <a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">F. Longo</a>, <a href="biblio%3Ff[author]=91.html" rel="nofollow" class="active">G. Merlino</a>, <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, and <a href="biblio%3Ff[author]=442.html" rel="nofollow" class="active">N. Kushwaha</a>, </span>
<span class="biblio-title">"<a href="node/541.html">Integrating IoT and cloud in a smart city context: The #SmartME case study</a>", </span>
<i>International Journal of Computer Applications in Technology - Inderscience Enterprises Ltd.</i>, vol. 57, no. 4: Inderscience Enterprises Ltd., pp. 267-280, 2018.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.atitle=Integrating+IoT+and+cloud+in+a+smart+city+context%3A+The+%23SmartME+case+study&rft.title=International+Journal+of+Computer+Applications+in+Technology+-+Inderscience+Enterprises+Ltd.&rft.issn=09528091&rft.date=2018&rft.volume=57&rft.spage=267&rft.epage=280&rft.aulast=Bruneo&rft.aufirst=Dario&rft.au=Longo%2C+Francesco&rft.au=Merlino%2C+Giovanni&rft.au=Puliafito%2C+Antonio&rft.au=Kushwaha%2C+Nidhi&rft.pub=Inderscience+Enterprises+Ltd.&rft_id=info%3Adoi%2F10.1504%2FIJCAT.2018.093528"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/541" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/541" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=93.html" rel="nofollow" class="active">Bruneo, D.</a>, <a href="biblio%3Ff[author]=90.html" rel="nofollow" class="active">S. Distefano</a>, <a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">F. Longo</a>, <a href="biblio%3Ff[author]=91.html" rel="nofollow" class="active">G. Merlino</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/530.html">I/Ocloud: Adding an IoT dimension to cloud infrastructures</a>", </span>
<i>Computer</i>, vol. 51, issue 1, no. 1: IEEE Computer Society, pp. 57-65, 2018.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.atitle=I%2FOcloud%3A+Adding+an+IoT+dimension+to+cloud+infrastructures&rft.title=Computer&rft.issn=00189162&rft.date=2018&rft.volume=51&rft.issue=1&rft.spage=57&rft.epage=65&rft.aulast=Bruneo&rft.aufirst=Dario&rft.au=Distefano%2C+Salvatore&rft.au=Longo%2C+Francesco&rft.au=Merlino%2C+Giovanni&rft.au=Puliafito%2C+Antonio&rft.pub=IEEE+Computer+Society"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/530" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/530" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=462.html" rel="nofollow" class="active">Dautov, R.</a>, <a href="biblio%3Ff[author]=90.html" rel="nofollow" class="active">S. Distefano</a>, <a href="biblio%3Ff[author]=93.html" rel="nofollow" class="active">D. Bruneo</a>, <a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">F. Longo</a>, <a href="biblio%3Ff[author]=91.html" rel="nofollow" class="active">G. Merlino</a>, <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, and <a href="biblio%3Ff[author]=463.html" rel="nofollow" class="active">R. Buyya</a>, </span>
<span class="biblio-title">"<a href="node/542.html">Metropolitan intelligent surveillance systems for urban areas by harnessing IoT and edge computing paradigms</a>", </span>
<i>Software - Practice and Experience - John Wiley & Sons, Ltd.</i>, vol. 48, no. 8: John Wiley and Sons Ltd, pp. 1475-1492, 2018.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.atitle=Metropolitan+intelligent+surveillance+systems+for+urban+areas+by+harnessing+IoT+and+edge+computing+paradigms&rft.title=Software+-+Practice+and+Experience+-+John+Wiley+%26amp%3B+Sons%2C+Ltd.&rft.issn=00380644&rft.date=2018&rft.volume=48&rft.spage=1475&rft.epage=1492&rft.aulast=Dautov&rft.aufirst=Rustem&rft.au=Distefano%2C+Salvatore&rft.au=Bruneo%2C+Dario&rft.au=Longo%2C+Francesco&rft.au=Merlino%2C+Giovanni&rft.au=Puliafito%2C+Antonio&rft.au=Buyya%2C+Rajkumar&rft.pub=John+Wiley+and+Sons+Ltd&rft_id=info%3Adoi%2F10.1002%2Fspe.2586"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/542" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/542" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=113.html" rel="nofollow" class="biblio-local-author active">Giacobbe, M.</a>, <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, <a href="biblio%3Ff[author]=119.html" rel="nofollow" class="active">M. Scarpa</a>, and <a href="biblio%3Ff[author]=451.html" rel="nofollow" class="active">M. Gabriella Xibilia</a>, </span>
<span class="biblio-title">"<a href="node/531.html">A NOVEL IOT-AS-A-SERVICE STRATEGY TO ACHIEVE ENERGY AND COST SAVING IN MICROGRIDS</a>", </span>
<i>International Journal of Engineering and Technology(UAE)</i>, vol. 7, issue 16, Madrid, Spain, 10/2018.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.atitle=A+NOVEL+IOT-AS-A-SERVICE+STRATEGY++TO+ACHIEVE+ENERGY+AND+COST+SAVING+IN+MICROGRIDS&rft.title=International+Journal+of+Engineering+and+Technology%28UAE%29&rft.issn=2227-524X&rft.date=2018&rft.volume=7&rft.issue=16&rft.aulast=Giacobbe&rft.aufirst=Maurizio&rft.au=Puliafito%2C+Antonio&rft.au=Scarpa%2C+Marco&rft.au=Xibilia%2C+Maria&rft.place=Madrid%2C+Spain"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/531" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/531" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=475.html" rel="nofollow" class="active">Maisano, R.</a>, <a href="biblio%3Ff[author]=476.html" rel="nofollow" class="active">V. Tomaselli</a>, <a href="biblio%3Ff[author]=477.html" rel="nofollow" class="active">A. Capra</a>, <a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">F. Longo</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/553.html">Reducing Complexity of 3D Indoor Object Detection</a>", </span>
<i>IEEE 4th International Forum on Research and Technologies for Society and Industry, RTSI 2018 - Proceedings</i>, Palermo, Italy - 10-13 September 2018, Institute of Electrical and Electronics Engineers Inc., 2018.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Reducing+Complexity+of+3D+Indoor+Object+Detection&rft.isbn=9781538662823&rft.date=2018&rft.aulast=Maisano&rft.aufirst=Roberta&rft.au=Tomaselli%2C+Valeria&rft.au=Capra%2C+Alessandro&rft.au=Longo%2C+Francesco&rft.au=Puliafito%2C+Antonio&rft.pub=Institute+of+Electrical+and+Electronics+Engineers+Inc.&rft.place=Palermo%2C+Italy+-+10-13+September+2018&rft_id=info%3Adoi%2F10.1109%2FRTSI.2018.8548514"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/553" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/553" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=113.html" rel="nofollow" class="biblio-local-author active">Giacobbe, M.</a>, <a href="biblio%3Ff[author]=389.html" rel="nofollow" class="active">R. Di Pietro</a>, <a href="biblio%3Ff[author]=410.html" rel="nofollow" class="active">A. Longo Minnolo</a>, <a href="biblio%3Ff[author]=457.html" rel="nofollow" class="active">M. Todaro</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/537.html">Using InfluxDB Time Series Database To Manage Smart Environments</a>", </span>
<i>4th Italian Conference on ICT for Smart Cities And Communities (iCities 2018)</i>, L'Aquila, Italy, 09/2018.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Using+InfluxDB+Time+Series+Database+To+Manage+Smart+Environments&rft.date=2018&rft.aulast=Giacobbe&rft.aufirst=Maurizio&rft.au=Di+Pietro%2C+Riccardo&rft.au=Minnolo%2C+Antonino&rft.au=Todaro%2C+Marco&rft.au=Puliafito%2C+Antonio&rft.au=Puliafito%2C+Antonio&rft.place=L%26%23039%3BAquila%2C+Italy"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/537" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/537" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div></div><div class="biblio-category-section"><div class="biblio-separator-bar">2017</div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=15.html" rel="nofollow" class="active">Mulfari, D.</a>, <a href="biblio%3Ff[author]=410.html" rel="nofollow" class="active">A. Longo Minnolo</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/500.html">Building TensorFlow Applications in Smart City Scenarios</a>", </span>
<i>The 3rd IEEE International Conference on Smart Computing (SMARTCOMP 2017)</i>, Hong Kong, China, IEEE, 05/2017.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Building+TensorFlow+Applications+in+Smart+City+Scenarios&rft.date=2017&rft.aulast=Mulfari&rft.aufirst=Davide&rft.au=Minnolo%2C+Antonino&rft.au=Puliafito%2C+Antonio&rft.au=Puliafito%2C+Antonio&rft.pub=IEEE&rft.place=Hong+Kong%2C+China&rft_id=info%3Adoi%2F10.1109%2FSMARTCOMP.2017.7946991"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/500" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/500" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=113.html" rel="nofollow" class="biblio-local-author active">Giacobbe, M.</a>, <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, <a href="biblio%3Ff[author]=389.html" rel="nofollow" class="active">R. Di Pietro</a>, and <a href="biblio%3Ff[author]=119.html" rel="nofollow" class="active">M. Scarpa</a>, </span>
<span class="biblio-title">"<a href="node/505.html">A Context-aware Strategy To Properly Use IoT-Cloud Services</a>", </span>
<i>2017 IEEE International Conference on Smart Computing (SMARTCOMP)</i>, Hong Kong - China, IEEE, pp. 1-6, 05/2017.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=A+Context-aware+Strategy+To+Properly+Use+IoT-Cloud+Services&rft.date=2017&rft.spage=1&rft.epage=6&rft.aulast=Giacobbe&rft.aufirst=Maurizio&rft.au=Puliafito%2C+Antonio&rft.au=Di+Pietro%2C+Riccardo&rft.au=Scarpa%2C+Marco&rft.pub=IEEE&rft.place=Hong+Kong+-+China&rft_id=info%3Adoi%2F10.1109%2FSMARTCOMP.2017.7946976"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/505" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/505" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=113.html" rel="nofollow" class="biblio-local-author active">Giacobbe, M.</a>, <a href="biblio%3Ff[author]=119.html" rel="nofollow" class="active">M. Scarpa</a>, <a href="biblio%3Ff[author]=389.html" rel="nofollow" class="active">R. Di Pietro</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/486.html">An Energy-Aware Brokering Algorithm To Improve Sustainability In Community Cloud</a>", </span>
<i>Proceedings of the 6th International Conference on Smart Cities and Green ICT Systems (SMARTGREENS 2017)</i>, vol. 1, Porto, Portugal, Institute for Systems and Technologies of Information, Control and Communication (INSTICC), pp. 166-173, 04/2017.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=An+Energy-Aware+Brokering+Algorithm+To+Improve+Sustainability+In+Community+Cloud&rft.issn=978-989-758-241-7&rft.date=2017&rft.volume=1&rft.spage=166&rft.epage=173&rft.aulast=Giacobbe&rft.aufirst=Maurizio&rft.au=Scarpa%2C+Marco&rft.au=Di+Pietro%2C+Riccardo&rft.au=Puliafito%2C+Antonio&rft.pub=Institute+for+Systems+and+Technologies+of+Information%2C+Control+and+Communication+%28INSTICC%29&rft.place=Porto%2C+Portugal&rft_id=info%3Adoi%2F10.5220%2F0006300201660173"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/486" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/486" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=113.html" rel="nofollow" class="biblio-local-author active">Giacobbe, M.</a>, <a href="biblio%3Ff[author]=390.html" rel="nofollow" class="active">G. Pellegrino</a>, <a href="biblio%3Ff[author]=119.html" rel="nofollow" class="active">M. Scarpa</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/485.html">The ESSB System: A Novel Solution To Improve Comfort And Sustainability In Smart Office Environments</a>", </span>
<i>The14th IEEE International Conference on Networking, Sensing and Control (ICNSC 2017)</i>, Calabria, Italy, IEEE, pp. 311-316, 05/2017.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=The+ESSB+System%3A+A+Novel+Solution+To+Improve+Comfort+And+Sustainability+In+Smart+Office+Environments&rft.date=2017&rft.spage=311&rft.epage=316&rft.aulast=Giacobbe&rft.aufirst=Maurizio&rft.au=Pellegrino%2C+Giuseppe&rft.au=Scarpa%2C+Marco&rft.au=Puliafito%2C+Antonio&rft.pub=IEEE&rft.place=Calabria%2C+Italy"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/485" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/485" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=434.html" rel="nofollow" class="active">A. Bhattacharjee, K.</a>, <a href="biblio%3Ff[author]=93.html" rel="nofollow" class="active">D. Bruneo</a>, <a href="biblio%3Ff[author]=90.html" rel="nofollow" class="active">S. Distefano</a>, <a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">F. Longo</a>, <a href="biblio%3Ff[author]=91.html" rel="nofollow" class="active">G. Merlino</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/521.html">Extending Bluetooth Low Energy PANs to Smart City Scenarios</a>", </span>
<i>2017 IEEE International Conference on Smart Computing, SMARTCOMP 2017</i>, Hong Kong; China; 29-31 May 2017, Institute of Electrical and Electronics Engineers Inc., 2017.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Extending+Bluetooth+Low+Energy+PANs+to+Smart+City+Scenarios&rft.isbn=9781509065172&rft.date=2017&rft.aulast=Bhattacharjee&rft.aufirst=Kiran&rft.au=Bruneo%2C+Dario&rft.au=Distefano%2C+Salvatore&rft.au=Longo%2C+Francesco&rft.au=Merlino%2C+Giovanni&rft.au=Puliafito%2C+Antonio&rft.pub=Institute+of+Electrical+and+Electronics+Engineers+Inc.&rft.place=Hong+Kong%3B+China%3B+29-31+May+2017&rft_id=info%3Adoi%2F10.1109%2FSMARTCOMP.2017.7947007"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/521" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/521" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=93.html" rel="nofollow" class="active">Bruneo, D.</a>, <a href="biblio%3Ff[author]=90.html" rel="nofollow" class="active">S. Distefano</a>, <a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">F. Longo</a>, <a href="biblio%3Ff[author]=91.html" rel="nofollow" class="active">G. Merlino</a>, <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, and <a href="biblio%3Ff[author]=391.html" rel="nofollow" class="active">A. Zaia</a>, </span>
<span class="biblio-title">"<a href="node/527.html">Head in a Cloud: An approach for Arduino YUN virtualization</a>", </span>
<i>GIoTS 2017 - Global Internet of Things Summit, Proceedings</i>, Geneva; Switzerland; 6-9 June 2017, Institute of Electrical and Electronics Engineers Inc., 2017.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Head+in+a+Cloud%3A+An+approach+for+Arduino+YUN+virtualization&rft.isbn=9781509058730&rft.date=2017&rft.aulast=Bruneo&rft.aufirst=Dario&rft.au=Distefano%2C+Salvatore&rft.au=Longo%2C+Francesco&rft.au=Merlino%2C+Giovanni&rft.au=Puliafito%2C+Antonio&rft.au=Zaia%2C+Angelo&rft.pub=Institute+of+Electrical+and+Electronics+Engineers+Inc.&rft.place=Geneva%3B+Switzerland%3B+6-9+June+2017&rft_id=info%3Adoi%2F10.1109%2FGIOTS.2017.8016263"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/527" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/527" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=90.html" rel="nofollow" class="active">Distefano, S.</a>, <a href="biblio%3Ff[author]=93.html" rel="nofollow" class="active">D. Bruneo</a>, <a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">F. Longo</a>, <a href="biblio%3Ff[author]=91.html" rel="nofollow" class="active">G. Merlino</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/515.html">Hospitalized Patient Monitoring and Early Treatment Using IoT and Cloud</a>", </span>
<i>BioNanoScience</i>, vol. 7, no. 2: Springer New York LLC, pp. 382-385, 2017.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.atitle=Hospitalized+Patient+Monitoring+and+Early+Treatment+Using+IoT+and+Cloud&rft.title=BioNanoScience&rft.issn=21911630&rft.date=2017&rft.volume=7&rft.spage=382&rft.epage=385&rft.aulast=Distefano&rft.aufirst=Salvatore&rft.au=Bruneo%2C+Dario&rft.au=Longo%2C+Francesco&rft.au=Merlino%2C+Giovanni&rft.au=Puliafito%2C+Antonio&rft.pub=Springer+New+York+LLC&rft_id=info%3Adoi%2F10.1007%2Fs12668-016-0335-5"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/515" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/515" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=113.html" rel="nofollow" class="biblio-local-author active">Giacobbe, M.</a>, <a href="biblio%3Ff[author]=389.html" rel="nofollow" class="active">R. Di Pietro</a>, <a href="biblio%3Ff[author]=391.html" rel="nofollow" class="active">A. Zaia</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/487.html">The Internet Of Things In Oil And Gas Industry: A Multi Criteria Decision Making Brokerage Strategy</a>", </span>
<i>4th International Conference on Automation, Control Engineering and Computer Science (ACECS-2017)</i>, Proceedings of Engineering and Technology - PET, Special Issue, vol. 21, Tangier, Morocco, IPCO, pp. 47-52, 03/2017.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=The+Internet+Of+Things+In+Oil+And+Gas+Industry%3A+A+Multi+Criteria+Decision+Making+Brokerage+Strategy&rft.date=2017&rft.volume=21&rft.spage=47&rft.epage=52&rft.aulast=Giacobbe&rft.aufirst=Maurizio&rft.au=Di+Pietro%2C+Riccardo&rft.au=Zaia%2C+Angelo&rft.au=Puliafito%2C+Antonio&rft.pub=IPCO&rft.place=Tangier%2C+Morocco"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/487" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/487" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=437.html" rel="nofollow" class="active">Tricomi, G.</a>, <a href="biblio%3Ff[author]=125.html" rel="nofollow" class="active">A. Panarello</a>, <a href="biblio%3Ff[author]=91.html" rel="nofollow" class="active">G. Merlino</a>, <a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">F. Longo</a>, <a href="biblio%3Ff[author]=93.html" rel="nofollow" class="active">D. Bruneo</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/522.html">Orchestrated Multi-Cloud Application Deployment in OpenStack with TOSCA</a>", </span>
<i>2017 IEEE International Conference on Smart Computing, SMARTCOMP 2017</i>, Hong Kong; China; 29-31 May 2017, Institute of Electrical and Electronics Engineers Inc., 2017.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Orchestrated+Multi-Cloud+Application+Deployment+in+OpenStack+with+TOSCA&rft.isbn=9781509065172&rft.date=2017&rft.aulast=Tricomi&rft.aufirst=Giuseppe&rft.au=Panarello%2C+Alfonso&rft.au=Merlino%2C+Giovanni&rft.au=Longo%2C+Francesco&rft.au=Bruneo%2C+Dario&rft.au=Puliafito%2C+Antonio&rft.pub=Institute+of+Electrical+and+Electronics+Engineers+Inc.&rft.place=Hong+Kong%3B+China%3B+29-31+May+2017&rft_id=info%3Adoi%2F10.1109%2FSMARTCOMP.2017.7947027"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/522" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/522" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=90.html" rel="nofollow" class="active">Distefano, S.</a>, <a href="biblio%3Ff[author]=93.html" rel="nofollow" class="active">D. Bruneo</a>, <a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">F. Longo</a>, <a href="biblio%3Ff[author]=91.html" rel="nofollow" class="active">G. Merlino</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/516.html">Personalized Health Tracking with Edge Computing Technologies</a>", </span>
<i>BioNanoScience</i>, vol. 7, no. 2: Springer New York LLC, pp. 439-441, 2017.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.atitle=Personalized+Health+Tracking+with+Edge+Computing+Technologies&rft.title=BioNanoScience&rft.issn=21911630&rft.date=2017&rft.volume=7&rft.spage=439&rft.epage=441&rft.aulast=Distefano&rft.aufirst=Salvatore&rft.au=Bruneo%2C+Dario&rft.au=Longo%2C+Francesco&rft.au=Merlino%2C+Giovanni&rft.au=Puliafito%2C+Antonio&rft.pub=Springer+New+York+LLC&rft_id=info%3Adoi%2F10.1007%2Fs12668-016-0388-5"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/516" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/516" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=442.html" rel="nofollow" class="active">Kushwaha, N.</a>, <a href="biblio%3Ff[author]=91.html" rel="nofollow" class="active">G. Merlino</a>, <a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">F. Longo</a>, <a href="biblio%3Ff[author]=93.html" rel="nofollow" class="active">D. Bruneo</a>, <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, and <a href="biblio%3Ff[author]=443.html" rel="nofollow" class="active">O.P.. Vyas</a>, </span>
<span class="biblio-title">"<a href="node/523.html">Providing sensor services by data correlation: The #SmartME approach</a>", </span>
<i>Conference on Complex, Intelligent, and Software Intensive Systems</i>, vol. 611, Torino, Italy - 10-12 July 2017, Springer Verlag, pp. 864-874, 2017.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Providing+sensor+services+by+data+correlation%3A+The+%23SmartME+approach&rft.issn=21945357&rft.isbn=9783319615653&rft.date=2017&rft.volume=611&rft.spage=864&rft.epage=874&rft.aulast=Kushwaha&rft.aufirst=Nidhi&rft.au=Merlino%2C+Giovanni&rft.au=Longo%2C+Francesco&rft.au=Bruneo%2C+Dario&rft.au=Puliafito%2C+Antonio&rft.au=Vyas%2C+O.P.&rft.pub=Springer+Verlag&rft.place=Torino%2C+Italy+-+10-12+July+2017&rft_id=info%3Adoi%2F10.1007%2F978-3-319-61566-0_82"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/523" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/523" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=462.html" rel="nofollow" class="active">Dautov, R.</a>, <a href="biblio%3Ff[author]=90.html" rel="nofollow" class="active">S. Distefano</a>, <a href="biblio%3Ff[author]=93.html" rel="nofollow" class="active">D. Bruneo</a>, <a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">F. Longo</a>, <a href="biblio%3Ff[author]=91.html" rel="nofollow" class="active">G. Merlino</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/551.html">Pushing intelligence to the edge with a stream processing architecture</a>", </span>
<i>Proceedings - 2017 IEEE International Conference on Internet of Things, IEEE Green Computing and Communications, IEEE Cyber, Physical and Social Computing, IEEE Smart Data, iThings-GreenCom-CPSCom-SmartData 2017</i>, Exeter, UK - 21-23 June 2017, Institute of Electrical and Electronics Engineers Inc., pp. 792-799, 2017.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Pushing+intelligence+to+the+edge+with+a+stream+processing+architecture&rft.isbn=9781538630655&rft.date=2017&rft.spage=792&rft.epage=799&rft.aulast=Dautov&rft.aufirst=Rustem&rft.au=Distefano%2C+Salvatore&rft.au=Bruneo%2C+Dario&rft.au=Longo%2C+Francesco&rft.au=Merlino%2C+Giovanni&rft.au=Puliafito%2C+Antonio&rft.pub=Institute+of+Electrical+and+Electronics+Engineers+Inc.&rft.place=Exeter%2C+UK+-+21-23+June+2017&rft_id=info%3Adoi%2F10.1109%2FiThings-GreenCom-CPSCom-SmartData.2017.121"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/551" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/551" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=389.html" rel="nofollow" class="active">Di Pietro, R.</a>, <a href="biblio%3Ff[author]=119.html" rel="nofollow" class="active">M. Scarpa</a>, <a href="biblio%3Ff[author]=113.html" rel="nofollow" class="biblio-local-author active">M. Giacobbe</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/524.html">Secure Storage as a Service in Multi-Cloud Environment</a>", </span>
<i>16th International Conference on Ad Hoc Networks and Wireless, ADHOC-NOW 2017</i>, I, vol. Ad-hoc, Mobile, and Wireless Networks: Proceedings of 16th International Conference on Ad Hoc Networks and Wireless, Messina, Springer International Publishing, pp. 328-341, 09/2017.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Secure+Storage+as+a+Service+in+Multi-Cloud+Environment&rft.issn=978-3-319-67910-5&rft.date=2017&rft.volume=Ad-hoc%2C+Mobile%2C+and+Wireless+Networks%3A+Proceedings+of+16th+International+Conference+on+Ad+Hoc+Networks+and+Wireless&rft.spage=328&rft.epage=341&rft.aulast=Di+Pietro&rft.aufirst=Riccardo&rft.au=Scarpa%2C+Marco&rft.au=Giacobbe%2C+Maurizio&rft.au=Puliafito%2C+Antonio&rft.pub=Springer+International+Publishing&rft.place=Messina&rft_id=info%3Adoi%2F10.1007%2F978-3-319-67910-5"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/524" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/524" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">Longo, F.</a>, <a href="biblio%3Ff[author]=93.html" rel="nofollow" class="active">D. Bruneo</a>, <a href="biblio%3Ff[author]=90.html" rel="nofollow" class="active">S. Distefano</a>, <a href="biblio%3Ff[author]=91.html" rel="nofollow" class="active">G. Merlino</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/488.html">Stack4Things: a sensing-and-actuation-as-a-service framework for IoT and cloud integration</a>", </span>
<i>Annales des Telecommunications/Annals of Telecommunications - Institut Mines-Télécom and Springer-Verlag France</i>, vol. 72, no. 1-2: Springer-Verlag France, pp. 53-70, 2017.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.atitle=Stack4Things%3A+a+sensing-and-actuation-as-a-service+framework+for+IoT+and+cloud+integration&rft.title=Annales+des+Telecommunications%2FAnnals+of+Telecommunications+-+Institut+Mines-T%C3%A9l%C3%A9com+and+Springer-Verlag+France&rft.issn=00034347&rft.date=2017&rft.volume=72&rft.spage=53&rft.epage=70&rft.aulast=Longo&rft.aufirst=Francesco&rft.au=Bruneo%2C+Dario&rft.au=Distefano%2C+Salvatore&rft.au=Merlino%2C+Giovanni&rft.au=Puliafito%2C+Antonio&rft.pub=Springer-Verlag+France&rft_id=info%3Adoi%2F10.1007%2Fs12243-016-0528-5"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/488" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/488" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=462.html" rel="nofollow" class="active">Dautov, R.</a>, <a href="biblio%3Ff[author]=90.html" rel="nofollow" class="active">S. Distefano</a>, <a href="biblio%3Ff[author]=91.html" rel="nofollow" class="active">G. Merlino</a>, <a href="biblio%3Ff[author]=93.html" rel="nofollow" class="active">D. Bruneo</a>, <a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">F. Longo</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/552.html">Towards a global intelligent surveillance system</a>", </span>
<i>11th International Conference on Distributed Smart Cameras, ICDSC 2017</i>, Stanford, USA - 05-07 September 2017, Association for Computing Machinery, 2017.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Towards+a+global+intelligent+surveillance+system&rft.date=2017&rft.aulast=Dautov&rft.aufirst=Rustem&rft.au=Distefano%2C+Salvatore&rft.au=Merlino%2C+Giovanni&rft.au=Bruneo%2C+Dario&rft.au=Longo%2C+Francesco&rft.au=Puliafito%2C+Antonio&rft.pub=Association+for+Computing+Machinery&rft.place=Stanford%2C+USA+-+05-07+September+2017&rft_id=info%3Adoi%2F10.1145%2F3131885.3131918"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/552" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/552" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=93.html" rel="nofollow" class="active">Bruneo, D.</a>, <a href="biblio%3Ff[author]=90.html" rel="nofollow" class="active">S. Distefano</a>, <a href="biblio%3Ff[author]=450.html" rel="nofollow" class="active">K. Esmukov</a>, <a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">F. Longo</a>, <a href="biblio%3Ff[author]=91.html" rel="nofollow" class="active">G. Merlino</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/528.html">User-space network tunneling under a mobile platform: A case study for android environments</a>", </span>
<i>ADHOC-NOW 2017: Ad-hoc, Mobile, and Wireless Networks</i>, Messina; Italy; 20-22 September 2017, Springer Verlag, pp. 135-143, 2017.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=User-space+network+tunneling+under+a+mobile+platform%3A+A+case+study+for+android+environments&rft.issn=03029743&rft.isbn=9783319679099&rft.date=2017&rft.spage=135&rft.epage=143&rft.aulast=Bruneo&rft.aufirst=Dario&rft.au=Distefano%2C+Salvatore&rft.au=Esmukov%2C+Kostya&rft.au=Longo%2C+Francesco&rft.au=Merlino%2C+Giovanni&rft.au=Puliafito%2C+Antonio&rft.pub=Springer+Verlag&rft.place=Messina%3B+Italy%3B+20-22+September+2017&rft_id=info%3Adoi%2F10.1007%2F978-3-319-67910-5_11"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/528" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/528" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=15.html" rel="nofollow" class="active">Mulfari, D.</a>, <a href="biblio%3Ff[author]=410.html" rel="nofollow" class="active">A. Longo Minnolo</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/499.html">Wearable Devices and {IoT} as Enablers of Assistive Technologies</a>", </span>
<i>Tenth International Conference on Developments in e-Systems Engineering - DeSE2017 (DeSE2017)</i>, Paris, France, 2017.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Wearable+Devices+and+%7BIoT%7D+as+Enablers+of+Assistive+Technologies&rft.date=2017&rft.aulast=Mulfari&rft.aufirst=Davide&rft.au=Minnolo%2C+Antonino&rft.au=Puliafito%2C+Antonio&rft.place=Paris%2C+France"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/499" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/499" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div></div><div class="biblio-category-section"><div class="biblio-separator-bar">2016</div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=12.html" rel="nofollow" class="biblio-local-author active">Celesti, A.</a>, <a href="biblio%3Ff[author]=11.html" rel="nofollow" class="active">M. Fazio</a>, <a href="biblio%3Ff[author]=113.html" rel="nofollow" class="biblio-local-author active">M. Giacobbe</a>, <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, and <a href="biblio%3Ff[author]=13.html" rel="nofollow" class="active">M. Villari</a>, </span>
<span class="biblio-title">"<a href="node/423.html">Characterizing IoT Cloud Federation</a>", </span>
<i>2016 30th International Conference on Advanced Information Networking and Applications Workshops (WAINA) - Workshop on Cloud Computing Project and Initiatives - CCPI'16</i>, Le Régent Congress Centre, Crans-Montana, Switzerland, IEEE Computer Society, 2016.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Characterizing+IoT+Cloud+Federation&rft.issn=978-1-5090-2461-2%2F16&rft.date=2016&rft.aulast=Celesti&rft.aufirst=Antonio&rft.au=Fazio%2C+Maria&rft.au=Giacobbe%2C+Maurizio&rft.au=Puliafito%2C+Antonio&rft.au=Villari%2C+Massimo&rft.pub=IEEE+Computer+Society&rft.place=Le+R%C3%A9gent+Congress+Centre%2C+Crans-Montana%2C+Switzerland&rft_id=info%3Adoi%2F10.1109%2FWAINA.2016.152"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/423" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/423" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=168.html" rel="nofollow" class="active">Cerotti, D.</a>, <a href="biblio%3Ff[author]=90.html" rel="nofollow" class="active">S. Distefano</a>, <a href="biblio%3Ff[author]=91.html" rel="nofollow" class="active">G. Merlino</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/378.html">A Crowd-Cooperative Approach for Intelligent Transportation Systems</a>", </span>
<i>Intelligent Transportation Systems, IEEE Transactions on</i>, pp. -, 2016.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.atitle=A+Crowd-Cooperative+Approach+for+Intelligent+Transportation+Systems&rft.title=Intelligent+Transportation+Systems%2C+IEEE+Transactions+on&rft.issn=1524-9050&rft.date=2016&rft.spage=-&rft.aulast=Cerotti&rft.aufirst=Davide&rft.au=Distefano%2C+Salvatore&rft.au=Merlino%2C+Giovanni&rft.au=Puliafito%2C+Antonio"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/378" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/378" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=93.html" rel="nofollow" class="active">Bruneo, D.</a>, <a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">F. Longo</a>, <a href="biblio%3Ff[author]=91.html" rel="nofollow" class="active">G. Merlino</a>, <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, and <a href="biblio%3Ff[author]=90.html" rel="nofollow" class="active">S. Distefano</a>, </span>
<span class="biblio-title">"<a href="node/510.html">Deploying advanced services in the #SmartME infrastructure</a>", </span>
<i>2016 IEEE 2nd International Forum on Research and Technologies for Society and Industry Leveraging a Better Tomorrow, RTSI 2016</i>, Bologna; Italy; 7-9 September 2016, Institute of Electrical and Electronics Engineers Inc., 2016.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Deploying+advanced+services+in+the+%23SmartME+infrastructure&rft.isbn=9781509011315&rft.date=2016&rft.aulast=Bruneo&rft.aufirst=Dario&rft.au=Longo%2C+Francesco&rft.au=Merlino%2C+Giovanni&rft.au=Puliafito%2C+Antonio&rft.au=Distefano%2C+Salvatore&rft.pub=Institute+of+Electrical+and+Electronics+Engineers+Inc.&rft.place=Bologna%3B+Italy%3B+7-9+September+2016&rft_id=info%3Adoi%2F10.1109%2FRTSI.2016.7740633"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/510" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/510" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=12.html" rel="nofollow" class="biblio-local-author active">Celesti, A.</a>, <a href="biblio%3Ff[author]=15.html" rel="nofollow" class="active">D. Mulfari</a>, <a href="biblio%3Ff[author]=11.html" rel="nofollow" class="active">M. Fazio</a>, <a href="biblio%3Ff[author]=13.html" rel="nofollow" class="active">M. Villari</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/434.html">Exploring Container Virtualization in IoT Clouds</a>", </span>
<i>2016 International Conference on Smart Computing Workshops (SMARTCOMP Workshops)</i>, May 18, 2016 – St. Louis, Missouri, IEEE Computer Society, pp. 1-6, 2016.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Exploring+Container+Virtualization+in+IoT+Clouds&rft.issn=978-1-5090-0898-8&rft.date=2016&rft.spage=1&rft.epage=6&rft.aulast=Celesti&rft.aufirst=Antonio&rft.au=Mulfari%2C+Davide&rft.au=Fazio%2C+Maria&rft.au=Villari%2C+Massimo&rft.au=Puliafito%2C+Antonio&rft.pub=IEEE+Computer+Society&rft.place=May+18%2C+2016+%E2%80%93+St.+Louis%2C+Missouri&rft_id=info%3Adoi%2F10.1109%2FSMARTCOMP.2016.7501691"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/434" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/434" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=12.html" rel="nofollow" class="biblio-local-author active">Celesti, A.</a>, <a href="biblio%3Ff[author]=15.html" rel="nofollow" class="active">D. Mulfari</a>, <a href="biblio%3Ff[author]=11.html" rel="nofollow" class="active">M. Fazio</a>, <a href="biblio%3Ff[author]=13.html" rel="nofollow" class="active">M. Villari</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/443.html">Improving Desktop as a Service in OpenStack</a>", </span>
<i>The 21st IEEE Symposium on Computers and Communications (ISCC'16)</i>, Washington, DC, IEEE Computer Society, 2016.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Improving+Desktop+as+a+Service+in+OpenStack&rft.date=2016&rft.aulast=Celesti&rft.aufirst=Antonio&rft.au=Mulfari%2C+Davide&rft.au=Fazio%2C+Maria&rft.au=Villari%2C+Massimo&rft.au=Puliafito%2C+Antonio&rft.au=Puliafito%2C+Antonio&rft.pub=IEEE+Computer+Society&rft.place=Washington%2C+DC"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/443" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/443" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=93.html" rel="nofollow" class="active">Bruneo, D.</a>, <a href="biblio%3Ff[author]=90.html" rel="nofollow" class="active">S. Distefano</a>, <a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">F. Longo</a>, <a href="biblio%3Ff[author]=91.html" rel="nofollow" class="active">G. Merlino</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/514.html">IoT-cloud authorization and delegation mechanisms for ubiquitous sensing and actuation</a>", </span>
<i>2016 IEEE 3rd World Forum on Internet of Things, WF-IoT 2016</i>, Reston; United States; 12-14 December 2016, Institute of Electrical and Electronics Engineers Inc., pp. 222-227, 2016.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=IoT-cloud+authorization+and+delegation+mechanisms+for+ubiquitous+sensing+and+actuation&rft.isbn=9781509041305&rft.date=2016&rft.spage=222&rft.epage=227&rft.aulast=Bruneo&rft.aufirst=Dario&rft.au=Distefano%2C+Salvatore&rft.au=Longo%2C+Francesco&rft.au=Merlino%2C+Giovanni&rft.au=Puliafito%2C+Antonio&rft.pub=Institute+of+Electrical+and+Electronics+Engineers+Inc.&rft.place=Reston%3B+United+States%3B+12-14+December+2016&rft_id=info%3Adoi%2F10.1109%2FWF-IoT.2016.7845494"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/514" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/514" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=93.html" rel="nofollow" class="active">Bruneo, D.</a>, <a href="biblio%3Ff[author]=413.html" rel="nofollow" class="active">M. Dolfin</a>, <a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">F. Longo</a>, <a href="biblio%3Ff[author]=119.html" rel="nofollow" class="active">M. Scarpa</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/507.html">KAOS: A Kinetic Theory Tool for Modeling Complex Social Systems</a>", </span>
<i>3rd International Conference on Industrial Engineering and Applications, ICIEA 2016</i>, vol. 68, Hong Kong, 28-30 April 2016, EDP Sciences, 2016.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=KAOS%3A+A+Kinetic+Theory+Tool+for+Modeling+Complex+Social+Systems&rft.issn=2261236X&rft.date=2016&rft.volume=68&rft.aulast=Bruneo&rft.aufirst=Dario&rft.au=Dolfin%2C+Marina&rft.au=Longo%2C+Francesco&rft.au=Scarpa%2C+Marco&rft.au=Puliafito%2C+Antonio&rft.pub=EDP+Sciences&rft.place=Hong+Kong%2C+28-30+April+2016&rft_id=info%3Adoi%2F10.1051%2Fmatecconf%2F20166816004"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/507" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/507" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=91.html" rel="nofollow" class="active">Merlino, G.</a>, <a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">F. Longo</a>, <a href="biblio%3Ff[author]=90.html" rel="nofollow" class="active">S. Distefano</a>, <a href="biblio%3Ff[author]=93.html" rel="nofollow" class="active">D. Bruneo</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/511.html">Quantitative evaluation of Cloud-based network virtualization mechanisms for IoT</a>", </span>
<i>ValueTools 2016 - 10th EAI International Conference on Performance Evaluation Methodologies and Tools</i>, Taormina; Italy; 25-28 October 2016, Association for Computing Machinery, pp. 213-216, 2016.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Quantitative+evaluation+of+Cloud-based+network+virtualization+mechanisms+for+IoT&rft.isbn=9781631901416&rft.date=2016&rft.spage=213&rft.epage=216&rft.aulast=Merlino&rft.aufirst=Giovanni&rft.au=Longo%2C+Francesco&rft.au=Distefano%2C+Salvatore&rft.au=Bruneo%2C+Dario&rft.au=Puliafito%2C+Antonio&rft.pub=Association+for+Computing+Machinery&rft.place=Taormina%3B+Italy%3B+25-28+October+2016&rft_id=info%3Adoi%2F10.4108%2Feai.25-10-2016.2266600"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/511" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/511" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=113.html" rel="nofollow" class="biblio-local-author active">Giacobbe, M.</a>, <a href="biblio%3Ff[author]=12.html" rel="nofollow" class="biblio-local-author active">A. Celesti</a>, <a href="biblio%3Ff[author]=11.html" rel="nofollow" class="active">M. Fazio</a>, <a href="biblio%3Ff[author]=13.html" rel="nofollow" class="active">M. Villari</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/479.html">Re-Powering Service Provisioning Through Virtual Machine Migration in Federated Cloud Environments: An Algorithm Combining Energy Sustainability and Cost-Saving Strategies</a>", </span>
<i>The 4th International Workshop on CLoud for IoT (CLIoT 2016)</i>, vol. Advances in Service-Oriented and Cloud Computing, Vienna, Austria, Springer International Publishing, pp. 19-33, 01/2018, 2016.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Re-Powering+Service+Provisioning+Through+Virtual+Machine+Migration+in+Federated+Cloud+Environments%3A+An+Algorithm+Combining+Energy+Sustainability+and+Cost-Saving+Strategies&rft.issn=978-3-319-72125-5&rft.date=2016&rft.volume=Advances+in+Service-Oriented+and+Cloud+Computing&rft.spage=19&rft.epage=33&rft.aulast=Giacobbe&rft.aufirst=Maurizio&rft.au=Celesti%2C+Antonio&rft.au=Fazio%2C+Maria&rft.au=Villari%2C+Massimo&rft.au=Puliafito%2C+Antonio&rft.pub=Springer+International+Publishing&rft.place=Vienna%2C+Austria&rft_id=info%3Adoi%2F10.1007%2F978-3-319-72125-5_2"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/479" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/479" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=93.html" rel="nofollow" class="active">Bruneo, D.</a>, <a href="biblio%3Ff[author]=90.html" rel="nofollow" class="active">S. Distefano</a>, <a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">F. Longo</a>, <a href="biblio%3Ff[author]=91.html" rel="nofollow" class="active">G. Merlino</a>, <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, <a href="biblio%3Ff[author]=417.html" rel="nofollow" class="active">V. D'Amico</a>, <a href="biblio%3Ff[author]=418.html" rel="nofollow" class="active">M. Sapienza</a>, and <a href="biblio%3Ff[author]=419.html" rel="nofollow" class="active">G. Torrisi</a>, </span>
<span class="biblio-title">"<a href="node/508.html">Stack4Things as a fog computing platform for Smart City applications</a>", </span>
<i>Proceedings - IEEE INFOCOM</i>, vol. 2016-September, San Francisco; United States; 10-14 April 2016, Institute of Electrical and Electronics Engineers Inc., pp. 848-853, 2016.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Stack4Things+as+a+fog+computing+platform+for+Smart+City+applications&rft.issn=0743166X&rft.isbn=9781467399555&rft.date=2016&rft.volume=2016-September&rft.spage=848&rft.epage=853&rft.aulast=Bruneo&rft.aufirst=Dario&rft.au=Distefano%2C+Salvatore&rft.au=Longo%2C+Francesco&rft.au=Merlino%2C+Giovanni&rft.au=Puliafito%2C+Antonio&rft.au=D%27Amico%2C+Valeria&rft.au=Sapienza%2C+Marco&rft.au=Torrisi%2C+Giuseppe&rft.pub=Institute+of+Electrical+and+Electronics+Engineers+Inc.&rft.place=San+Francisco%3B+United+States%3B+10-14+April+2016&rft_id=info%3Adoi%2F10.1109%2FINFCOMW.2016.7562195"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/508" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/508" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=90.html" rel="nofollow" class="active">Distefano, S.</a>, <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, <a href="biblio%3Ff[author]=91.html" rel="nofollow" class="active">G. Merlino</a>, <a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">F. Longo</a>, and <a href="biblio%3Ff[author]=93.html" rel="nofollow" class="active">D. Bruneo</a>, </span>
<span class="biblio-title">"<a href="node/513.html">A Stack4Things-based platform for mobile crowdsensing services</a>", </span>
<i>Proceedings of the 2016 ITU Kaleidoscope Academic Conference: ICTs for a Sustainable World, ITU WT 2016</i>, Bangkok; Thailand; 14-16 November 2016, Institute of Electrical and Electronics Engineers Inc., 2016.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=A+Stack4Things-based+platform+for+mobile+crowdsensing+services&rft.isbn=9789261204310&rft.date=2016&rft.aulast=Distefano&rft.aufirst=Salvatore&rft.au=Puliafito%2C+Antonio&rft.au=Merlino%2C+Giovanni&rft.au=Longo%2C+Francesco&rft.au=Bruneo%2C+Dario&rft.pub=Institute+of+Electrical+and+Electronics+Engineers+Inc.&rft.place=Bangkok%3B+Thailand%3B+14-16+November+2016&rft_id=info%3Adoi%2F10.1109%2FITU-WT.2016.7805722"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/513" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/513" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div></div><div class="biblio-category-section"><div class="biblio-separator-bar">2015</div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=15.html" rel="nofollow" class="active">Mulfari, D.</a>, <a href="biblio%3Ff[author]=12.html" rel="nofollow" class="biblio-local-author active">A. Celesti</a>, <a href="biblio%3Ff[author]=11.html" rel="nofollow" class="active">M. Fazio</a>, <a href="biblio%3Ff[author]=13.html" rel="nofollow" class="active">M. Villari</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/354.html">Achieving Assistive Technology Systems Based on IoT Devices in Cloud Computing</a>", </span>
<i>EAI Endorsed Transactions on Cloud Systems</i>, vol. 15, no. 1: ICST, 2, 2015.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.atitle=Achieving+Assistive+Technology+Systems+Based+on+IoT+Devices+in+Cloud+Computing&rft.title=EAI+Endorsed+Transactions+on+Cloud+Systems&rft.issn=2410-6895&rft.date=2015&rft.volume=15&rft.aulast=Mulfari&rft.aufirst=Davide&rft.au=Celesti%2C+Antonio&rft.au=Fazio%2C+Maria&rft.au=Villari%2C+Massimo&rft.au=Puliafito%2C+Antonio&rft.pub=ICST&rft_id=info%3Adoi%2F10.4108%2Fcs.1.1.e4"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/354" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/354" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=93.html" rel="nofollow" class="active">Bruneo, D.</a>, <a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">F. Longo</a>, <a href="biblio%3Ff[author]=222.html" rel="nofollow" class="active">R. Ghosh</a>, <a href="biblio%3Ff[author]=119.html" rel="nofollow" class="active">M. Scarpa</a>, <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, and <a href="biblio%3Ff[author]=396.html" rel="nofollow" class="active">K. Trivedi</a>, </span>
<span class="biblio-title">"<a href="node/490.html">Analytical Modeling of Reactive Autonomic Management Techniques in IaaS Clouds</a>", </span>
<i>Proceedings - 2015 IEEE 8th International Conference on Cloud Computing, CLOUD 2015</i>, New York (USA), Institute of Electrical and Electronics Engineers Inc., pp. 797-804, 2015.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Analytical+Modeling+of+Reactive+Autonomic+Management+Techniques+in+IaaS+Clouds&rft.isbn=9781467372879&rft.date=2015&rft.spage=797&rft.epage=804&rft.aulast=Bruneo&rft.aufirst=Dario&rft.au=Longo%2C+Francesco&rft.au=Ghosh%2C+Rahul&rft.au=Scarpa%2C+Marco&rft.au=Puliafito%2C+Antonio&rft.au=Trivedi%2C+Kishor&rft.pub=Institute+of+Electrical+and+Electronics+Engineers+Inc.&rft.place=New+York+%28USA%29&rft_id=info%3Adoi%2F10.1109%2FCLOUD.2015.110"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/490" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/490" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=113.html" rel="nofollow" class="biblio-local-author active">Giacobbe, M.</a>, <a href="biblio%3Ff[author]=12.html" rel="nofollow" class="biblio-local-author active">A. Celesti</a>, <a href="biblio%3Ff[author]=11.html" rel="nofollow" class="active">M. Fazio</a>, <a href="biblio%3Ff[author]=13.html" rel="nofollow" class="active">M. Villari</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/153.html">An Approach to Reduce Carbon Dioxide Emissions Through Virtual Machine Migrations in a Sustainable Cloud Federation</a>", </span>
<i>SustainIT 2015 The Fourth IFIP Conference on Sustainable Internet and ICT for Sustainability</i>, IEEE Computer Society , Madrid, Spain, 04/2015.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=An+Approach+to+Reduce+Carbon+Dioxide+Emissions+Through+Virtual+Machine+Migrations+in+a+Sustainable+Cloud+Federation&rft.isbn=978-3-9018-8270-8&rft.date=2015&rft.aulast=Giacobbe&rft.aufirst=Maurizio&rft.au=Celesti%2C+Antonio&rft.au=Fazio%2C+Maria&rft.au=Villari%2C+Massimo&rft.au=Puliafito%2C+Antonio&rft.place=Madrid%2C+Spain&rft_id=info%3Adoi%2F10.1109%2FSustainIT.2015.7101383"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/153" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/153" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=113.html" rel="nofollow" class="biblio-local-author active">Giacobbe, M.</a>, <a href="biblio%3Ff[author]=12.html" rel="nofollow" class="biblio-local-author active">A. Celesti</a>, <a href="biblio%3Ff[author]=11.html" rel="nofollow" class="active">M. Fazio</a>, <a href="biblio%3Ff[author]=13.html" rel="nofollow" class="active">M. Villari</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/154.html">An Approach to Reduce Energy Costs Through Virtual Machine Migrations in Cloud Federation</a>", </span>
<i>Published on 20th IEEE Symposium on Computers and Communications (ISCC15)</i>, Larnaca, Cyprus, IEEE Computer Society, 07/2015.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=An+Approach+to+Reduce+Energy+Costs+Through+Virtual+Machine+Migrations+in+Cloud+Federation&rft.date=2015&rft.aulast=Giacobbe&rft.aufirst=Maurizio&rft.au=Celesti%2C+Antonio&rft.au=Fazio%2C+Maria&rft.au=Villari%2C+Massimo&rft.au=Puliafito%2C+Antonio&rft.pub=IEEE+Computer+Society&rft.place=Larnaca%2C+Cyprus&rft_id=info%3Adoi%2F10.1109%2FISCC.2015.7405609"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/154" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/154" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=244.html" rel="nofollow" class="active">Barreto, L.</a>, <a href="biblio%3Ff[author]=12.html" rel="nofollow" class="biblio-local-author active">A. Celesti</a>, <a href="biblio%3Ff[author]=13.html" rel="nofollow" class="active">M. Villari</a>, <a href="biblio%3Ff[author]=11.html" rel="nofollow" class="active">M. Fazio</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/346.html">An Authentication Model for IoT Clouds</a>", </span>
<i>The 2015 IEEE/ACM International Conference on Advances in Social Networks Analysis and Mining</i>, Paris, France, August 26-27, 2015, IEEE Computer Society, pp. 1032-1035, 2015.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=An+Authentication+Model+for+IoT+Clouds&rft.isbn=978-1-4503-3854-7&rft.date=2015&rft.spage=1032&rft.epage=1035&rft.aulast=Barreto&rft.aufirst=Luciano&rft.au=Celesti%2C+Antonio&rft.au=Villari%2C+Massimo&rft.au=Fazio%2C+Maria&rft.au=Puliafito%2C+Antonio&rft.pub=IEEE+Computer+Society&rft.place=Paris%2C+France%2C+August+26-27%2C+2015&rft_id=info%3Adoi%2F10.1145%2F2808797.2809361"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/346" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/346" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=91.html" rel="nofollow" class="active">Merlino, G.</a>, <a href="biblio%3Ff[author]=93.html" rel="nofollow" class="active">D. Bruneo</a>, <a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">F. Longo</a>, <a href="biblio%3Ff[author]=90.html" rel="nofollow" class="active">S. Distefano</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/495.html">Cloud-based network virtualization: An IoT use case</a>", </span>
<i>Lecture Notes of the Institute for Computer Sciences, Social-Informatics and Telecommunications Engineering, LNICST</i>, vol. 155, San Remo (Italy), Springer Verlag, pp. 199-210, 2015.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Cloud-based+network+virtualization%3A+An+IoT+use+case&rft.issn=18678211&rft.isbn=9783319250663&rft.date=2015&rft.volume=155&rft.spage=199&rft.epage=210&rft.aulast=Merlino&rft.aufirst=Giovanni&rft.au=Bruneo%2C+Dario&rft.au=Longo%2C+Francesco&rft.au=Distefano%2C+Salvatore&rft.au=Puliafito%2C+Antonio&rft.pub=Springer+Verlag&rft.place=San+Remo+%28Italy%29&rft_id=info%3Adoi%2F10.1007%2F978-3-319-25067-0_16"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/495" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/495" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=207.html" rel="nofollow" class="active">Mariotta, G.</a>, <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, <a href="biblio%3Ff[author]=208.html" rel="nofollow" class="active">P. Sciuto</a>, <a href="biblio%3Ff[author]=209.html" rel="nofollow" class="active">M. Simonetti</a>, and <a href="biblio%3Ff[author]=210.html" rel="nofollow" class="active">G. Stecca</a>, </span>
<span class="biblio-title">"<a href="node/322.html">A cloud-based system to protect against industrial multi-risk events</a>", </span>
<i>48th CIRP Conference on MANUFACTURING SYSTEMS - CIRP CMS</i>, Ischia (Naples), Italy, 24 - 26/06/2015.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=A+cloud-based+system+to+protect+against+industrial+multi-risk+events&rft.date=2015&rft.aulast=Mariotta&rft.aufirst=Guido&rft.au=Puliafito%2C+Antonio&rft.au=Sciuto%2C+Pierluigi&rft.au=Simonetti%2C+Marco&rft.au=Stecca%2C+Giuseppe&rft.place=Ischia+%28Naples%29%2C+Italy"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/322" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/322" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=125.html" rel="nofollow" class="active">Panarello, A.</a>, <a href="biblio%3Ff[author]=11.html" rel="nofollow" class="active">M. Fazio</a>, <a href="biblio%3Ff[author]=12.html" rel="nofollow" class="biblio-local-author active">A. Celesti</a>, <a href="biblio%3Ff[author]=13.html" rel="nofollow" class="active">M. Villari</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/161.html">Costs of a Federated and Hybrid Cloud Environment Aimed at MapReduce Video Transcoding</a>", </span>
<i>2015 IEEE Symposium on Computers and Communication (ISCC), Larnaca Cyprus</i>, Larnaca, Cyprus, IEEE Computer Society, pp. 258-263, 2015.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Costs+of+a+Federated+and+Hybrid+Cloud+Environment+Aimed+at+MapReduce+Video+Transcoding&rft.date=2015&rft.spage=258&rft.epage=263&rft.aulast=Panarello&rft.aufirst=Alfonso&rft.au=Fazio%2C+Maria&rft.au=Celesti%2C+Antonio&rft.au=Villari%2C+Massimo&rft.au=Puliafito%2C+Antonio&rft.pub=IEEE+Computer+Society&rft.place=Larnaca%2C+Cyprus&rft_id=info%3Adoi%2F10.1109%2FISCC.2015.7405525"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/161" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/161" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=90.html" rel="nofollow" class="active">Distefano, S.</a>, <a href="biblio%3Ff[author]=91.html" rel="nofollow" class="active">G. Merlino</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/367.html">Device-centric Sensing: an Alternative to Data-centric Approaches</a>", </span>
<i>Systems Journal, IEEE</i>, vol. 9, no. 4, pp. -, Oct, 2015.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.atitle=Device-centric+Sensing%3A+an+Alternative+to+Data-centric+Approaches&rft.title=Systems+Journal%2C+IEEE&rft.issn=1932-8184&rft.date=2015&rft.volume=9&rft.spage=-&rft.aulast=Distefano&rft.aufirst=Salvatore&rft.au=Merlino%2C+Giovanni&rft.au=Puliafito%2C+Antonio&rft_id=info%3Adoi%2F10.1109%2FJSYST.2015.xxxxxxx"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/367" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/367" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=15.html" rel="nofollow" class="active">Mulfari, D.</a>, <a href="biblio%3Ff[author]=12.html" rel="nofollow" class="biblio-local-author active">A. Celesti</a>, <a href="biblio%3Ff[author]=11.html" rel="nofollow" class="active">M. Fazio</a>, <a href="biblio%3Ff[author]=13.html" rel="nofollow" class="active">M. Villari</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/235.html">Embedded systems for supporting computer accessibility</a>", </span>
<i>Association for the Advancement of Assistive Technology in Europe (AAATE)</i>, Series: Studies in Health Technology and Informatics, no. 217: Assistive Technology, Budapest, Hungary, IOS Press, pp. 378-385, 2015.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.atitle=Embedded+systems+for+supporting+computer+accessibility&rft.title=Association+for+the+Advancement+of+Assistive+Technology+in+Europe+%28AAATE%29&rft.btitle=Association+for+the+Advancement+of+Assistive+Technology+in+Europe+%28AAATE%29&rft.isbn=978-1-61499-565-4+%28print%29+%7C+978-1-61499-566-1+%28online%29&rft.date=2015&rft.spage=378&rft.epage=385&rft.aulast=Mulfari&rft.aufirst=Davide&rft.au=Celesti%2C+Antonio&rft.au=Fazio%2C+Maria&rft.au=Villari%2C+Massimo&rft.au=Puliafito%2C+Antonio&rft.pub=IOS+Press&rft.place=Budapest%2C+Hungary&rft_id=info%3Adoi%2F10.3233%2F978-1-61499-566-1-378"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/235" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/235" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=93.html" rel="nofollow" class="active">Bruneo, D.</a>, <a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">F. Longo</a>, <a href="biblio%3Ff[author]=91.html" rel="nofollow" class="active">G. Merlino</a>, <a href="biblio%3Ff[author]=265.html" rel="nofollow" class="active">N. Peditto</a>, <a href="biblio%3Ff[author]=266.html" rel="nofollow" class="active">C. Romeo</a>, <a href="biblio%3Ff[author]=267.html" rel="nofollow" class="active">F. Verboso</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/430.html">Enabling collaborative development in an open stack testbed: The cloud wave use case</a>", </span>
<i>Proceedings of the 7th International Workshop on Principles of Engineering Service-Oriented and Cloud Systems (PESOS 2015)</i>, Florence, Italy, 23 May 2015 - , IEEE Computer Society, pp. 24-30, 2015.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Enabling+collaborative+development+in+an+open+stack+testbed%3A+The+cloud+wave+use+case&rft.issn=21567921&rft.isbn=9781479919345&rft.date=2015&rft.spage=24&rft.epage=30&rft.aulast=Bruneo&rft.aufirst=Dario&rft.au=Longo%2C+Francesco&rft.au=Merlino%2C+Giovanni&rft.au=Peditto%2C+Nicola&rft.au=Romeo%2C+Carmelo&rft.au=Verboso%2C+Fabio&rft.au=Puliafito%2C+Antonio&rft.pub=IEEE+Computer+Society&rft.place=Florence%2C+Italy%2C+23+May+2015+-+&rft_id=info%3Adoi%2F10.1109%2FPESOS.2015.12"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/430" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/430" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=91.html" rel="nofollow" class="active">Merlino, G.</a>, <a href="biblio%3Ff[author]=93.html" rel="nofollow" class="active">D. Bruneo</a>, <a href="biblio%3Ff[author]=90.html" rel="nofollow" class="active">S. Distefano</a>, <a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">F. Longo</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/496.html">Enabling mechanisms for Cloud-based network virtualization in IoT</a>", </span>
<i>IEEE World Forum on Internet of Things, WF-IoT 2015 - Proceedings</i>, Milan (Italy), Institute of Electrical and Electronics Engineers Inc., pp. 268-273, 2015.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Enabling+mechanisms+for+Cloud-based+network+virtualization+in+IoT&rft.isbn=9781509003655&rft.date=2015&rft.spage=268&rft.epage=273&rft.aulast=Merlino&rft.aufirst=Giovanni&rft.au=Bruneo%2C+Dario&rft.au=Distefano%2C+Salvatore&rft.au=Longo%2C+Francesco&rft.au=Puliafito%2C+Antonio&rft.pub=Institute+of+Electrical+and+Electronics+Engineers+Inc.&rft.place=Milan+%28Italy%29&rft_id=info%3Adoi%2F10.1109%2FWF-IoT.2015.7389064"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/496" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/496" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=113.html" rel="nofollow" class="biblio-local-author active">Giacobbe, M.</a>, <a href="biblio%3Ff[author]=12.html" rel="nofollow" class="biblio-local-author active">A. Celesti</a>, <a href="biblio%3Ff[author]=11.html" rel="nofollow" class="active">M. Fazio</a>, <a href="biblio%3Ff[author]=13.html" rel="nofollow" class="active">M. Villari</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/158.html">Evaluating a Cloud Federation Ecosystem to Reduce Carbon Footprint by Moving Computational Resources</a>", </span>
<i>20th IEEE Symposium on Computers and Communication (ISCC 2015) - IEEE International Workshop on Distributed Mobile Systems & Services (DMSS 2015)</i>, Larnaca, Cyprus, IEEE Computer Society, pp. 99 - 104, July, 2015.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Evaluating+a+Cloud+Federation+Ecosystem+to+Reduce+Carbon+Footprint+by+Moving+Computational+Resources&rft.issn=978-1-4673-7194-0&rft.date=2015&rft.spage=99&rft.epage=104&rft.aulast=Giacobbe&rft.aufirst=Maurizio&rft.au=Celesti%2C+Antonio&rft.au=Fazio%2C+Maria&rft.au=Villari%2C+Massimo&rft.au=Puliafito%2C+Antonio&rft.pub=IEEE+Computer+Society&rft.place=Larnaca%2C+Cyprus&rft_id=info%3Adoi%2F10.1109%2FISCC.2015.7405500"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/158" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/158" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=125.html" rel="nofollow" class="active">Panarello, A.</a>, <a href="biblio%3Ff[author]=12.html" rel="nofollow" class="biblio-local-author active">A. Celesti</a>, <a href="biblio%3Ff[author]=11.html" rel="nofollow" class="active">M. Fazio</a>, <a href="biblio%3Ff[author]=13.html" rel="nofollow" class="active">M. Villari</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/221.html">A Federated MapReduce-based Video Transcoding System to Face the Future Massive Video-Selfie Sharing Trend</a>", </span>
<i>Fourth European Conference on Service-Oriented and Cloud Computing (ESOCC 2015) - 3rd International Workshop on Cloud for IoT</i>, Communications in Computer and Information Science (CCSI): Springer International Publishing, 2015.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=A+Federated+MapReduce-based+Video+Transcoding+System+to+Face+the+Future+Massive+Video-Selfie+Sharing+Trend&rft.date=2015&rft.aulast=Panarello&rft.aufirst=Alfonso&rft.au=Celesti%2C+Antonio&rft.au=Fazio%2C+Maria&rft.au=Villari%2C+Massimo&rft.au=Puliafito%2C+Antonio&rft.pub=Springer+International+Publishing"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/221" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/221" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=90.html" rel="nofollow" class="active">Distefano, S.</a>, <a href="biblio%3Ff[author]=91.html" rel="nofollow" class="active">G. Merlino</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/124.html">A Framework For Device-centric Sensing Cloud</a>", </span>
<i>INTERNATIONAL JOURNAL OF CLOUD COMPUTING</i>, 2015.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.atitle=A+Framework+For+Device-centric+Sensing+Cloud&rft.title=INTERNATIONAL+JOURNAL+OF+CLOUD+COMPUTING&rft.date=2015&rft.aulast=Distefano&rft.aufirst=Salvatore&rft.au=Merlino%2C+Giovanni&rft.au=Puliafito%2C+Antonio&rft.au=Puliafito%2C+Antonio"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/124" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/124" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=11.html" rel="nofollow" class="active">Fazio, M.</a>, <a href="biblio%3Ff[author]=12.html" rel="nofollow" class="biblio-local-author active">A. Celesti</a>, <a href="biblio%3Ff[author]=13.html" rel="nofollow" class="active">M. Villari</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/222.html">How to Enhance Cloud Architectures to Enable Cross-Federation: Towards Interoperable Storage Providers</a>", </span>
<i> IEEE International Conference on Cloud Engineering (IC2E), Tempe, AZ, USA</i>, Washington D.C., IEEE Computer Society, pp. 480-486, March, 2015.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=How+to+Enhance+Cloud+Architectures+to+Enable+Cross-Federation%3A+Towards+Interoperable+Storage+Providers&rft.date=2015&rft.spage=480&rft.epage=486&rft.aulast=Fazio&rft.aufirst=Maria&rft.au=Celesti%2C+Antonio&rft.au=Villari%2C+Massimo&rft.au=Puliafito%2C+Antonio&rft.pub=IEEE+Computer+Society&rft.place=Washington+D.C.&rft_id=info%3Adoi%2F10.1109%2FIC2E.2015.80"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/222" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/222" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=244.html" rel="nofollow" class="active">Barreto, L.</a>, <a href="biblio%3Ff[author]=12.html" rel="nofollow" class="biblio-local-author active">A. Celesti</a>, <a href="biblio%3Ff[author]=13.html" rel="nofollow" class="active">M. Villari</a>, <a href="biblio%3Ff[author]=11.html" rel="nofollow" class="active">M. Fazio</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/345.html">Identity Management in IoT Clouds: a FIWARE Case of Study</a>", </span>
<i>2015 IEEE Conference on Communications and Network Security (CNS) - 1st Workshop on Security and Privacy in the Cloud (SPC 2015)</i>, Florence, Italy, September 30th, 2015, IEEE Computer Society, pp. 680-684, 2015.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Identity+Management+in+IoT+Clouds%3A+a+FIWARE+Case+of+Study&rft.issn=978-1-4673-7876-5&rft.date=2015&rft.spage=680&rft.epage=684&rft.aulast=Barreto&rft.aufirst=Luciano&rft.au=Celesti%2C+Antonio&rft.au=Villari%2C+Massimo&rft.au=Fazio%2C+Maria&rft.au=Puliafito%2C+Antonio&rft.pub=IEEE+Computer+Society&rft.place=Florence%2C+Italy%2C+September+30th%2C+2015"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/345" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/345" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=91.html" rel="nofollow" class="active">Merlino, G.</a>, <a href="biblio%3Ff[author]=290.html" rel="nofollow" class="active">S. Arkoulis</a>, <a href="biblio%3Ff[author]=90.html" rel="nofollow" class="active">S. Distefano</a>, <a href="biblio%3Ff[author]=95.html" rel="nofollow" class="active">C. Papagianni</a>, <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, and <a href="biblio%3Ff[author]=94.html" rel="nofollow" class="active">S. Papavassiliou</a>, </span>
<span class="biblio-title">"<a href="node/379.html">Mobile CrowdSensing as a Service: a platform for applications on top of Sensing Clouds</a>", </span>
<i>Future Generation Computer Systems</i>, pp. -, 2015.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.atitle=Mobile+CrowdSensing+as+a+Service%3A+a+platform+for+applications+on+top+of+Sensing+Clouds&rft.title=Future+Generation+Computer+Systems&rft.issn=0167-739X&rft.date=2015&rft.spage=-&rft.aulast=Merlino&rft.aufirst=Giovanni&rft.au=Arkoulis%2C+Stamatis&rft.au=Distefano%2C+Salvatore&rft.au=Papagianni%2C+Chrysa&rft.au=Puliafito%2C+Antonio&rft.au=Papavassiliou%2C+Symeon"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/379" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/379" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=93.html" rel="nofollow" class="active">Bruneo, D.</a>, <a href="biblio%3Ff[author]=299.html" rel="nofollow" class="active">A. Lhoas</a>, <a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">F. Longo</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/428.html">Modeling and Evaluation of Energy Policies in Green Clouds</a>", </span>
<i>IEEE Transactions on Parallel and Distributed Systems</i>, vol. 26, no. 11: IEEE Computer Society, pp. 3052-3065, 2015.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.atitle=Modeling+and+Evaluation+of+Energy+Policies+in+Green+Clouds&rft.title=IEEE+Transactions+on+Parallel+and+Distributed+Systems&rft.issn=10459219&rft.date=2015&rft.volume=26&rft.spage=3052&rft.epage=3065&rft.aulast=Bruneo&rft.aufirst=Dario&rft.au=Lhoas%2C+Audric&rft.au=Longo%2C+Francesco&rft.au=Puliafito%2C+Antonio&rft.pub=IEEE+Computer+Society&rft_id=info%3Adoi%2F10.1109%2FTPDS.2014.2364194"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/428" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/428" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=93.html" rel="nofollow" class="active">Bruneo, D.</a>, <a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">F. Longo</a>, <a href="biblio%3Ff[author]=91.html" rel="nofollow" class="active">G. Merlino</a>, <a href="biblio%3Ff[author]=265.html" rel="nofollow" class="active">N. Peditto</a>, <a href="biblio%3Ff[author]=266.html" rel="nofollow" class="active">C. Romeo</a>, <a href="biblio%3Ff[author]=267.html" rel="nofollow" class="active">F. Verboso</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/491.html">A modular approach to collaborative development in an OpenStack testbed</a>", </span>
<i>Proceedings - IEEE 4th Symposium on Network Cloud Computing and Applications, NCCA 2015</i>, Munich (Germany), Institute of Electrical and Electronics Engineers Inc., pp. 7-14, 2015.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=A+modular+approach+to+collaborative+development+in+an+OpenStack+testbed&rft.isbn=0769556035%3B+9780769556031&rft.date=2015&rft.spage=7&rft.epage=14&rft.aulast=Bruneo&rft.aufirst=Dario&rft.au=Longo%2C+Francesco&rft.au=Merlino%2C+Giovanni&rft.au=Peditto%2C+Nicola&rft.au=Romeo%2C+Carmelo&rft.au=Verboso%2C+Fabio&rft.au=Puliafito%2C+Antonio&rft.pub=Institute+of+Electrical+and+Electronics+Engineers+Inc.&rft.place=Munich+%28Germany%29&rft_id=info%3Adoi%2F10.1109%2FNCCA.2015.12"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/491" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/491" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=90.html" rel="nofollow" class="active">Distefano, S.</a>, <a href="biblio%3Ff[author]=91.html" rel="nofollow" class="active">G. Merlino</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/376.html">An OpenStack-based Implementation of a Volunteer Cloud</a>", </span>
<i>Service-Oriented and Cloud Computing</i>: Springer Berlin Heidelberg, pp. -, 2015.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=An+OpenStack-based+Implementation+of+a+Volunteer+Cloud&rft.series=Lecture+Notes+in+Computer+Science&rft.isbn=978-3-642-33426-9&rft.date=2015&rft.spage=-&rft.aulast=Distefano&rft.aufirst=Salvatore&rft.au=Merlino%2C+Giovanni&rft.au=Puliafito%2C+Antonio&rft.au=Puliafito%2C+Antonio&rft.pub=Springer+Berlin+Heidelberg"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/376" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/376" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=213.html" rel="nofollow" class="active">Longo, F..</a>, <a href="biblio%3Ff[author]=351.html" rel="nofollow" class="active">A. R. Lotronto</a>, <a href="biblio%3Ff[author]=119.html" rel="nofollow" class="active">M. Scarpa</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/407.html">Optimizing routine maintenance team routes</a>", </span>
<i>Proceedings of the 17th International Conference on Enterprise Information Systems, Proceedings (ICEIS)</i>, vol. 1, Barcelona, Spain, 27-30 April 2015, SciTePress, pp. 535-546, 2015.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Optimizing+routine+maintenance+team+routes&rft.isbn=9789897580970&rft.date=2015&rft.volume=1&rft.spage=535&rft.epage=546&rft.aulast=Longo&rft.aufirst=F.&rft.au=Lotronto%2C+Andrea&rft.au=Scarpa%2C+Marco&rft.au=Puliafito%2C+Antonio&rft.pub=SciTePress&rft.place=Barcelona%2C+Spain%2C+27-30+April+2015"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/407" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/407" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=15.html" rel="nofollow" class="active">Mulfari, D.</a>, <a href="biblio%3Ff[author]=12.html" rel="nofollow" class="biblio-local-author active">A. Celesti</a>, <a href="biblio%3Ff[author]=13.html" rel="nofollow" class="active">M. Villari</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/226.html">Providing Assistive Technology Applications as a Service Through Cloud Computing</a>", </span>
<i>Assistive Technology: The Official Journal of RESNA</i>, vol. 27, issue 1, no. 1: Taylor & Francis, pp. 44-51, 2015.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.atitle=Providing+Assistive+Technology+Applications+as+a+Service+Through+Cloud+Computing&rft.title=Assistive+Technology%3A+The+Official+Journal+of+RESNA&rft.issn=1040-0435+%28Print%29%2C+1949-3614+%28Online%29&rft.date=2015&rft.volume=27&rft.issue=1&rft.spage=44&rft.epage=51&rft.aulast=Mulfari&rft.aufirst=Davide&rft.au=Celesti%2C+Antonio&rft.au=Villari%2C+Massimo&rft.au=Puliafito%2C+Antonio&rft.pub=Taylor+%26amp%3B+Francis&rft_id=info%3Adoi%2F10.1080%2F10400435.2014.963258"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/226" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/226" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">Longo, F.</a>, <a href="biblio%3Ff[author]=409.html" rel="nofollow" class="active">A. Lotronto</a>, <a href="biblio%3Ff[author]=119.html" rel="nofollow" class="active">M. Scarpa</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/498.html">A simulated annealing-based approach for the optimization of routine maintenance interventions</a>", </span>
<i>Lecture Notes in Business Information Processing</i>, vol. 241: Springer Verlag, pp. 256-279, 2015.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.atitle=A+simulated+annealing-based+approach+for+the+optimization+of+routine+maintenance+interventions&rft.title=Lecture+Notes+in+Business+Information+Processing&rft.btitle=Lecture+Notes+in+Business+Information+Processing&rft.issn=18651348&rft.isbn=9783319291321&rft.date=2015&rft.volume=241&rft.spage=256&rft.epage=279&rft.aulast=Longo&rft.aufirst=Francesco&rft.au=Lotronto%2C+Andrea&rft.au=Scarpa%2C+Marco&rft.au=Puliafito%2C+Antonio&rft.pub=Springer+Verlag&rft_id=info%3Adoi%2F10.1007%2F978-3-319-29133-8_13"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/498" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/498" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=91.html" rel="nofollow" class="active">Merlino, G.</a>, <a href="biblio%3Ff[author]=93.html" rel="nofollow" class="active">D. Bruneo</a>, <a href="biblio%3Ff[author]=90.html" rel="nofollow" class="active">S. Distefano</a>, <a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">F. Longo</a>, <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, and <a href="biblio%3Ff[author]=356.html" rel="nofollow" class="active">A. H. Al-Anbuky</a>, </span>
<span class="biblio-title">"<a href="node/410.html">A smart city lighting case study on an OpenStack-powered infrastructure</a>", </span>
<i>Sensors</i>, vol. 15, no. 7: MDPI AG, pp. 16314-16335, 2015.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.atitle=A+smart+city+lighting+case+study+on+an+OpenStack-powered+infrastructure&rft.title=Sensors&rft.issn=14248220&rft.date=2015&rft.volume=15&rft.spage=16314&rft.epage=16335&rft.aulast=Merlino&rft.aufirst=Giovanni&rft.au=Bruneo%2C+Dario&rft.au=Distefano%2C+Salvatore&rft.au=Longo%2C+Francesco&rft.au=Puliafito%2C+Antonio&rft.au=Al-Anbuky%2C+Adnan&rft.pub=MDPI+AG&rft_id=info%3Adoi%2F10.3390%2Fs150716314"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/410" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/410" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=91.html" rel="nofollow" class="active">Merlino, G.</a>, <a href="biblio%3Ff[author]=93.html" rel="nofollow" class="active">D. Bruneo</a>, <a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">F. Longo</a>, <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, and <a href="biblio%3Ff[author]=90.html" rel="nofollow" class="active">S. Distefano</a>, </span>
<span class="biblio-title">"<a href="node/492.html">Software defined cities: A novel paradigm for smart cities through IoT clouds</a>", </span>
<i>Proceedings - 2015 IEEE 12th International Conference on Ubiquitous Intelligence and Computing, 2015 IEEE 12th International Conference on Advanced and Trusted Computing, 2015 IEEE 15th International Conference on Scalable Computing and Communications, 20</i>, Beijing (China), Institute of Electrical and Electronics Engineers Inc., pp. 909-916, 2015.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Software+defined+cities%3A+A+novel+paradigm+for+smart+cities+through+IoT+clouds&rft.isbn=9781467372114&rft.date=2015&rft.spage=909&rft.epage=916&rft.aulast=Merlino&rft.aufirst=Giovanni&rft.au=Bruneo%2C+Dario&rft.au=Longo%2C+Francesco&rft.au=Puliafito%2C+Antonio&rft.au=Distefano%2C+Salvatore&rft.pub=Institute+of+Electrical+and+Electronics+Engineers+Inc.&rft.place=Beijing+%28China%29&rft_id=info%3Adoi%2F10.1109%2FUIC-ATC-ScalCom-CBDCom-IoP.2015.174"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/492" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/492" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=93.html" rel="nofollow" class="active">Bruneo, D.</a>, <a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">F. Longo</a>, <a href="biblio%3Ff[author]=119.html" rel="nofollow" class="active">M. Scarpa</a>, <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, <a href="biblio%3Ff[author]=222.html" rel="nofollow" class="active">R. Ghosh</a>, and <a href="biblio%3Ff[author]=224.html" rel="nofollow" class="active">K. S. Trivedi</a>, </span>
<span class="biblio-title">"<a href="node/408.html">An SRN-based resiliency quantification approach</a>", </span>
<i>Proceedings of the 36th International Conference on Application and Theory of Petri Nets and Concurrency (Petri Nets)</i>, vol. 9115 Lecture Notes in Computer Science, Brussels, Belgium, 21-26 June 2015, Springer Verlag, pp. 98-116, 2015.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=An+SRN-based+resiliency+quantification+approach&rft.issn=03029743&rft.isbn=9783319194875&rft.date=2015&rft.volume=9115+Lecture+Notes+in+Computer+Science&rft.spage=98&rft.epage=116&rft.aulast=Bruneo&rft.aufirst=Dario&rft.au=Longo%2C+Francesco&rft.au=Scarpa%2C+Marco&rft.au=Puliafito%2C+Antonio&rft.au=Ghosh%2C+Rahul&rft.au=Trivedi%2C+Kishor&rft.pub=Springer+Verlag&rft.place=Brussels%2C+Belgium%2C+21-26+June+2015&rft_id=info%3Adoi%2F10.1007%2F978-3-319-19488-2_5"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/408" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/408" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">Longo, F.</a>, <a href="biblio%3Ff[author]=93.html" rel="nofollow" class="active">D. Bruneo</a>, <a href="biblio%3Ff[author]=90.html" rel="nofollow" class="active">S. Distefano</a>, <a href="biblio%3Ff[author]=91.html" rel="nofollow" class="active">G. Merlino</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/494.html">Stack4Things: An OpenStack-Based Framework for IoT</a>", </span>
<i>Proceedings - 2015 International Conference on Future Internet of Things and Cloud, FiCloud 2015 and 2015 International Conference on Open and Big Data, OBD 2015</i>, Rome (Italy), Institute of Electrical and Electronics Engineers Inc., pp. 204-211, 2015.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Stack4Things%3A+An+OpenStack-Based+Framework+for+IoT&rft.isbn=9781467381031&rft.date=2015&rft.spage=204&rft.epage=211&rft.aulast=Longo&rft.aufirst=Francesco&rft.au=Bruneo%2C+Dario&rft.au=Distefano%2C+Salvatore&rft.au=Merlino%2C+Giovanni&rft.au=Puliafito%2C+Antonio&rft.pub=Institute+of+Electrical+and+Electronics+Engineers+Inc.&rft.place=Rome+%28Italy%29&rft_id=info%3Adoi%2F10.1109%2FFiCloud.2015.97"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/494" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/494" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=113.html" rel="nofollow" class="biblio-local-author active">Giacobbe, M.</a>, <a href="biblio%3Ff[author]=12.html" rel="nofollow" class="biblio-local-author active">A. Celesti</a>, <a href="biblio%3Ff[author]=11.html" rel="nofollow" class="active">M. Fazio</a>, <a href="biblio%3Ff[author]=13.html" rel="nofollow" class="active">M. Villari</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/348.html">A Sustainable Energy-Aware Resource Management Strategy for IoT Cloud Federation</a>", </span>
<i>The first IEEE International Symposium on Systems Engineering (ISSE)</i>, vol. IEEE First International Symposium on Systems Engineering 2015 Proceedings, Roma, Italy, IEEE Computer Society, pp. 170-175, 09/2015.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=A+Sustainable+Energy-Aware+Resource+Management+Strategy+for+IoT+Cloud+Federation&rft.issn=978-1-4799-1919-2&rft.date=2015&rft.volume=IEEE+First+International+Symposium+on+Systems+Engineering+2015+Proceedings&rft.spage=170&rft.epage=175&rft.aulast=Giacobbe&rft.aufirst=Maurizio&rft.au=Celesti%2C+Antonio&rft.au=Fazio%2C+Maria&rft.au=Villari%2C+Massimo&rft.au=Puliafito%2C+Antonio&rft.pub=IEEE+Computer+Society&rft.place=Roma%2C+Italy"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/348" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/348" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=113.html" rel="nofollow" class="biblio-local-author active">Giacobbe, M.</a>, <a href="biblio%3Ff[author]=12.html" rel="nofollow" class="biblio-local-author active">A. Celesti</a>, <a href="biblio%3Ff[author]=11.html" rel="nofollow" class="active">M. Fazio</a>, <a href="biblio%3Ff[author]=13.html" rel="nofollow" class="active">M. Villari</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/356.html">Towards Energy Management in Cloud Federation: A Survey in the Perspective of Future Sustainable and Cost-Saving Strategies</a>", </span>
<i>Computer Networks</i>, pp. 438-452, 2015.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.atitle=Towards+Energy+Management+in+Cloud+Federation%3A+A+Survey+in+the+Perspective+of+Future+Sustainable+and+Cost-Saving+Strategies&rft.title=Computer+Networks&rft.issn=1389-1286&rft.date=2015&rft.spage=438&rft.epage=452&rft.aulast=Giacobbe&rft.aufirst=Maurizio&rft.au=Celesti%2C+Antonio&rft.au=Fazio%2C+Maria&rft.au=Villari%2C+Massimo&rft.au=Puliafito%2C+Antonio&rft_id=info%3Adoi%2Fhttp%3A%2F%2Fdx.doi.org%2F10.1016%2Fj.comnet.2015.08.031"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/356" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/356" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">Longo, F.</a>, <a href="biblio%3Ff[author]=93.html" rel="nofollow" class="active">D. Bruneo</a>, <a href="biblio%3Ff[author]=13.html" rel="nofollow" class="active">M. Villari</a>, <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, <a href="biblio%3Ff[author]=330.html" rel="nofollow" class="active">E. Salant</a>, and <a href="biblio%3Ff[author]=332.html" rel="nofollow" class="active">Y. Wolfsthal</a>, </span>
<span class="biblio-title">"<a href="node/429.html">Towards the future internet: The RESERVOIR, VISION cloud, and CloudWave experiences</a>", </span>
<i>International Journal of High Performance Computing and Networking</i>, vol. 8, no. 3: Inderscience Enterprises Ltd., pp. 235-247, 2015.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.atitle=Towards+the+future+internet%3A+The+RESERVOIR%2C+VISION+cloud%2C+and+CloudWave+experiences&rft.title=International+Journal+of+High+Performance+Computing+and+Networking&rft.issn=17400562&rft.date=2015&rft.volume=8&rft.spage=235&rft.epage=247&rft.aulast=Longo&rft.aufirst=Francesco&rft.au=Bruneo%2C+Dario&rft.au=Villari%2C+Massimo&rft.au=Puliafito%2C+Antonio&rft.au=Salant%2C+Eliot&rft.au=Wolfsthal%2C+Yaron&rft.pub=Inderscience+Enterprises+Ltd.&rft_id=info%3Adoi%2F10.1504%2FIJHPCN.2015.071260"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/429" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/429" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">Puliafito, A.</a>, <a href="biblio%3Ff[author]=12.html" rel="nofollow" class="biblio-local-author active">A. Celesti</a>, <a href="biblio%3Ff[author]=13.html" rel="nofollow" class="active">M. Villari</a>, and <a href="biblio%3Ff[author]=11.html" rel="nofollow" class="active">M. Fazio</a>, </span>
<span class="biblio-title">"<a href="node/351.html">Towards the Integration Between IoT and Cloud Computing: An Approach for the Secure Self-Configuration of Embedded Devices</a>", </span>
<i>International Journal of Distributed Sensor Networks</i>, vol. 2015, issue Leveraging the Internet of Things: Integration of Sensors and Cloud Computing Systems, pp. 1-9, 2016, 2015.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.atitle=Towards+the+Integration+Between+IoT+and+Cloud+Computing%3A+An+Approach+for+the+Secure+Self-Configuration+of+Embedded+Devices&rft.title=International+Journal+of+Distributed+Sensor+Networks&rft.stitle=IJDSN&rft.date=2015&rft.volume=2015&rft.issue=Leveraging+the+Internet+of+Things%3A+Integration+of+Sensors+and+Cloud+Computing+Systems&rft.spage=1&rft.epage=9&rft.aulast=Puliafito&rft.aufirst=Antonio&rft.au=Celesti%2C+Antonio&rft.au=Villari%2C+Massimo&rft.au=Fazio%2C+Maria&rft_id=info%3Adoi%2Fhttp%3A%2F%2Fdx.doi.org%2F10.1155%2F2015%2F286860"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/351" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/351" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=90.html" rel="nofollow" class="active">Distefano, S.</a>, <a href="biblio%3Ff[author]=91.html" rel="nofollow" class="active">G. Merlino</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/363.html">A Utility Paradigm For Iot: The Sensing Cloud</a>", </span>
<i>PERVASIVE AND MOBILE COMPUTING</i>, vol. 20, pp. 127–144, 2015.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.atitle=A+Utility+Paradigm+For+Iot%3A+The+Sensing+Cloud&rft.title=PERVASIVE+AND+MOBILE+COMPUTING&rft.date=2015&rft.volume=20&rft.spage=127%E2%80%93144&rft.aulast=Distefano&rft.aufirst=Salvatore&rft.au=Merlino%2C+Giovanni&rft.au=Puliafito%2C+Antonio&rft.au=Puliafito%2C+Antonio&rft_id=info%3Adoi%2F10.1016%2Fj.pmcj.2014.09.006"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/363" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/363" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div></div><div class="biblio-category-section"><div class="biblio-separator-bar">2014</div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=326.html" rel="nofollow" class="active">Marquezan, C.</a>, <a href="biblio%3Ff[author]=93.html" rel="nofollow" class="active">D. Bruneo</a>, <a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">F. Longo</a>, <a href="biblio%3Ff[author]=140.html" rel="nofollow" class="active">F. Wessling</a>, <a href="biblio%3Ff[author]=141.html" rel="nofollow" class="active">A. Metzger</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/401.html">3-D cloud monitoring: Enabling effective cloud infrastructure and application management</a>", </span>
<i>Proceedings of the 10th International Conference on Network and Service Management (CNSM)</i>, Rio de Janeiro, Brazil, 17-21 November 2014, IEEE Computer Society, pp. 55-63, 2014.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=3-D+cloud+monitoring%3A+Enabling+effective+cloud+infrastructure+and+application+management&rft.isbn=9783901882661&rft.date=2014&rft.spage=55&rft.epage=63&rft.aulast=Marquezan&rft.aufirst=Clarissa&rft.au=Bruneo%2C+Dario&rft.au=Longo%2C+Francesco&rft.au=Wessling%2C+Florian&rft.au=Metzger%2C+Andreas&rft.au=Puliafito%2C+Antonio&rft.pub=IEEE+Computer+Society&rft.place=Rio+de+Janeiro%2C+Brazil%2C+17-21+November+2014&rft_id=info%3Adoi%2F10.1109%2FCNSM.2014.7014141"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/401" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/401" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=13.html" rel="nofollow" class="active">Villari, M.</a>, <a href="biblio%3Ff[author]=12.html" rel="nofollow" class="biblio-local-author active">A. Celesti</a>, <a href="biblio%3Ff[author]=11.html" rel="nofollow" class="active">M. Fazio</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/32.html">Alljoin Lambda: An Architecture For The Management Of Smart Environments In Iot</a>", </span>
<i>International Conference on Smart Computing (SMARTCOMP)</i>, Hong Kong, China, IEEE Computer Society, pp. 9-14, 05/2014.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Alljoin+Lambda%3A+An+Architecture+For+The+Management+Of+Smart+Environments+In+Iot&rft.issn=978-1-4799-6447-5+&rft.date=2014&rft.spage=9&rft.epage=14&rft.aulast=Villari&rft.aufirst=Massimo&rft.au=Celesti%2C+Antonio&rft.au=Fazio%2C+Maria&rft.au=Puliafito%2C+Antonio&rft.pub=IEEE+Computer+Society&rft.place=Hong+Kong%2C+China"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/32" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/32" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=113.html" rel="nofollow" class="biblio-local-author active">Giacobbe, M.</a>, <a href="biblio%3Ff[author]=118.html" rel="nofollow" class="active">M. Coco</a>, <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, and <a href="biblio%3Ff[author]=119.html" rel="nofollow" class="active">M. Scarpa</a>, </span>
<span class="biblio-title">"<a href="node/143.html">A Cloud-based Access Control Solution for Advanced Multi-purpose Management in Smart City Scenario</a>", </span>
<i>Proceedings of 2014 International Conference on Smart Computing Workshops</i>, vol. -, Hong Kong, Antonio Puliafito, pp. 35–40, 05/11/2014.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=A+Cloud-based+Access+Control+Solution+for+Advanced+Multi-purpose+Management+in+Smart+City+Scenario&rft.date=2014&rft.volume=-&rft.spage=35%E2%80%9340&rft.aulast=Giacobbe&rft.aufirst=Maurizio&rft.au=Coco%2C+Marcello&rft.au=Puliafito%2C+Antonio&rft.au=Scarpa%2C+Marco&rft.pub=Antonio+Puliafito&rft.place=Hong+Kong"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/143" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/143" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=93.html" rel="nofollow" class="active">Bruneo, D.</a>, <a href="biblio%3Ff[author]=323.html" rel="nofollow" class="active">T. Fritz</a>, <a href="biblio%3Ff[author]=324.html" rel="nofollow" class="active">S. Keidar-Barner</a>, <a href="biblio%3Ff[author]=325.html" rel="nofollow" class="active">P. Leitner</a>, <a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">F. Longo</a>, <a href="biblio%3Ff[author]=326.html" rel="nofollow" class="active">C. Marquezan</a>, <a href="biblio%3Ff[author]=141.html" rel="nofollow" class="active">A. Metzger</a>, <a href="biblio%3Ff[author]=327.html" rel="nofollow" class="active">K. Pohl</a>, <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, <a href="biblio%3Ff[author]=328.html" rel="nofollow" class="active">D. Raz</a>, et al., </span>
<span class="biblio-title">"<a href="node/398.html">CloudWave: Where adaptive cloud management meets DevOps</a>", </span>
<i>Proceedings of the 5th IEEE International Workshop on Performance Evaluation of Communications in Distributed Systems and Web based Service Architectures (PEDISWESA) Co-located with the 19th International Symposium on Computers and Communications (ISCC)</i>, Island of Madeira, Funchal, Portugal, 23-26 June 2014, IEEE Computer Society, 2014.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=CloudWave%3A+Where+adaptive+cloud+management+meets+DevOps&rft.issn=15301346&rft.isbn=9781479942770&rft.date=2014&rft.aulast=Bruneo&rft.aufirst=Dario&rft.au=Fritz%2C+Thomas&rft.au=Keidar-Barner%2C+Sharon&rft.au=Leitner%2C+Philipp&rft.au=Longo%2C+Francesco&rft.au=Marquezan%2C+Clarissa&rft.au=Metzger%2C+Andreas&rft.au=Pohl%2C+Klaus&rft.au=Puliafito%2C+Antonio&rft.au=Raz%2C+Danny&rft.au=Roth%2C+Andreas&rft.au=Salant%2C+Eliot&rft.au=Segall%2C+Itai&rft.au=Villari%2C+Massimo&rft.au=Wolfsthal%2C+Yaron&rft.au=Woods%2C+Chris&rft.pub=IEEE+Computer+Society&rft.place=Island+of+Madeira%2C+Funchal%2C+Portugal%2C+23-26+June+2014&rft_id=info%3Adoi%2F10.1109%2FISCC.2014.6912638"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/398" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/398" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">Longo, F.</a>, <a href="biblio%3Ff[author]=93.html" rel="nofollow" class="active">D. Bruneo</a>, <a href="biblio%3Ff[author]=13.html" rel="nofollow" class="active">M. Villari</a>, <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, <a href="biblio%3Ff[author]=330.html" rel="nofollow" class="active">E. Salant</a>, and <a href="biblio%3Ff[author]=332.html" rel="nofollow" class="active">Y. Wolfsthal</a>, </span>
<span class="biblio-title">"<a href="node/399.html">From VISION cloud to cloudwave: Towards the future internet and a new generation of services</a>", </span>
<i>Proceedings of the 2014 International Conference on Intelligent Networking and Collaborative Systems (INCoS)</i>, Salerno, Italy, 10-12 September 2014, IEEE Computer Society, pp. 641-646, 2014.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=From+VISION+cloud+to+cloudwave%3A+Towards+the+future+internet+and+a+new+generation+of+services&rft.isbn=9781479963867&rft.date=2014&rft.spage=641&rft.epage=646&rft.aulast=Longo&rft.aufirst=Francesco&rft.au=Bruneo%2C+Dario&rft.au=Villari%2C+Massimo&rft.au=Puliafito%2C+Antonio&rft.au=Salant%2C+Eliot&rft.au=Wolfsthal%2C+Yaron&rft.pub=IEEE+Computer+Society&rft.place=Salerno%2C+Italy%2C+10-12+September+2014&rft_id=info%3Adoi%2F10.1109%2FINCoS.2014.34"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/399" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/399" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=94.html" rel="nofollow" class="active">Papavassiliou, S.</a>, <a href="biblio%3Ff[author]=95.html" rel="nofollow" class="active">C. Papagianni</a>, <a href="biblio%3Ff[author]=90.html" rel="nofollow" class="active">S. Distefano</a>, <a href="biblio%3Ff[author]=91.html" rel="nofollow" class="active">G. Merlino</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/136.html">M2M Interactions Paradigm Via Volunteer Computing And Mobile Crowdsensing</a>", </span>
<i>Machine-To-Machine Communications - Architectures, Technology, Standards, and Applications</i>, Londra, Taylor & Francis, pp. 123–133, 2014.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.atitle=M2M+Interactions+Paradigm+Via+Volunteer+Computing+And+Mobile+Crowdsensing&rft.title=Machine-To-Machine+Communications+-+Architectures%2C+Technology%2C+Standards%2C+and+Applications&rft.btitle=Machine-To-Machine+Communications+-+Architectures%2C+Technology%2C+Standards%2C+and+Applications&rft.date=2014&rft.spage=123%E2%80%93133&rft.aulast=Papavassiliou&rft.aufirst=Symeon&rft.au=Papagianni%2C+Chrysa&rft.au=Distefano%2C+Salvatore&rft.au=Merlino%2C+Giovanni&rft.au=Puliafito%2C+Antonio&rft.pub=Taylor+%26amp%3B+Francis&rft.place=Londra"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/136" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/136" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=90.html" rel="nofollow" class="active">Distefano, S.</a>, <a href="biblio%3Ff[author]=91.html" rel="nofollow" class="active">G. Merlino</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/126.html">Mobiles for Sensing Clouds: the SAaaS4Mobile Experience</a>", </span>
<i>SCALABLE COMPUTING. PRACTICE AND EXPERIENCE</i>, vol. 14, pp. 215–233, 2014.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.atitle=Mobiles+for+Sensing+Clouds%3A+the+SAaaS4Mobile+Experience&rft.title=SCALABLE+COMPUTING.+PRACTICE+AND+EXPERIENCE&rft.date=2014&rft.volume=14&rft.spage=215%E2%80%93233&rft.aulast=Distefano&rft.aufirst=Salvatore&rft.au=Merlino%2C+Giovanni&rft.au=Puliafito%2C+Antonio&rft.au=Puliafito%2C+Antonio&rft_id=info%3Adoi%2F10.12694%2Fscpe.v14i4.929"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/126" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/126" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=91.html" rel="nofollow" class="active">Merlino, G.</a>, <a href="biblio%3Ff[author]=93.html" rel="nofollow" class="active">D. Bruneo</a>, <a href="biblio%3Ff[author]=90.html" rel="nofollow" class="active">S. Distefano</a>, <a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">F. Longo</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/402.html">Stack4Things: Integrating IoT with OpenStack in a Smart City context</a>", </span>
<i>Proceedings of the 2014 International Conference on Smart Computing Workshops (SMARTCOMP Workshops)</i>, Hong Kong, China, 5 November 2014, IEEE Computer Society, pp. 21-28, 2014.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Stack4Things%3A+Integrating+IoT+with+OpenStack+in+a+Smart+City+context&rft.isbn=9781479964475&rft.date=2014&rft.spage=21&rft.epage=28&rft.aulast=Merlino&rft.aufirst=Giovanni&rft.au=Bruneo%2C+Dario&rft.au=Distefano%2C+Salvatore&rft.au=Longo%2C+Francesco&rft.au=Puliafito%2C+Antonio&rft.pub=IEEE+Computer+Society&rft.place=Hong+Kong%2C+China%2C+5+November+2014&rft_id=info%3Adoi%2F10.1109%2FSMARTCOMP-W.2014.7046678"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/402" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/402" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=15.html" rel="nofollow" class="active">Mulfari, D.</a>, <a href="biblio%3Ff[author]=12.html" rel="nofollow" class="biblio-local-author active">A. Celesti</a>, <a href="biblio%3Ff[author]=11.html" rel="nofollow" class="active">M. Fazio</a>, <a href="biblio%3Ff[author]=13.html" rel="nofollow" class="active">M. Villari</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/31.html">Using Embedded Systems to Spread Assistive Technology on Multiple Devices in Smart Environments</a>", </span>
<i>IEEE International Conference on Bioinformatics and Biomedicine (BIBM)</i>, Belfast, IEEE Computer Society, pp. 5-11, 2014.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Using+Embedded+Systems+to+Spread+Assistive+Technology+on+Multiple+Devices+in+Smart+Environments&rft.issn=978-1-4799-5669-2&rft.date=2014&rft.spage=5&rft.epage=11&rft.aulast=Mulfari&rft.aufirst=Davide&rft.au=Celesti%2C+Antonio&rft.au=Fazio%2C+Maria&rft.au=Villari%2C+Massimo&rft.au=Puliafito%2C+Antonio&rft.pub=IEEE+Computer+Society&rft.place=Belfast&rft_id=info%3Adoi%2F10.1109%2FBIBM.2014.6999234"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/31" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/31" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div></div><div class="biblio-category-section"><div class="biblio-separator-bar">2013</div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=92.html" rel="nofollow" class="active">Cremer, L.</a>, <a href="biblio%3Ff[author]=90.html" rel="nofollow" class="active">S. Distefano</a>, <a href="biblio%3Ff[author]=91.html" rel="nofollow" class="active">G. Merlino</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/128.html">Abstraction Of On-board Resources In Mobiles: Saaas4mobile, A First Step Towards A Sensing Cloud.</a>", </span>
<i>Proceedings of the 15th IEEE International Conference on High Performance Computing and Communications (HPCC)</i>, Piscataway, NJ, IEEE / Institute of Electrical and Electronics Engineers Incorporated:445 Hoes Lane:Piscataway, NJ 08854:(800)701-4333, (732)981-0060, EMAIL: subscription-service@ieee.org, INTERNET: http://www.ieee.org, Fax: (732)981-9667, pp. 674–681, 15 Novembre 2013.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Abstraction+Of+On-board+Resources+In+Mobiles%3A+Saaas4mobile%2C+A+First+Step+Towards+A+Sensing+Cloud.&rft.date=2013&rft.spage=674%E2%80%93681&rft.aulast=Cremer&rft.aufirst=Lionel&rft.au=Distefano%2C+Salvatore&rft.au=Merlino%2C+Giovanni&rft.au=Puliafito%2C+Antonio&rft.pub=IEEE+%2F+Institute+of+Electrical+and+Electronics+Engineers+Incorporated%3A445+Hoes+Lane%3APiscataway%2C+NJ+08854%3A%28800%29701-4333%2C+%28732%29981-0060%2C+EMAIL%3A+subscription-service%40ieee.org%2C+INTERNET%3A+http%3A%2F%2Fwww.ieee.org%2C+Fax%3A+%28732%29981-9667&rft.place=Piscataway%2C+NJ"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/128" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/128" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=93.html" rel="nofollow" class="active">Bruneo, D.</a>, <a href="biblio%3Ff[author]=299.html" rel="nofollow" class="active">A. Lhoas</a>, <a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">F. Longo</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/394.html">Analytical evaluation of resource allocation policies in green IaaS clouds</a>", </span>
<i>Proceedings of the IEEE 3rd International Conference on Cloud and Green Computing (CGC) Co-located with the IEEE 3rd International Conference on Social Computing and Its Applications (SCA)</i>, Karlsruhe, Germany, 30 September - 2 October 2013, IEEE Computer Society, pp. 84-91, 2013.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Analytical+evaluation+of+resource+allocation+policies+in+green+IaaS+clouds&rft.isbn=9780769551142&rft.date=2013&rft.spage=84&rft.epage=91&rft.aulast=Bruneo&rft.aufirst=Dario&rft.au=Lhoas%2C+Audric&rft.au=Longo%2C+Francesco&rft.au=Puliafito%2C+Antonio&rft.pub=IEEE+Computer+Society&rft.place=Karlsruhe%2C+Germany%2C+30+September+-+2+October+2013&rft_id=info%3Adoi%2F10.1109%2FCGC.2013.21"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/394" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/394" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=90.html" rel="nofollow" class="active">Distefano, S.</a>, <a href="biblio%3Ff[author]=91.html" rel="nofollow" class="active">G. Merlino</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/127.html">Application Deployment For Iot: An Infrastructure Approach</a>", </span>
<i>Proceeding of the IEEE Global Communications Conference (GLOBECOM) - Symposium On Selected Areas In Communications</i>, Piscataway, NJ, IEEE / Institute of Electrical and Electronics Engineers Incorporated:445 Hoes Lane:Piscataway, NJ 08854:(800)701-4333, (732)981-0060, EMAIL: subscription-service@ieee.org, INTERNET: http://www.ieee.org, Fax: (732)981-9667, pp. 2798–2803, 13 Dicembre 2013.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Application+Deployment+For+Iot%3A+An+Infrastructure+Approach&rft.date=2013&rft.spage=2798%E2%80%932803&rft.aulast=Distefano&rft.aufirst=Salvatore&rft.au=Merlino%2C+Giovanni&rft.au=Puliafito%2C+Antonio&rft.au=Puliafito%2C+Antonio&rft.pub=IEEE+%2F+Institute+of+Electrical+and+Electronics+Engineers+Incorporated%3A445+Hoes+Lane%3APiscataway%2C+NJ+08854%3A%28800%29701-4333%2C+%28732%29981-0060%2C+EMAIL%3A+subscription-service%40ieee.org%2C+INTERNET%3A+http%3A%2F%2Fwww.ieee.org%2C+Fax%3A+%28732%29981-9667&rft.place=Piscataway%2C+NJ"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/127" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/127" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=12.html" rel="nofollow" class="biblio-local-author active">Celesti, A.</a>, <a href="biblio%3Ff[author]=36.html" rel="nofollow" class="active">F. Tusa</a>, <a href="biblio%3Ff[author]=13.html" rel="nofollow" class="active">M. Villari</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/61.html">An Approach For The Composition Of Generic Cloud-based Services Using Xri-based Apis For Enabling New E-business</a>", </span>
<i>International Journal of E-Business Development</i>, vol. 3, issue 2, pp. 64–74, 05/2013.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.atitle=An+Approach+For+The+Composition+Of+Generic+Cloud-based+Services+Using+Xri-based+Apis+For+Enabling+New+E-business&rft.title=International+Journal+of+E-Business+Development&rft.date=2013&rft.volume=3&rft.issue=2&rft.spage=64%E2%80%9374&rft.aulast=Celesti&rft.aufirst=Antonio&rft.au=Tusa%2C+Francesco&rft.au=Villari%2C+Massimo&rft.au=Puliafito%2C+Antonio"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/61" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/61" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=11.html" rel="nofollow" class="active">Fazio, M.</a>, <a href="biblio%3Ff[author]=91.html" rel="nofollow" class="active">G. Merlino</a>, <a href="biblio%3Ff[author]=93.html" rel="nofollow" class="active">D. Bruneo</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/132.html">An Architecture For Runtime Customization Of Smart Devices</a>", </span>
<i>International Symposium on Network Computing and Applications</i>, Los Alamitos, CA, IEEE COMPUTER SOC, 10662 LOS VAQUEROS CIRCLE, PO BOX 3014, LOS ALAMITOS, CA 90720-1264 USA, pp. 157–164, 25/08/2013.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=An+Architecture+For+Runtime+Customization+Of+Smart+Devices&rft.date=2013&rft.spage=157%E2%80%93164&rft.aulast=Fazio&rft.aufirst=Maria&rft.au=Merlino%2C+Giovanni&rft.au=Bruneo%2C+Dario&rft.au=Puliafito%2C+Antonio&rft.pub=IEEE+COMPUTER+SOC%2C+10662+LOS+VAQUEROS+CIRCLE%2C+PO+BOX+3014%2C+LOS+ALAMITOS%2C+CA+90720-1264+USA&rft.place=Los+Alamitos%2C+CA&rft_id=info%3Adoi%2F10.1109%2FNCA.2013.39"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/132" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/132" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=92.html" rel="nofollow" class="active">Cremer, L.</a>, <a href="biblio%3Ff[author]=90.html" rel="nofollow" class="active">S. Distefano</a>, <a href="biblio%3Ff[author]=91.html" rel="nofollow" class="active">G. Merlino</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/129.html">The Core Approach Of Saaas In Action: The Planning Agent</a>", </span>
<i>Advances in Service-Oriented and Cloud Computing</i>, Berlin, SPRINGER-VERLAG, pp. 37–46, 2013.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=The+Core+Approach+Of+Saaas+In+Action%3A+The+Planning+Agent&rft.date=2013&rft.spage=37%E2%80%9346&rft.aulast=Cremer&rft.aufirst=Lionel&rft.au=Distefano%2C+Salvatore&rft.au=Merlino%2C+Giovanni&rft.au=Puliafito%2C+Antonio&rft.pub=SPRINGER-VERLAG&rft.place=Berlin&rft_id=info%3Adoi%2F10.1007%2F978-3-642-45364-9_4"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/129" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/129" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=13.html" rel="nofollow" class="active">Villari, M.</a>, <a href="biblio%3Ff[author]=12.html" rel="nofollow" class="biblio-local-author active">A. Celesti</a>, <a href="biblio%3Ff[author]=11.html" rel="nofollow" class="active">M. Fazio</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/43.html">Evaluating A File Fragmentation System For Multi-provider Cloud Storage</a>", </span>
<i>SCALABLE COMPUTING. PRACTICE AND EXPERIENCE</i>, vol. 14, pp. 265–277, 2013.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.atitle=Evaluating+A+File+Fragmentation+System+For+Multi-provider+Cloud+Storage&rft.title=SCALABLE+COMPUTING.+PRACTICE+AND+EXPERIENCE&rft.date=2013&rft.volume=14&rft.spage=265%E2%80%93277&rft.aulast=Villari&rft.aufirst=Massimo&rft.au=Celesti%2C+Antonio&rft.au=Fazio%2C+Maria&rft.au=Puliafito%2C+Antonio&rft_id=info%3Adoi%2F10.12694%2Fscpe.v14i4.932"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/43" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/43" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=90.html" rel="nofollow" class="active">Distefano, S.</a>, <a href="biblio%3Ff[author]=91.html" rel="nofollow" class="active">G. Merlino</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/135.html">Exploiting Saaas In Smart City Scenarios</a>", </span>
<i>Intelligent Computing Theories</i>, vol. 7995, Heidelberg, Springer, pp. 638–647, 31/07/2013.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Exploiting+Saaas+In+Smart+City+Scenarios&rft.date=2013&rft.volume=7995&rft.spage=638%E2%80%93647&rft.aulast=Distefano&rft.aufirst=Salvatore&rft.au=Merlino%2C+Giovanni&rft.au=Puliafito%2C+Antonio&rft.au=Puliafito%2C+Antonio&rft.pub=Springer&rft.place=Heidelberg&rft_id=info%3Adoi%2F10.1007%2F978-3-642-39479-9_74"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/135" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/135" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=15.html" rel="nofollow" class="active">Mulfari, D.</a>, <a href="biblio%3Ff[author]=12.html" rel="nofollow" class="biblio-local-author active">A. Celesti</a>, <a href="biblio%3Ff[author]=13.html" rel="nofollow" class="active">M. Villari</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/56.html">How cloud computing can support on-demand assistive services</a>", </span>
<i>W4A '13 Proceedings of the 10th International Cross-Disciplinary Conference on Web Accessibility</i>, New York, NY, USA, ACM, pp. 1–4, 15th May 2013.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=How+cloud+computing+can+support+on-demand+assistive+services&rft.issn=978-1-4503-1844-0&rft.date=2013&rft.spage=1%E2%80%934&rft.aulast=Mulfari&rft.aufirst=Davide&rft.au=Celesti%2C+Antonio&rft.au=Villari%2C+Massimo&rft.au=Puliafito%2C+Antonio&rft.pub=ACM&rft.place=New+York%2C+NY%2C+USA&rft_id=info%3Adoi%2F10.1145%2F2461121.2461140"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/56" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/56" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=90.html" rel="nofollow" class="active">Distefano, S.</a>, <a href="biblio%3Ff[author]=91.html" rel="nofollow" class="active">G. Merlino</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/130.html">A Hypervisor For Infrastructure-enabled Sensing Clouds</a>", </span>
<i>Communications Workshops (ICC), 2013 IEEE International Conference on</i>, Piscataway, NJ, IEEE, pp. 1362–1366, 13/06/2013.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=A+Hypervisor+For+Infrastructure-enabled+Sensing+Clouds&rft.date=2013&rft.spage=1362%E2%80%931366&rft.aulast=Distefano&rft.aufirst=Salvatore&rft.au=Merlino%2C+Giovanni&rft.au=Puliafito%2C+Antonio&rft.au=Puliafito%2C+Antonio&rft.pub=IEEE&rft.place=Piscataway%2C+NJ&rft_id=info%3Adoi%2F10.1109%2FICCW.2013.6649449"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/130" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/130" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=90.html" rel="nofollow" class="active">Distefano, S.</a>, <a href="biblio%3Ff[author]=91.html" rel="nofollow" class="active">G. Merlino</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/131.html">Infrastructure Setup And Deployment In Sensing Cloud Environments</a>", </span>
<i>Innovative Mobile and Internet Services in Ubiquitous Computing (IMIS), 2013 Seventh International Conference on</i>, Piscataway, NJ, IEEE, pp. 462–467, 05/07/2013.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Infrastructure+Setup+And+Deployment+In+Sensing+Cloud+Environments&rft.date=2013&rft.spage=462%E2%80%93467&rft.aulast=Distefano&rft.aufirst=Salvatore&rft.au=Merlino%2C+Giovanni&rft.au=Puliafito%2C+Antonio&rft.au=Puliafito%2C+Antonio&rft.pub=IEEE&rft.place=Piscataway%2C+NJ&rft_id=info%3Adoi%2F10.1109%2FIMIS.2013.83"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/131" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/131" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=11.html" rel="nofollow" class="active">Fazio, M.</a>, <a href="biblio%3Ff[author]=12.html" rel="nofollow" class="biblio-local-author active">A. Celesti</a>, <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, and <a href="biblio%3Ff[author]=13.html" rel="nofollow" class="active">M. Villari</a>, </span>
<span class="biblio-title">"<a href="node/42.html">A Message Oriented Middleware for Cloud Computing To Improve Efficiency in Risk Management Systems</a>", </span>
<i>SCALABLE COMPUTING. PRACTICE AND EXPERIENCE</i>, vol. 14, pp. 201–213, 2013.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.atitle=A+Message+Oriented+Middleware+for+Cloud+Computing+To+Improve+Efficiency+in+Risk+Management+Systems&rft.title=SCALABLE+COMPUTING.+PRACTICE+AND+EXPERIENCE&rft.date=2013&rft.volume=14&rft.spage=201%E2%80%93213&rft.aulast=Fazio&rft.aufirst=Maria&rft.au=Celesti%2C+Antonio&rft.au=Puliafito%2C+Antonio&rft.au=Villari%2C+Massimo&rft_id=info%3Adoi%2F10.12694%2Fscpe.v14i4.928"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/42" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/42" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=93.html" rel="nofollow" class="active">Bruneo, D.</a>, <a href="biblio%3Ff[author]=11.html" rel="nofollow" class="active">M. Fazio</a>, <a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">F. Longo</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/360.html">Smart data centers for green clouds</a>", </span>
<i>Proceedings of the 18th IEEE International Symposium on Computers and Communications (ISCC)</i>, Split, Croatia, 7-10 July 2013, IEEE Computer Society, pp. 3-8, 2013.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Smart+data+centers+for+green+clouds&rft.issn=15301346&rft.isbn=9781479937554&rft.date=2013&rft.spage=3&rft.epage=8&rft.aulast=Bruneo&rft.aufirst=Dario&rft.au=Fazio%2C+Maria&rft.au=Longo%2C+Francesco&rft.au=Puliafito%2C+Antonio&rft.pub=IEEE+Computer+Society&rft.place=Split%2C+Croatia%2C+7-10+July+2013&rft_id=info%3Adoi%2F10.1109%2FISCC.2013.6754914"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/360" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/360" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=12.html" rel="nofollow" class="biblio-local-author active">Celesti, A.</a>, <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, <a href="biblio%3Ff[author]=36.html" rel="nofollow" class="active">F. Tusa</a>, and <a href="biblio%3Ff[author]=13.html" rel="nofollow" class="active">M. Villari</a>, </span>
<span class="biblio-title">"<a href="node/54.html">Towards Energy Sustainability in Federated and Interoperable Clouds</a>", </span>
<i>Communication Infrastructures for Cloud Computing</i>, Hershey, Pennsylvania, US, IGI Global Publisher, pp. 329–350, 2013.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.atitle=Towards+Energy+Sustainability+in+Federated+and+Interoperable+Clouds&rft.title=Communication+Infrastructures+for+Cloud+Computing&rft.btitle=Communication+Infrastructures+for+Cloud+Computing&rft.issn=978-146664853-1%3B146664852X%3B978-146664852-4&rft.date=2013&rft.spage=329%E2%80%93350&rft.aulast=Celesti&rft.aufirst=Antonio&rft.au=Puliafito%2C+Antonio&rft.au=Tusa%2C+Francesco&rft.au=Villari%2C+Massimo&rft.pub=IGI+Global+Publisher&rft.place=Hershey%2C+Pennsylvania%2C+US&rft_id=info%3Adoi%2F10.4018%2F978-1-4666-4522-6.ch015"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/54" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/54" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=90.html" rel="nofollow" class="active">Distefano, S.</a>, <a href="biblio%3Ff[author]=91.html" rel="nofollow" class="active">G. Merlino</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/133.html">Towards The Cloud Of Things - Sensing And Actuation As A Service, A Key Enabler For A New Cloud Paradigm</a>", </span>
<i>P2P, Parallel, Grid, Cloud and Internet Computing (3PGCIC), 2013 Eighth International Conference on</i>, Piscataway, NJ, IEEE, pp. 60–67, 30/10/2013.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Towards+The+Cloud+Of+Things+-+Sensing+And+Actuation+As+A+Service%2C+A+Key+Enabler+For+A+New+Cloud+Paradigm&rft.date=2013&rft.spage=60%E2%80%9367&rft.aulast=Distefano&rft.aufirst=Salvatore&rft.au=Merlino%2C+Giovanni&rft.au=Puliafito%2C+Antonio&rft.au=Puliafito%2C+Antonio&rft.pub=IEEE&rft.place=Piscataway%2C+NJ&rft_id=info%3Adoi%2F10.1109%2F3PGCIC.2013.16"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/133" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/133" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=93.html" rel="nofollow" class="active">Bruneo, D.</a>, <a href="biblio%3Ff[author]=90.html" rel="nofollow" class="active">S. Distefano</a>, <a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">F. Longo</a>, <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, and <a href="biblio%3Ff[author]=119.html" rel="nofollow" class="active">M. Scarpa</a>, </span>
<span class="biblio-title">"<a href="node/389.html">Workload-based software rejuvenation in cloud systems</a>", </span>
<i>IEEE Transactions on Computers - IEEE Computer Society</i>, vol. 62, no. 6, pp. 1072-1085, 2013.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.atitle=Workload-based+software+rejuvenation+in+cloud+systems&rft.title=IEEE+Transactions+on+Computers+-+IEEE+Computer+Society&rft.issn=00189340&rft.date=2013&rft.volume=62&rft.spage=1072&rft.epage=1085&rft.aulast=Bruneo&rft.aufirst=Dario&rft.au=Distefano%2C+Salvatore&rft.au=Longo%2C+Francesco&rft.au=Puliafito%2C+Antonio&rft.au=Scarpa%2C+Marco&rft_id=info%3Adoi%2F10.1109%2FTC.2013.30"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/389" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/389" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div></div><div class="biblio-category-section"><div class="biblio-separator-bar">2012</div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=90.html" rel="nofollow" class="active">Distefano, S.</a>, <a href="biblio%3Ff[author]=91.html" rel="nofollow" class="active">G. Merlino</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/138.html">Enabling the Cloud of Things</a>", </span>
<i>Innovative Mobile and Internet Services in Ubiquitous Computing (IMIS), 2012 Sixth International Conference on</i>, Piscataway, NJ, IEEE, pp. 858–863, 06/07/2012.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Enabling+the+Cloud+of+Things&rft.date=2012&rft.spage=858%E2%80%93863&rft.aulast=Distefano&rft.aufirst=Salvatore&rft.au=Merlino%2C+Giovanni&rft.au=Puliafito%2C+Antonio&rft.au=Puliafito%2C+Antonio&rft.pub=IEEE&rft.place=Piscataway%2C+NJ&rft_id=info%3Adoi%2F10.1109%2FIMIS.2012.61"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/138" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/138" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=93.html" rel="nofollow" class="active">Bruneo, D.</a>, <a href="biblio%3Ff[author]=90.html" rel="nofollow" class="active">S. Distefano</a>, <a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">F. Longo</a>, <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, and <a href="biblio%3Ff[author]=119.html" rel="nofollow" class="active">M. Scarpa</a>, </span>
<span class="biblio-title">"<a href="node/342.html">Evaluating wireless sensor node longevity through Markovian techniques</a>", </span>
<i>Computer Networks - Elsevier </i>, vol. 56, no. 2, pp. 521-532, 2012.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.atitle=Evaluating+wireless+sensor+node+longevity+through+Markovian+techniques&rft.title=Computer+Networks+-+Elsevier+&rft.issn=13891286&rft.date=2012&rft.volume=56&rft.spage=521&rft.epage=532&rft.aulast=Bruneo&rft.aufirst=Dario&rft.au=Distefano%2C+Salvatore&rft.au=Longo%2C+Francesco&rft.au=Puliafito%2C+Antonio&rft.au=Scarpa%2C+Marco&rft_id=info%3Adoi%2F10.1016%2Fj.comnet.2011.10.003"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/342" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/342" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=12.html" rel="nofollow" class="biblio-local-author active">Celesti, A.</a>, <a href="biblio%3Ff[author]=36.html" rel="nofollow" class="active">F. Tusa</a>, <a href="biblio%3Ff[author]=13.html" rel="nofollow" class="active">M. Villari</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/64.html">Federation Between Clever Clouds Through Sasl/shibboleth Authentication</a>", </span>
<i>INTERNET 2012, The Third International Conference on Evolving Internet</i>: IARIA, pp. 77–84, 2012.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Federation+Between+Clever+Clouds+Through+Sasl%2Fshibboleth+Authentication&rft.date=2012&rft.spage=77%E2%80%9384&rft.aulast=Celesti&rft.aufirst=Antonio&rft.au=Tusa%2C+Francesco&rft.au=Villari%2C+Massimo&rft.au=Puliafito%2C+Antonio&rft.pub=IARIA"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/64" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/64" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=12.html" rel="nofollow" class="biblio-local-author active">Celesti, A.</a>, <a href="biblio%3Ff[author]=36.html" rel="nofollow" class="active">F. Tusa</a>, <a href="biblio%3Ff[author]=13.html" rel="nofollow" class="active">M. Villari</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/74.html">Federation Establishment Between Clever Clouds Through A Saml Sso Authentication Profile</a>", </span>
<i>INTERNATIONAL JOURNAL ON ADVANCES IN INTERNET TECHNOLOGY</i>, vol. 5, issue 1-2, pp. 23–36, 2012.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.atitle=Federation+Establishment+Between+Clever+Clouds+Through+A+Saml+Sso+Authentication+Profile&rft.title=INTERNATIONAL+JOURNAL+ON+ADVANCES+IN+INTERNET+TECHNOLOGY&rft.date=2012&rft.volume=5&rft.issue=1-2&rft.spage=23%E2%80%9336&rft.aulast=Celesti&rft.aufirst=Antonio&rft.au=Tusa%2C+Francesco&rft.au=Villari%2C+Massimo&rft.au=Puliafito%2C+Antonio"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/74" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/74" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=13.html" rel="nofollow" class="active">Villari, M.</a>, <a href="biblio%3Ff[author]=36.html" rel="nofollow" class="active">F. Tusa</a>, <a href="biblio%3Ff[author]=12.html" rel="nofollow" class="biblio-local-author active">A. Celesti</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/59.html">How To Federate Vision Clouds Through Saml/shibboleth Authentication</a>", </span>
<i>LECTURE NOTES IN COMPUTER SCIENCE</i>, vol. 7592/2012, pp. 259–274, 21 September 2012.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=How+To+Federate+Vision+Clouds+Through+Saml%2Fshibboleth+Authentication&rft.date=2012&rft.volume=7592%2F2012&rft.spage=259%E2%80%93274&rft.aulast=Villari&rft.aufirst=Massimo&rft.au=Tusa%2C+Francesco&rft.au=Celesti%2C+Antonio&rft.au=Puliafito%2C+Antonio&rft_id=info%3Adoi%2F10.1007%2F978-3-642-33427-6_22"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/59" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/59" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=36.html" rel="nofollow" class="active">Tusa, F.</a>, <a href="biblio%3Ff[author]=12.html" rel="nofollow" class="biblio-local-author active">A. Celesti</a>, <a href="biblio%3Ff[author]=59.html" rel="nofollow" class="active">M. Paone</a>, <a href="biblio%3Ff[author]=13.html" rel="nofollow" class="active">M. Villari</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/72.html">An Innovative Open Source Middleware For Managing Virtual Resources In Federated Clouds</a>", </span>
<i>Open Source Cloud Computing Systems: Practices and Paradigms</i>, Hershey, Pennsylvania, IGI Global, pp. 61–89, 2012.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=An+Innovative+Open+Source+Middleware+For+Managing+Virtual+Resources+In+Federated+Clouds&rft.date=2012&rft.spage=61%E2%80%9389&rft.aulast=Tusa&rft.aufirst=Francesco&rft.au=Celesti%2C+Antonio&rft.au=Paone%2C+Maurizio&rft.au=Villari%2C+Massimo&rft.au=Puliafito%2C+Antonio&rft.pub=IGI+Global&rft.place=Hershey%2C+Pennsylvania&rft_id=info%3Adoi%2F10.4018%2F978-1-4666-0098-0.ch004"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/72" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/72" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=12.html" rel="nofollow" class="biblio-local-author active">Celesti, A.</a>, <a href="biblio%3Ff[author]=36.html" rel="nofollow" class="active">F. Tusa</a>, <a href="biblio%3Ff[author]=13.html" rel="nofollow" class="active">M. Villari</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/63.html">Integration Of Clever Clouds With Third Party Software Systems Through A Rest Web Service Interface</a>", </span>
<i>The 17th IEEE Symposium on Computers and Communication (ISCC12)</i>, Los Alamitos, IEEE Computer Society, pp. 827–832, 4/07/2012.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Integration+Of+Clever+Clouds+With+Third+Party+Software+Systems+Through+A+Rest+Web+Service+Interface&rft.date=2012&rft.spage=827%E2%80%93832&rft.aulast=Celesti&rft.aufirst=Antonio&rft.au=Tusa%2C+Francesco&rft.au=Villari%2C+Massimo&rft.au=Puliafito%2C+Antonio&rft.pub=IEEE+Computer+Society&rft.place=Los+Alamitos&rft_id=info%3Adoi%2F10.1109%2FISCC.2012.6249403"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/63" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/63" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=93.html" rel="nofollow" class="active">Bruneo, D.</a>, <a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">F. Longo</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/341.html">Modeling energy-aware cloud federations with SRNs</a>", </span>
<i>32nd International Conference on Application and Theory of Petri Nets and Concurrency (Petri Nets)</i>, vol. 7400 Lecture Notes in Computer Science, Newcastle upon Tyne, United Kingdom, 20-24 June 2011, Springer-Verlag, pp. 277-307, 2012.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Modeling+energy-aware+cloud+federations+with+SRNs&rft.issn=03029743&rft.isbn=9783642351785&rft.date=2012&rft.volume=7400+Lecture+Notes+in+Computer+Science&rft.spage=277&rft.epage=307&rft.aulast=Bruneo&rft.aufirst=Dario&rft.au=Longo%2C+Francesco&rft.au=Puliafito%2C+Antonio&rft.au=Puliafito%2C+Antonio&rft.pub=Springer-Verlag&rft.place=Newcastle+upon+Tyne%2C+United+Kingdom%2C+20-24+June+2011&rft_id=info%3Adoi%2F10.1007%2F978-3-642-35179-2_12"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/341" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/341" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=90.html" rel="nofollow" class="active">Distefano, S.</a>, <a href="biblio%3Ff[author]=91.html" rel="nofollow" class="active">G. Merlino</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/134.html">Saaas: A Framework For Volunteer-based Sensing Clouds</a>", </span>
<i>PARALLEL & CLOUD COMPUTING</i>, vol. 1, pp. 21–33, 2012.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.atitle=Saaas%3A+A+Framework+For+Volunteer-based+Sensing+Clouds&rft.title=PARALLEL+%26amp%3B+CLOUD+COMPUTING&rft.date=2012&rft.volume=1&rft.spage=21%E2%80%9333&rft.aulast=Distefano&rft.aufirst=Salvatore&rft.au=Merlino%2C+Giovanni&rft.au=Puliafito%2C+Antonio&rft.au=Puliafito%2C+Antonio"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/134" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/134" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=90.html" rel="nofollow" class="active">Distefano, S.</a>, <a href="biblio%3Ff[author]=91.html" rel="nofollow" class="active">G. Merlino</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/137.html">Sensing and Actuation as a Service: A New Development for Clouds</a>", </span>
<i>Network Computing and Applications (NCA), 2012 11th IEEE International Symposium on</i>, Piscataway, NJ, IEEE, pp. 272–275, 25/08/2012.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Sensing+and+Actuation+as+a+Service%3A+A+New+Development+for+Clouds&rft.date=2012&rft.spage=272%E2%80%93275&rft.aulast=Distefano&rft.aufirst=Salvatore&rft.au=Merlino%2C+Giovanni&rft.au=Puliafito%2C+Antonio&rft.au=Puliafito%2C+Antonio&rft.pub=IEEE&rft.place=Piscataway%2C+NJ&rft_id=info%3Adoi%2F10.1109%2FNCA.2012.38"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/137" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/137" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=93.html" rel="nofollow" class="active">Bruneo, D.</a>, <a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">F. Longo</a>, <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, <a href="biblio%3Ff[author]=119.html" rel="nofollow" class="active">M. Scarpa</a>, and <a href="biblio%3Ff[author]=90.html" rel="nofollow" class="active">S. Distefano</a>, </span>
<span class="biblio-title">"<a href="node/338.html">Software rejuvenation in the cloud</a>", </span>
<i>Proceedings of the 5th International Conference on Simulation Tools and Techniques (SIMUTools)</i>, Desenzano del Garda, Italy, 19-23 March 2012, ICST, pp. 8-16, 2012.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Software+rejuvenation+in+the+cloud&rft.isbn=9781450315104&rft.date=2012&rft.spage=8&rft.epage=16&rft.aulast=Bruneo&rft.aufirst=Dario&rft.au=Longo%2C+Francesco&rft.au=Puliafito%2C+Antonio&rft.au=Scarpa%2C+Marco&rft.au=Distefano%2C+Salvatore&rft.pub=ICST&rft.place=Desenzano+del+Garda%2C+Italy%2C+19-23+March+2012&rft_id=info%3Adoi%2F10.4108%2Ficst.simutools.2012.247772"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/338" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/338" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=12.html" rel="nofollow" class="biblio-local-author active">Celesti, A.</a>, <a href="biblio%3Ff[author]=36.html" rel="nofollow" class="active">F. Tusa</a>, <a href="biblio%3Ff[author]=13.html" rel="nofollow" class="active">M. Villari</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/62.html">An Xdi-based Approach To Represent And Exchange Data Between Federated Clouds</a>", </span>
<i>International Journal On Advances in Internet Technology</i>, vol. 5, issue 1-2, pp. 1–10, 2012.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.atitle=An+Xdi-based+Approach+To+Represent+And+Exchange+Data+Between+Federated+Clouds&rft.title=International+Journal+On+Advances+in+Internet+Technology&rft.issn=1942-2652&rft.date=2012&rft.volume=5&rft.issue=1-2&rft.spage=1%E2%80%9310&rft.aulast=Celesti&rft.aufirst=Antonio&rft.au=Tusa%2C+Francesco&rft.au=Villari%2C+Massimo&rft.au=Puliafito%2C+Antonio"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/62" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/62" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div></div><div class="biblio-category-section"><div class="biblio-separator-bar">2011</div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=12.html" rel="nofollow" class="biblio-local-author active">Celesti, A.</a>, <a href="biblio%3Ff[author]=13.html" rel="nofollow" class="active">M. Villari</a>, <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, and <a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">F. Longo</a>, </span>
<span class="biblio-title">"<a href="node/80.html">An Approach For Security, Performance, And Generic Data Retrieval In Reservoir Clouds</a>", </span>
<i>Journal of Information Assurance and Security - Dynamic Publishers Inc.Dynamic Publishers Inc.</i>, vol. 6, pp. 262–272, 2011.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.atitle=An+Approach+For+Security%2C+Performance%2C+And+Generic+Data+Retrieval+In+Reservoir+Clouds&rft.title=Journal+of+Information+Assurance+and+Security+-+Dynamic+Publishers+Inc.Dynamic+Publishers+Inc.&rft.issn=1554-1010&rft.date=2011&rft.volume=6&rft.spage=262%E2%80%93272&rft.aulast=Celesti&rft.aufirst=Antonio&rft.au=Villari%2C+Massimo&rft.au=Puliafito%2C+Antonio&rft.au=Longo%2C+Francesco"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/80" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/80" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=12.html" rel="nofollow" class="biblio-local-author active">Celesti, A.</a>, <a href="biblio%3Ff[author]=36.html" rel="nofollow" class="active">F. Tusa</a>, <a href="biblio%3Ff[author]=13.html" rel="nofollow" class="active">M. Villari</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/75.html">An Approach To Enable Cloud Service Providers To Arrange Iaas, Paas, And Saas Using External Virtualization Infrastructures</a>", </span>
<i>Services (SERVICES), 2011 IEEE World Congress on</i>, Los Alamitos, CA, IEEE Computer Society, pp. 607–611, 9, 2011.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=An+Approach+To+Enable+Cloud+Service+Providers+To+Arrange+Iaas%2C+Paas%2C+And+Saas+Using+External+Virtualization+Infrastructures&rft.date=2011&rft.spage=607%E2%80%93611&rft.aulast=Celesti&rft.aufirst=Antonio&rft.au=Tusa%2C+Francesco&rft.au=Villari%2C+Massimo&rft.au=Puliafito%2C+Antonio&rft.pub=IEEE+Computer+Society&rft.place=Los+Alamitos%2C+CA&rft_id=info%3Adoi%2F10.1109%2FSERVICES.2011.92"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/75" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/75" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=12.html" rel="nofollow" class="biblio-local-author active">Celesti, A.</a>, <a href="biblio%3Ff[author]=36.html" rel="nofollow" class="active">F. Tusa</a>, <a href="biblio%3Ff[author]=13.html" rel="nofollow" class="active">M. Villari</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/71.html">Evaluating A Distributed Identity Provider Trusted Network With Delegated Authentications For Cloud Federation</a>", </span>
<i>The Second International Conference on Cloud Computing, GRIDs, and Virtualization (Cloud Computing 2011), 30 Settembre 2011, Rome, Italy</i>: IARIA, pp. 79–85, 2011.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Evaluating+A+Distributed+Identity+Provider+Trusted+Network+With+Delegated+Authentications+For+Cloud+Federation&rft.date=2011&rft.spage=79%E2%80%9385&rft.aulast=Celesti&rft.aufirst=Antonio&rft.au=Tusa%2C+Francesco&rft.au=Villari%2C+Massimo&rft.au=Puliafito%2C+Antonio&rft.pub=IARIA"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/71" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/71" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=12.html" rel="nofollow" class="biblio-local-author active">Celesti, A.</a>, <a href="biblio%3Ff[author]=36.html" rel="nofollow" class="active">F. Tusa</a>, <a href="biblio%3Ff[author]=13.html" rel="nofollow" class="active">M. Villari</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/79.html">Evaluating An Open Source Extensible Resource Identifier Naming System For Cloud Computing Environments</a>", </span>
<i>Third International Conference on Evolving Internet (INTERNET 2011)</i>: IARIA, pp. 26–31, 2011.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Evaluating+An+Open+Source+Extensible+Resource+Identifier+Naming+System+For+Cloud+Computing+Environments&rft.date=2011&rft.spage=26%E2%80%9331&rft.aulast=Celesti&rft.aufirst=Antonio&rft.au=Tusa%2C+Francesco&rft.au=Villari%2C+Massimo&rft.au=Puliafito%2C+Antonio&rft.pub=IARIA"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/79" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/79" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=93.html" rel="nofollow" class="active">Bruneo, D.</a>, <a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">F. Longo</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/334.html">Evaluating energy consumption in a cloud infrastructure</a>", </span>
<i>2011 IEEE International Symposium on a World of Wireless, Mobile and Multimedia Networks (WoWMoM)</i>, Lucca, Italy, 20-23 June 2011, IEEE Computer Society, 2011.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Evaluating+energy+consumption+in+a+cloud+infrastructure&rft.isbn=9781457703515&rft.date=2011&rft.aulast=Bruneo&rft.aufirst=Dario&rft.au=Longo%2C+Francesco&rft.au=Puliafito%2C+Antonio&rft.au=Puliafito%2C+Antonio&rft.pub=IEEE+Computer+Society&rft.place=Lucca%2C+Italy%2C+20-23+June+2011&rft_id=info%3Adoi%2F10.1109%2FWoWMoM.2011.5986479"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/334" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/334" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=36.html" rel="nofollow" class="active">Tusa, F.</a>, <a href="biblio%3Ff[author]=12.html" rel="nofollow" class="biblio-local-author active">A. Celesti</a>, <a href="biblio%3Ff[author]=59.html" rel="nofollow" class="active">M. Paone</a>, <a href="biblio%3Ff[author]=13.html" rel="nofollow" class="active">M. Villari</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/76.html">How Clever-based Clouds Conceive Horizontal And Vertical Federations</a>", </span>
<i>Computers and Communications (ISCC), 2011 IEEE Symposium on</i>, Los Alamitos, CA, IEEE Computer Society, pp. 167–172, 2011.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=How+Clever-based+Clouds+Conceive+Horizontal+And+Vertical+Federations&rft.date=2011&rft.spage=167%E2%80%93172&rft.aulast=Tusa&rft.aufirst=Francesco&rft.au=Celesti%2C+Antonio&rft.au=Paone%2C+Maurizio&rft.au=Villari%2C+Massimo&rft.au=Puliafito%2C+Antonio&rft.pub=IEEE+Computer+Society&rft.place=Los+Alamitos%2C+CA"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/76" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/76" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=12.html" rel="nofollow" class="biblio-local-author active">Celesti, A.</a>, <a href="biblio%3Ff[author]=36.html" rel="nofollow" class="active">F. Tusa</a>, <a href="biblio%3Ff[author]=13.html" rel="nofollow" class="active">M. Villari</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/78.html">Intercloud: The Future Of Cloud Computing. Concepts And Advantages</a>", </span>
<i>Cloud Computing: Methodology, Systems, and Applications</i>, Boca Raton, Florida, CRC Press, Taylor and Francis Group, pp. 167–194, 2011.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.atitle=Intercloud%3A+The+Future+Of+Cloud+Computing.+Concepts+And+Advantages&rft.title=Cloud+Computing%3A+Methodology%2C+Systems%2C+and+Applications&rft.btitle=Cloud+Computing%3A+Methodology%2C+Systems%2C+and+Applications&rft.issn=978-1-4398-5641-3&rft.date=2011&rft.spage=167%E2%80%93194&rft.aulast=Celesti&rft.aufirst=Antonio&rft.au=Tusa%2C+Francesco&rft.au=Villari%2C+Massimo&rft.au=Puliafito%2C+Antonio&rft.pub=CRC+Press%2C+Taylor+and+Francis+Group&rft.place=Boca+Raton%2C+Florida&rft_id=info%3Adoi%2F10.1201%2Fb11149-11"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/78" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/78" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=93.html" rel="nofollow" class="active">Bruneo, D.</a>, <a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">F. Longo</a>, <a href="biblio%3Ff[author]=119.html" rel="nofollow" class="active">M. Scarpa</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/335.html">Performance analysis of job dissemination techniques in Grid systems</a>", </span>
<i>Concurrency Computation Practice and Experience - John Wiley & Sons, Inc.</i>, vol. 23, no. 11, pp. 1213-1235, 2011.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.atitle=Performance+analysis+of+job+dissemination+techniques+in+Grid+systems&rft.title=Concurrency+Computation+Practice+and+Experience+-+John+Wiley+%26amp%3B+Sons%2C+Inc.&rft.issn=15320626&rft.date=2011&rft.volume=23&rft.spage=1213&rft.epage=1235&rft.aulast=Bruneo&rft.aufirst=Dario&rft.au=Longo%2C+Francesco&rft.au=Scarpa%2C+Marco&rft.au=Puliafito%2C+Antonio&rft_id=info%3Adoi%2F10.1002%2Fcpe.1697"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/335" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/335" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=41.html" rel="nofollow" class="active">Salici, A.</a>, <a href="biblio%3Ff[author]=12.html" rel="nofollow" class="biblio-local-author active">A. Celesti</a>, <a href="biblio%3Ff[author]=13.html" rel="nofollow" class="active">M. Villari</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/65.html">Reactive: A Generic Modular Reference Architecture For Cloud Computing Environments</a>", </span>
<i>IEEE CloudCom 2011</i>: IEEE Computer Society, pp. 1–4, 1 December, 2011.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Reactive%3A+A+Generic+Modular+Reference+Architecture+For+Cloud+Computing+Environments&rft.date=2011&rft.spage=1%E2%80%934&rft.aulast=Salici&rft.aufirst=Angelo&rft.au=Celesti%2C+Antonio&rft.au=Villari%2C+Massimo&rft.au=Puliafito%2C+Antonio&rft.pub=IEEE+Computer+Society"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/65" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/65" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=12.html" rel="nofollow" class="biblio-local-author active">Celesti, A.</a>, <a href="biblio%3Ff[author]=41.html" rel="nofollow" class="active">A. Salici</a>, <a href="biblio%3Ff[author]=13.html" rel="nofollow" class="active">M. Villari</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/68.html">A Remote Attestation Approach for a Secure Virtual Machine Migration in Federated Cloud Environments</a>", </span>
<i>Network Cloud Computing and Applications (NCCA), 2011 First International Symposium on</i>, Los Alamitos, CA, IEEE Computer Society, pp. 99–106, 23th, 2011.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=A+Remote+Attestation+Approach+for+a+Secure+Virtual+Machine+Migration+in+Federated+Cloud+Environments&rft.date=2011&rft.spage=99%E2%80%93106&rft.aulast=Celesti&rft.aufirst=Antonio&rft.au=Salici%2C+Angelo&rft.au=Villari%2C+Massimo&rft.au=Puliafito%2C+Antonio&rft.pub=IEEE+Computer+Society&rft.place=Los+Alamitos%2C+CA&rft_id=info%3Adoi%2F10.1109%2FNCCA.2011.23"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/68" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/68" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=12.html" rel="nofollow" class="biblio-local-author active">Celesti, A.</a>, <a href="biblio%3Ff[author]=13.html" rel="nofollow" class="active">M. Villari</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/69.html">An Xri Naming System For Dynamic And Federated Clouds: A Performance Analysis</a>", </span>
<i>Journal of Internet Services and Applications (JISA)</i>, vol. 2, issue 3, pp. 191–205, 12/2011.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.atitle=An+Xri+Naming+System+For+Dynamic+And+Federated+Clouds%3A+A+Performance+Analysis&rft.title=Journal+of+Internet+Services+and+Applications+%28JISA%29&rft.issn=Print+1867-4828%2C+Online+1869-0238&rft.date=2011&rft.volume=2&rft.issue=3&rft.spage=191%E2%80%93205&rft.aulast=Celesti&rft.aufirst=Antonio&rft.au=Villari%2C+Massimo&rft.au=Puliafito%2C+Antonio&rft.au=Puliafito%2C+Antonio&rft_id=info%3Adoi%2F10.1007%2Fs13174-011-0038-7"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/69" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/69" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div></div><div class="biblio-category-section"><div class="biblio-separator-bar">2010</div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=12.html" rel="nofollow" class="biblio-local-author active">Celesti, A.</a>, <a href="biblio%3Ff[author]=13.html" rel="nofollow" class="active">M. Villari</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/87.html">Design Of A Cloud Naming Framework</a>", </span>
<i>CF '10 Proceedings of the 7th ACM international conference on Computing frontiers</i>, New York, NY, ACM, pp. 105–106, 19, 2010.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Design+Of+A+Cloud+Naming+Framework&rft.date=2010&rft.spage=105%E2%80%93106&rft.aulast=Celesti&rft.aufirst=Antonio&rft.au=Villari%2C+Massimo&rft.au=Puliafito%2C+Antonio&rft.pub=ACM&rft.place=New+York%2C+NY&rft_id=info%3Adoi%2F10.1145%2F1787275.1787305"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/87" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/87" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=12.html" rel="nofollow" class="biblio-local-author active">Celesti, A.</a>, <a href="biblio%3Ff[author]=13.html" rel="nofollow" class="active">M. Villari</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/82.html">Ecosystem Of Cloud Naming Systems: An Approach For The Management And Integration Of Independent Cloud Name Spaces</a>", </span>
<i>Network Computing and Applications (NCA), 2010 9th IEEE International Symposium on</i>, Los Alamitos, CA, IEEE Computer Society, pp. 68–75, 17 July, 2010.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Ecosystem+Of+Cloud+Naming+Systems%3A+An+Approach+For+The+Management+And+Integration+Of+Independent+Cloud+Name+Spaces&rft.date=2010&rft.spage=68%E2%80%9375&rft.aulast=Celesti&rft.aufirst=Antonio&rft.au=Villari%2C+Massimo&rft.au=Puliafito%2C+Antonio&rft.pub=IEEE+Computer+Society&rft.place=Los+Alamitos%2C+CA&rft_id=info%3Adoi%2F10.1109%2FNCA.2010.16"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/82" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/82" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=12.html" rel="nofollow" class="biblio-local-author active">Celesti, A.</a>, <a href="biblio%3Ff[author]=36.html" rel="nofollow" class="active">F. Tusa</a>, <a href="biblio%3Ff[author]=13.html" rel="nofollow" class="active">M. Villari</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/84.html">How To Enhance Cloud Architectures To Enable Cross-Federation</a>", </span>
<i>Cloud Computing (CLOUD), 2010 IEEE 3rd International Conference on</i>, Washington, DC, IEEE Computer Society, pp. 337–345, 10 July, 2010.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=How+To+Enhance+Cloud+Architectures+To+Enable+Cross-Federation&rft.date=2010&rft.spage=337%E2%80%93345&rft.aulast=Celesti&rft.aufirst=Antonio&rft.au=Tusa%2C+Francesco&rft.au=Villari%2C+Massimo&rft.au=Puliafito%2C+Antonio&rft.pub=IEEE+Computer+Society&rft.place=Washington%2C+DC&rft_id=info%3Adoi%2F10.1109%2FCLOUD.2010.46"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/84" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/84" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=12.html" rel="nofollow" class="biblio-local-author active">Celesti, A.</a>, <a href="biblio%3Ff[author]=36.html" rel="nofollow" class="active">F. Tusa</a>, <a href="biblio%3Ff[author]=13.html" rel="nofollow" class="active">M. Villari</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/83.html">Improving Virtual Machine Migration In Federated Cloud Environments</a>", </span>
<i>Evolving Internet (INTERNET), 2010 Second International Conference on</i>, Washington, DC, IEEE Computer Society, pp. 61–67, 25 September, 2010.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Improving+Virtual+Machine+Migration+In+Federated+Cloud+Environments&rft.date=2010&rft.spage=61%E2%80%9367&rft.aulast=Celesti&rft.aufirst=Antonio&rft.au=Tusa%2C+Francesco&rft.au=Villari%2C+Massimo&rft.au=Puliafito%2C+Antonio&rft.pub=IEEE+Computer+Society&rft.place=Washington%2C+DC&rft_id=info%3Adoi%2F10.1109%2FINTERNET.2010.20"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/83" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/83" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=12.html" rel="nofollow" class="biblio-local-author active">Celesti, A.</a>, <a href="biblio%3Ff[author]=13.html" rel="nofollow" class="active">M. Villari</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/81.html">A Naming System Applied To A Reservoir Cloud</a>", </span>
<i>Information Assurance and Security (IAS), 2010 Sixth International Conference on</i>, Los Alamitos, CA, IEEE Computer Society, pp. 247–252, 25 August, 2010.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=A+Naming+System+Applied+To+A+Reservoir+Cloud&rft.date=2010&rft.spage=247%E2%80%93252&rft.aulast=Celesti&rft.aufirst=Antonio&rft.au=Villari%2C+Massimo&rft.au=Puliafito%2C+Antonio&rft.pub=IEEE+Computer+Society&rft.place=Los+Alamitos%2C+CA"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/81" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/81" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=93.html" rel="nofollow" class="active">Bruneo, D.</a>, <a href="biblio%3Ff[author]=90.html" rel="nofollow" class="active">S. Distefano</a>, <a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">F. Longo</a>, <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, and <a href="biblio%3Ff[author]=119.html" rel="nofollow" class="active">M. Scarpa</a>, </span>
<span class="biblio-title">"<a href="node/331.html">Reliability assessment of wireless sensor nodes with non-linear battery discharge</a>", </span>
<i>2010 IFIP Wireless Days, WD 2010</i>, Venice, Italy, 20-22 October 2010, IEEE Computer Society, 2010.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Reliability+assessment+of+wireless+sensor+nodes+with+non-linear+battery+discharge&rft.isbn=9781424492299&rft.date=2010&rft.aulast=Bruneo&rft.aufirst=Dario&rft.au=Distefano%2C+Salvatore&rft.au=Longo%2C+Francesco&rft.au=Puliafito%2C+Antonio&rft.au=Scarpa%2C+Marco&rft.pub=IEEE+Computer+Society&rft.place=Venice%2C+Italy%2C+20-22+October+2010&rft_id=info%3Adoi%2F10.1109%2FWD.2010.5657711"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/331" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/331" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=12.html" rel="nofollow" class="biblio-local-author active">Celesti, A.</a>, <a href="biblio%3Ff[author]=36.html" rel="nofollow" class="active">F. Tusa</a>, <a href="biblio%3Ff[author]=13.html" rel="nofollow" class="active">M. Villari</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/86.html">Security and Cloud Computing: InterCloud Identity Management Infrastructure</a>", </span>
<i>Enabling Technologies: Infrastructures for Collaborative Enterprises (WETICE), 2010 19th IEEE International Workshop on</i>, Washington, DC, IEEE Computer Society, pp. 263–265, 30/06/2010.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Security+and+Cloud+Computing%3A+InterCloud+Identity+Management+Infrastructure&rft.date=2010&rft.spage=263%E2%80%93265&rft.aulast=Celesti&rft.aufirst=Antonio&rft.au=Tusa%2C+Francesco&rft.au=Villari%2C+Massimo&rft.au=Puliafito%2C+Antonio&rft.pub=IEEE+Computer+Society&rft.place=Washington%2C+DC&rft_id=info%3Adoi%2F10.1109%2FWETICE.2010.49"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/86" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/86" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=113.html" rel="nofollow" class="biblio-local-author active">Giacobbe, M.</a>, <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, and <a href="biblio%3Ff[author]=13.html" rel="nofollow" class="active">M. Villari</a>, </span>
<span class="biblio-title">"<a href="node/145.html">A service oriented system for fleet management and traffic monitoring</a>", </span>
<i>Computers and Communications (ISCC), 2010 IEEE Symposium on</i>, Piscataway, NJ, IEEE / Institute of Electrical and Electronics Engineers Incorporated:445 Hoes Lane:Piscataway, NJ 08854:(800)701-4333, (732)981-0060, EMAIL: subscription-service@ieee.org, INTERNET: http://www.ieee.org, Fax: (732)981-9667, pp. 1–3, 2010.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=A+service+oriented+system+for+fleet+management+and+traffic+monitoring&rft.date=2010&rft.spage=1%E2%80%933&rft.aulast=Giacobbe&rft.aufirst=Maurizio&rft.au=Puliafito%2C+Antonio&rft.au=Villari%2C+Massimo&rft.pub=IEEE+%2F+Institute+of+Electrical+and+Electronics+Engineers+Incorporated%3A445+Hoes+Lane%3APiscataway%2C+NJ+08854%3A%28800%29701-4333%2C+%28732%29981-0060%2C+EMAIL%3A+subscription-service%40ieee.org%2C+INTERNET%3A+http%3A%2F%2Fwww.ieee.org%2C+Fax%3A+%28732%29981-9667&rft.place=Piscataway%2C+NJ&rft_id=info%3Adoi%2F10.1109%2FISCC.2010.5546553"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/145" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/145" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=12.html" rel="nofollow" class="biblio-local-author active">Celesti, A.</a>, <a href="biblio%3Ff[author]=36.html" rel="nofollow" class="active">F. Tusa</a>, <a href="biblio%3Ff[author]=13.html" rel="nofollow" class="active">M. Villari</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/85.html">Three-phase Cross-cloud Federation Model: The Cloud Sso Authentication</a>", </span>
<i>AFIN '10 Proceedings of the 2010 Second International Conference on Advances in Future Internet</i>, Washington, DC, IEEE Computer Society, pp. 94–101, 25 July, 2010.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Three-phase+Cross-cloud+Federation+Model%3A+The+Cloud+Sso+Authentication&rft.date=2010&rft.spage=94%E2%80%93101&rft.aulast=Celesti&rft.aufirst=Antonio&rft.au=Tusa%2C+Francesco&rft.au=Villari%2C+Massimo&rft.au=Puliafito%2C+Antonio&rft.pub=IEEE+Computer+Society&rft.place=Washington%2C+DC&rft_id=info%3Adoi%2F10.1109%2FAFIN.2010.23"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/85" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/85" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=12.html" rel="nofollow" class="biblio-local-author active">Celesti, A.</a>, <a href="biblio%3Ff[author]=11.html" rel="nofollow" class="active">M. Fazio</a>, <a href="biblio%3Ff[author]=13.html" rel="nofollow" class="active">M. Villari</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/73.html">Virtual Machine Provisioning Through Satellite Communications In Federated Cloud Environments (Handout)</a>", </span>
<i>the 3rd International Conference on Utility and Cloud Computing (UCC 2010)</i>, Chennai, India, pp. 1–1, 2010.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Virtual+Machine+Provisioning+Through+Satellite+Communications+In+Federated+Cloud+Environments+%28Handout%29&rft.date=2010&rft.spage=1%E2%80%931&rft.aulast=Celesti&rft.aufirst=Antonio&rft.au=Fazio%2C+Maria&rft.au=Villari%2C+Massimo&rft.au=Puliafito%2C+Antonio&rft.place=Chennai%2C+India"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/73" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/73" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=93.html" rel="nofollow" class="active">Bruneo, D.</a>, <a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">F. Longo</a>, <a href="biblio%3Ff[author]=119.html" rel="nofollow" class="active">M. Scarpa</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/328.html">VO-level performance analysis of gLite Grids</a>", </span>
<i>Proceedings of the 19th IEEE Workshop on Enabling Technologies: Infrastructure for Collaborative Enterprises (WETICE)</i>, Larissa, Greece, 28-30 June 2010, IEEE Computer Society, pp. 243-248, 2010.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=VO-level+performance+analysis+of+gLite+Grids&rft.issn=15244547&rft.isbn=9780769540634&rft.date=2010&rft.spage=243&rft.epage=248&rft.aulast=Bruneo&rft.aufirst=Dario&rft.au=Longo%2C+Francesco&rft.au=Scarpa%2C+Marco&rft.au=Puliafito%2C+Antonio&rft.pub=IEEE+Computer+Society&rft.place=Larissa%2C+Greece%2C+28-30+June+2010&rft_id=info%3Adoi%2F10.1109%2FWETICE.2010.45"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/328" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/328" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div></div><div class="biblio-category-section"><div class="biblio-separator-bar">2009</div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=52.html" rel="nofollow" class="active">Ragusa, C.</a>, <a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">F. Longo</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/325.html">Experiencing with the cloud over glite</a>", </span>
<i>Proceedings of the 2009 ICSE Workshop on Software Engineering Challenges of Cloud Computing (CLOUD)</i>, Vancouver, BC, Canada, 23 May 2009, IEEE Computer Society, pp. 53-60, 2009.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=Experiencing+with+the+cloud+over+glite&rft.isbn=9781424437139&rft.date=2009&rft.spage=53&rft.epage=60&rft.aulast=Ragusa&rft.aufirst=Carmelo&rft.au=Longo%2C+Francesco&rft.au=Puliafito%2C+Antonio&rft.au=Puliafito%2C+Antonio&rft.pub=IEEE+Computer+Society&rft.place=Vancouver%2C+BC%2C+Canada%2C+23+May+2009&rft_id=info%3Adoi%2F10.1109%2FCLOUD.2009.5071533"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/325" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/325" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=113.html" rel="nofollow" class="biblio-local-author active">Giacobbe, M.</a>, <a href="biblio%3Ff[author]=117.html" rel="nofollow" class="active">E. Guglielmino</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/147.html">A Platform for Integrated Data Processing from Heterogeneous Devices in Naval Field</a>", </span>
<i>ISCC: 2009 IEEE SYMPOSIUM ON COMPUTERS AND COMMUNICATIONS, VOLS 1 AND 2</i>, vol. Proceedings of IEEE Symposium on Computers and Communications (ISCC'09), NEW YORK, IEEE, 345 E 47TH ST, NEW YORK, NY 10017 USA, pp. 520–525, 8, 2009.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=A+Platform+for+Integrated+Data+Processing+from+Heterogeneous+Devices+in+Naval+Field&rft.date=2009&rft.volume=Proceedings+of+IEEE+Symposium+on+Computers+and+Communications+%28ISCC%26%23039%3B09%29&rft.spage=520%E2%80%93525&rft.aulast=Giacobbe&rft.aufirst=Maurizio&rft.au=Guglielmino%2C+Eugenio&rft.au=Puliafito%2C+Antonio&rft.pub=IEEE%2C+345+E+47TH+ST%2C+NEW+YORK%2C+NY+10017+USA&rft.place=NEW+YORK&rft_id=info%3Adoi%2F10.1109%2FISCC.2009.5202255"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/147" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/147" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div></div><div class="biblio-category-section"><div class="biblio-separator-bar">2008</div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=52.html" rel="nofollow" class="active">Ragusa, C.</a>, <a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">F. Longo</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/323.html">On the assessment of the s-sicilia infrastructure: A grid-based business system</a>", </span>
<i>Proceedings of the 5th International Workshop on Grid Economics and Business Models (GECON)</i>, vol. 5206 Lecture Notes in Computer Science, Las Palmas de Gran Canaria, Spain, 26 August 2008, Springer-Verlag Berlin Heidelberg, pp. 113-124, 2008.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=On+the+assessment+of+the+s-sicilia+infrastructure%3A+A+grid-based+business+system&rft.date=2008&rft.volume=5206+Lecture+Notes+in+Computer+Science&rft.spage=113&rft.epage=124&rft.aulast=Ragusa&rft.aufirst=Carmelo&rft.au=Longo%2C+Francesco&rft.au=Puliafito%2C+Antonio&rft.au=Puliafito%2C+Antonio&rft.pub=Springer-Verlag+Berlin+Heidelberg&rft.place=Las+Palmas+de+Gran+Canaria%2C+Spain%2C+26+August+2008&rft_id=info%3Adoi%2F10.1007%2F978-3-540-85485-2_9"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/323" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/323" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div><div class="biblio-entry"><span class="biblio-authors"><a href="biblio%3Ff[author]=52.html" rel="nofollow" class="active">Ragusa, C.</a>, <a href="biblio%3Ff[author]=215.html" rel="nofollow" class="active">S. Arinisi</a>, <a href="biblio%3Ff[author]=63.html" rel="nofollow" class="biblio-local-author active">F. Longo</a>, and <a href="biblio%3Ff[author]=14.html" rel="nofollow" class="active">A. Puliafito</a>, </span>
<span class="biblio-title">"<a href="node/326.html">A grid-based infrastructure for business applications</a>", </span>
<i>Proceedings of the Symposium ”GRID Open Days at the University of Palermo”</i>, Palermo, Italy, 6-7 December 2007, pp. 205-211, 2008.
<span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rft.title=A+grid-based+infrastructure+for+business+applications&rft.date=2008&rft.spage=205&rft.epage=211&rft.aulast=Ragusa&rft.aufirst=Carmelo&rft.au=Arinisi%2C+Salvatore&rft.au=Longo%2C+Francesco&rft.au=Puliafito%2C+Antonio&rft.place=+Palermo%2C+Italy%2C+6-7+December+2007"></span><ul class="biblio-export-buttons"><li class="biblio_bibtex first"><a href="biblio/export/bibtex/326" title="Click to download the BibTEX formatted file" rel="nofollow">BibTex</a></li>
<li class="biblio_rtf last"><a href="biblio/export/rtf/326" title="Click to download the RTF formatted file" rel="nofollow">RTF</a></li>
</ul></div></div> </div>
</div> <!-- /.block -->
</div>
<!-- /.region -->
</div>
</section> <!-- /#main -->
</div>
<aside id="sidebar" role="complementary">
<div class="region region-sidebar-first">
<div id="block-views-from-mdslab-block" class="block block-views">
<h2 >From MDSLab</h2>
<div class="content">
<div class="view view-from-mdslab view-id-from_mdslab view-display-id-block view-dom-id-6afd00b34c2c9d519eb1066a15c297f9">
<div class="view-content">
<div class="views-row views-row-1 views-row-odd views-row-first views-row-last">
<span class="views-field views-field-title"> <span class="field-content">#SmartME - MESSINA IN THE FUTURE</span> </span>
<span class="views-field views-field-field-autore"> <strong class="field-content"><div class="field field-name-field-autore field-type-text field-label-hidden"><div class="field-items"><div class="field-item even">Admin</div></div></div></strong> </span>
<div class="views-field views-field-field-testo"> <div class="field-content"><p>The <strong>#SmartME</strong> project was born from a wish of a team of researchers in the Mobile and Distributed Systems Lab (MDSLab) at the University of Messina who, in collaboration with the Industrial Liaison Office and the Center for Information Services of the University (CIAM), are eager to encourage, in an innovative fashion, a “conversation” with the municipality of Messina, <a href="http://www.eppela.com/eng/projects/2629/smartme-la-messina-del-futuro">... read more.</a></p>
</div> </div> </div>
</div>
</div> </div>
</div> <!-- /.block -->
<div id="block-user-login" class="block block-user">
<h2 >User login</h2>
<div class="content">
<form action="http://mdslab.unime.it/biblio?destination=biblio%3Ff%5Bauthor%5D%3D14" method="post" id="user-login-form" accept-charset="UTF-8"><div><div class="form-item form-type-textfield form-item-name">
<label for="edit-name">Username <span class="form-required" title="This field is required.">*</span></label>
<input type="text" id="edit-name" name="name" value="" size="15" maxlength="60" class="form-text required" />
</div>
<div class="form-item form-type-password form-item-pass">
<label for="edit-pass">Password <span class="form-required" title="This field is required.">*</span></label>
<input type="password" id="edit-pass" name="pass" size="15" maxlength="128" class="form-text required" />
</div>
<input type="hidden" name="form_build_id" value="form-yH1oGPXMiVZA2b4MHAsgI4XdYetg4N-6rS-PTwlZlxs" />
<input type="hidden" name="form_id" value="user_login_block" />
<div class="form-actions form-wrapper" id="edit-actions"><input type="submit" id="edit-submit" name="op" value="Log in" class="form-submit" /></div></div></form> </div>
</div> <!-- /.block -->
<div id="block-tagclouds-1" class="block block-tagclouds">
<h2 >Tag Cloud</h2>
<div class="content">
<span class='tagclouds-term'><a href="taxonomy/term/87.html" class="tagclouds level1" title="">Assistive Technology</a></span>
<span class='tagclouds-term'><a href="taxonomy/term/21.html" class="tagclouds level3" title="">Big Data</a></span>
<span class='tagclouds-term'><a href="taxonomy/term/1042.html" class="tagclouds level2" title="">Cloud computing</a></span>
<span class='tagclouds-term'><a href="taxonomy/term/26.html" class="tagclouds level6" title="">cloud computing</a></span>
<span class='tagclouds-term'><a href="taxonomy/term/519.html" class="tagclouds level3" title="">Cloud computing</a></span>
<span class='tagclouds-term'><a href="taxonomy/term/777.html" class="tagclouds level6" title="">cloud computing</a></span>
<span class='tagclouds-term'><a href="taxonomy/term/90.html" class="tagclouds level1" title="">embedded systems</a></span>
<span class='tagclouds-term'><a href="taxonomy/term/31.html" class="tagclouds level2" title="">federation</a></span>
<span class='tagclouds-term'><a href="taxonomy/term/286.html" class="tagclouds level6" title="">Internet of Things</a></span>
<span class='tagclouds-term'><a href="taxonomy/term/927.html" class="tagclouds level1" title="">IoT</a></span>
<span class='tagclouds-term'><a href="taxonomy/term/193.html" class="tagclouds level1" title="">phase type distributions</a></span>
<span class='tagclouds-term'><a href="taxonomy/term/255.html" class="tagclouds level1" title="">smart cities</a></span>
<div class="more-link"><a href="tagclouds/chunk/1.html" title="more tags">More</a></div> </div>
</div> <!-- /.block -->
</div>
<!-- /.region -->
</aside>
</div>
<footer id="footer-bottom">
<div id="footer-area" class="clearfix">
<div id="footer-block-wrap" class="clearfix in2">
<div class="footer-block">
<div class="region region-footer-first">
<div id="block-views-recent-pubblications-block" class="block block-views">
<h2 >Recent Pubblications</h2>
<div class="content">
<div class="view view-recent-pubblications view-id-recent_pubblications view-display-id-block view-dom-id-8af753f0411811bc19d04a0a23747bd1">
<div class="view-content">
<div class="views-row views-row-1 views-row-odd views-row-first">
<div class="views-field views-field-title"> <span class="field-content"><a href="node/646.html">Random sampling for effective spectrum sensing in cognitive radio time slotted environment</a></span> </div>
<div class="views-field views-field-biblio-authors"> <span class="field-content">S. Serrano; M. Scarpa; A. Maali; N. Boumazz</span> </div> </div>
<div class="views-row views-row-2 views-row-even">
<div class="views-field views-field-title"> <span class="field-content"><a href="node/645.html">Application-Programming Interface (API) for Song Recognition Systems</a></span> </div>
<div class="views-field views-field-biblio-authors"> <span class="field-content">A. Bin Sahbudin; C. Chaouch; S. Serrano; M. Scarpa</span> </div> </div>
<div class="views-row views-row-3 views-row-odd">
<div class="views-field views-field-title"> <span class="field-content"><a href="node/647.html">Statistical modeling of monthly rainfall variability in Soummam watershed of Algeria, between 1967 and 2018</a></span> </div>
<div class="views-field views-field-biblio-authors"> <span class="field-content">A. Aieb; K. Lefsih; M. Scarpa; B. Bonaccorso; N. Cicero; O. Mimeche; K. Madani</span> </div> </div>
<div class="views-row views-row-4 views-row-even">
<div class="views-field views-field-title"> <span class="field-content"><a href="node/643.html">A Stack4Things-based Web of Things Architecture</a></span> </div>
<div class="views-field views-field-biblio-authors"> <span class="field-content">Z. Benomar; F. Longo; G. Merlino; A. Puliafito</span> </div> </div>
<div class="views-row views-row-5 views-row-odd views-row-last">
<div class="views-field views-field-title"> <span class="field-content"><a href="node/642.html">Enabling Secure RESTful Web Services in IoT using OpenStack</a></span> </div>
<div class="views-field views-field-biblio-authors"> <span class="field-content">Z. Benomar; F. Longo; G. Merlino; A. Puliafito</span> </div> </div>
</div>
</div> </div>
</div> <!-- /.block -->
</div>
<!-- /.region -->
</div> <div class="footer-block">
<div class="region region-footer-second">
<div id="block-views-display-projects-block-1" class="block block-views">
<h2 >Projects</h2>
<div class="content">
<div class="view view-display-projects view-id-display_projects view-display-id-block_1 view-dom-id-ff1bef43d4fb4ad8010a3e5ba9306a32">
<div class="view-content">
<div class="item-list"> <ul> <li class="views-row views-row-1 views-row-odd views-row-first">
<div class="views-field views-field-title"> <span class="field-content"><a href="node/163.html">EU Horizon 2020 BEACON - Enabling Federated Cloud Networking. 2015-17</a></span> </div></li>
<li class="views-row views-row-2 views-row-even">
<div class="views-field views-field-title"> <span class="field-content"><a href="node/164.html">EU FP7 CloudWave: Agile Service Engineering for the Future Internet. 2013-16</a></span> </div></li>
<li class="views-row views-row-3 views-row-odd">
<div class="views-field views-field-title"> <span class="field-content"><a href="node/165.html">PON01_00683 SIGMA: Sistema Integrato di sensori in ambiente cloud per la Gestione Multirischio Avanzata - Integrated Cloud-Sensor System for Advanced Multirisk Management. 2013 - 2015</a></span> </div></li>
<li class="views-row views-row-4 views-row-even">
<div class="views-field views-field-title"> <span class="field-content"><a href="node/166.html">POR FESR SIMONE - Sistema Integrato per il MONitoraggio della produzione di Energia Elettrica. 2011-15</a></span> </div></li>
<li class="views-row views-row-5 views-row-odd">
<div class="views-field views-field-title"> <span class="field-content"><a href="node/167.html">Project PRIN Cloud&Home - 2010.</a></span> </div></li>
<li class="views-row views-row-6 views-row-even">
<div class="views-field views-field-title"> <span class="field-content"><a href="node/168.html">Project PRIN WiseDemon - WIreless SEnsor networks for DEpendable MONitoring of critical applications - 2008.</a></span> </div></li>
<li class="views-row views-row-7 views-row-odd views-row-last">
<div class="views-field views-field-title"> <span class="field-content"><a href="node/169.html">PI2S2: Progetto per la Implementazione e lo Sviluppo di una e-Infrastrutura in Sicilia basata sul paradigma della Grid - 2007.</a></span> </div></li>
</ul></div> </div>