forked from abhishek181290/adobe-blog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html?p=4180.html
1148 lines (962 loc) · 76.9 KB
/
index.html?p=4180.html
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>
<head>
<meta charset="utf-8">
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
<!--[if gt IE 8]><!-->
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0,user-scalable=no">
<!--<![endif]-->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="theme-color" content="#cc1f20">
<link href="/adobe-blog/wp-content/themes/perficient_2016/dist/css/bootstrap/bootstrap.css" rel="stylesheet" />
<link href="/adobe-blog/wp-content/themes/perficient_2016/dist/css/perficient-main.css" rel="stylesheet"/>
<link href="/adobe-blog/wp-content/themes/perficient_2016/dist/css/perficient-override.css" rel="stylesheet" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.1/css/font-awesome.min.css">
<link href='https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,700,800' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800' rel='stylesheet' type='text/css'>
<!--[if IE]>
<link rel="stylesheet" type="text/css" href="/adobe-blog/wp-content/themes/perficient_2016/dist/css/ie.css">
<![endif]-->
<!-- When customizing this component, ensure to use "Coveo.$" instead of the regular jQuery "$" to
avoid any conflicts with Sitecore's Page Editor/Experience Editor. -->
<script type="text/javascript" src="http://www.perficient.com/Coveo/js/CoveoJsSearch.WithDependencies.min.js"></script>
<script type="text/javascript" src="http://www.perficient.com/Coveo/js/CoveoForSitecorePolyfills.js"></script>
<script type="text/javascript" src="http://www.perficient.com/Coveo/js/d3.min.js"></script>
<script type="text/javascript" src="http://www.perficient.com/Coveo/js/CoveoForSitecore.js"></script>
<script src="http://www.perficient.com/dist/js/vendor/jquery.min.js"></script>
<script src="http://www.perficient.com/dist/js/vendor/iframeResizer.min.js"></script>
<link rel="stylesheet" href="/adobe-blog/wp-content/themes/perficient_2016/style.css" type="text/css" media="screen" />
<link rel="pingback" href="/adobe-blog/xmlrpc.php">
<meta name="page_type" content="blogs" />
<meta name="p:domain_verify" content="6162fdec3ceb0d0f70d78079b2c2c3cc" />
<!-- Facebook Pixel Code -->
<script>
!function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n;
n.push=n;n.loaded=!0;n.version='2.0';n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window,
document,'script','//connect.facebook.net/en_US/fbevents.js');
fbq('init', '911436665572720');
fbq('track', "PageView");</script>
<noscript><img height="1" width="1" style="display:none"
src="https://www.facebook.com/tr?id=911436665572720&ev=PageView&noscript=1"
/></noscript>
<!-- End Facebook Pixel Code -->
<title>Adobe CQ5 as a Portal | Adobe</title>
<!-- Google Tag Manager for WordPress by DuracellTomi - http://duracelltomi.com -->
<script data-cfasync="false" type="text/javascript">
var gtm4wp_datalayer_name = "dataLayer";
var dataLayer = dataLayer || []
</script>
<!-- End Google Tag Manager for WordPress by DuracellTomi -->
<!-- All in One SEO Pack 2.3.5.1 by Michael Torbert of Semper Fi Web Design[2997,3039] -->
<link rel="author" href="http://109695823205310263193" />
<meta name="description" itemprop="description" content="We've seen a lot of interest in Adobe CQ5 lately. One question that comes up a lot is about CQ5's portal capabilities. Michael Porter blogged last year about" />
<link rel="canonical" href="/adobe-blog/2012/02/01/adobe-cq5-as-a-portal/" />
<!-- /all in one seo pack -->
<link rel="alternate" type="application/rss+xml" title="Adobe » Feed" href="/adobe-blog/feed/" />
<link rel="alternate" type="application/rss+xml" title="Adobe » Comments Feed" href="/adobe-blog/comments/feed/" />
<link rel="alternate" type="application/rss+xml" title="Adobe » Adobe CQ5 as a Portal Comments Feed" href="/adobe-blog/2012/02/01/adobe-cq5-as-a-portal/feed/" />
<!-- This site is powered by Shareaholic - https://shareaholic.com -->
<script type='text/javascript' data-cfasync='false'>
//<![CDATA[
_SHR_SETTINGS = {"endpoints":{"local_recs_url":"https:\/\/blogs.perficient.com\/adobe\/wp-admin\/admin-ajax.php?action=shareaholic_permalink_related","share_counts_url":"https:\/\/blogs.perficient.com\/adobe\/wp-admin\/admin-ajax.php?action=shareaholic_share_counts_api"}};
//]]>
</script>
<script type='text/javascript' data-cfasync='false'
src='//dsms0mj1bbhn4.cloudfront.net/assets/pub/shareaholic.js'
data-shr-siteid='52db5a8a3e9eb74dde2651cc66bbac5b' async='async' >
</script>
<!-- Shareaholic Content Tags -->
<meta name='shareaholic:site_name' content='Adobe' />
<meta name='shareaholic:language' content='en-US' />
<meta name='shareaholic:url' content='/adobe-blog/2012/02/01/adobe-cq5-as-a-portal/' />
<meta name='shareaholic:keywords' content='best practices, cq5, portal, websphere portal, analytics, optimization & personalization, experience management' />
<meta name='shareaholic:article_published_time' content='2012-02-01T18:14:14+00:00' />
<meta name='shareaholic:article_modified_time' content='2016-06-22T17:47:21+00:00' />
<meta name='shareaholic:shareable_page' content='true' />
<meta name='shareaholic:article_author_name' content='Mark Polly' />
<meta name='shareaholic:site_id' content='52db5a8a3e9eb74dde2651cc66bbac5b' />
<meta name='shareaholic:wp_version' content='7.8.0.3' />
<!-- Shareaholic Content Tags End -->
<script type="text/javascript">
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/72x72\/","ext":".png","source":{"concatemoji":"https:\/\/blogs.perficient.com\/adobe\/wp-includes\/js\/wp-emoji-release.min.js?ver=4.5.3"}};
!function(a,b,c){function d(a){var c,d,e,f=b.createElement("canvas"),g=f.getContext&&f.getContext("2d"),h=String.fromCharCode;if(!g||!g.fillText)return!1;switch(g.textBaseline="top",g.font="600 32px Arial",a){case"flag":return g.fillText(h(55356,56806,55356,56826),0,0),f.toDataURL().length>3e3;case"diversity":return g.fillText(h(55356,57221),0,0),c=g.getImageData(16,16,1,1).data,d=c[0]+","+c[1]+","+c[2]+","+c[3],g.fillText(h(55356,57221,55356,57343),0,0),c=g.getImageData(16,16,1,1).data,e=c[0]+","+c[1]+","+c[2]+","+c[3],d!==e;case"simple":return g.fillText(h(55357,56835),0,0),0!==g.getImageData(16,16,1,1).data[0];case"unicode8":return g.fillText(h(55356,57135),0,0),0!==g.getImageData(16,16,1,1).data[0]}return!1}function e(a){var c=b.createElement("script");c.src=a,c.type="text/javascript",b.getElementsByTagName("head")[0].appendChild(c)}var f,g,h,i;for(i=Array("simple","flag","unicode8","diversity"),c.supports={everything:!0,everythingExceptFlag:!0},h=0;h<i.length;h++)c.supports[i[h]]=d(i[h]),c.supports.everything=c.supports.everything&&c.supports[i[h]],"flag"!==i[h]&&(c.supports.everythingExceptFlag=c.supports.everythingExceptFlag&&c.supports[i[h]]);c.supports.everythingExceptFlag=c.supports.everythingExceptFlag&&!c.supports.flag,c.DOMReady=!1,c.readyCallback=function(){c.DOMReady=!0},c.supports.everything||(g=function(){c.readyCallback()},b.addEventListener?(b.addEventListener("DOMContentLoaded",g,!1),a.addEventListener("load",g,!1)):(a.attachEvent("onload",g),b.attachEvent("onreadystatechange",function(){"complete"===b.readyState&&c.readyCallback()})),f=c.source||{},f.concatemoji?e(f.concatemoji):f.wpemoji&&f.twemoji&&(e(f.twemoji),e(f.wpemoji)))}(window,document,window._wpemojiSettings);
</script>
<style type="text/css">
img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 .07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<link rel='stylesheet' id='cptch_stylesheet-css' href='/adobe-blog/wp-content/plugins/captcha/css/style.css?ver=4.5.3' type='text/css' media='all' />
<link rel='stylesheet' id='dashicons-css' href='/adobe-blog/wp-includes/css/dashicons.min.css?ver=4.5.3' type='text/css' media='all' />
<link rel='stylesheet' id='cptch_desktop_style-css' href='/adobe-blog/wp-content/plugins/captcha/css/desktop_style.css?ver=4.5.3' type='text/css' media='all' />
<link rel='stylesheet' id='author-avatars-widget-css' href='/adobe-blog/wp-content/plugins/author-avatars/css/widget.css?ver=1.9.6' type='text/css' media='all' />
<link rel='stylesheet' id='tablepress-default-css' href='/adobe-blog/wp-content/plugins/tablepress/css/default.min.css?ver=1.7' type='text/css' media='all' />
<link rel='stylesheet' id='mc4wp-form-themes-css' href='/adobe-blog/wp-content/plugins/mailchimp-for-wp/assets/css/form-themes.min.css?ver=3.1.10' type='text/css' media='all' />
<link rel='stylesheet' id='author-avatars-shortcode-css' href='/adobe-blog/wp-content/plugins/author-avatars/css/shortcode.css?ver=1.9.6' type='text/css' media='all' />
<link rel='stylesheet' id='podpress_frontend_styles-css' href='/adobe-blog/wp-content/plugins/podpress/style/podpress.css?ver=4.5.3' type='text/css' media='all' />
<link rel='stylesheet' id='blackbirdpie-css-css' href='/adobe-blog/wp-content/plugins/twitter-blackbird-pie/css/blackbirdpie.css?ver=20110416' type='text/css' media='all' />
<!-- This site uses the Google Analytics by Yoast plugin v5.4.7 - Universal enabled - https://yoast.com/wordpress/plugins/google-analytics/ -->
<script type="text/javascript">
(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','__gaTracker');
__gaTracker('create', 'UA-215747-13', 'auto');
__gaTracker('set', 'forceSSL', true);
__gaTracker('send','pageview');
</script>
<!-- / Google Analytics by Yoast -->
<script type="text/javascript">
//<![CDATA[
var podpressL10 = {
openblogagain : 'back to:',
theblog : 'the blog',
close : 'close',
playbutton : 'Play >'
}
//]]>
</script>
<script type="text/javascript" src="/adobe-blog/wp-content/plugins/podpress/players/1pixelout/1pixelout_audio-player.js"></script>
<script type="text/javascript">//<![CDATA[
var podPressPlayerFile = "1pixelout_player.swf";
var podPressPopupPlayerOpt = new Object();
podPressPopupPlayerOpt["bg"] = "E5E5E5";
podPressPopupPlayerOpt["text"] = "333333";
podPressPopupPlayerOpt["leftbg"] = "CCCCCC";
podPressPopupPlayerOpt["lefticon"] = "333333";
podPressPopupPlayerOpt["volslider"] = "666666";
podPressPopupPlayerOpt["voltrack"] = "FFFFFF";
podPressPopupPlayerOpt["rightbg"] = "B4B4B4";
podPressPopupPlayerOpt["rightbghover"] = "999999";
podPressPopupPlayerOpt["righticon"] = "333333";
podPressPopupPlayerOpt["righticonhover"] = "FFFFFF";
podPressPopupPlayerOpt["loader"] = "009900";
podPressPopupPlayerOpt["track"] = "FFFFFF";
podPressPopupPlayerOpt["border"] = "CCCCCC";
podPressPopupPlayerOpt["tracker"] = "DDDDDD";
podPressPopupPlayerOpt["skip"] = "666666";
podPressPopupPlayerOpt["slider"] = "666666";
podPressPopupPlayerOpt["initialvolume"] = "70";
podPressPopupPlayerOpt["buffer"] = "5";
podPressPopupPlayerOpt["checkpolicy"] = "no";
podPressPopupPlayerOpt["animation"] = "yes";
podPressPopupPlayerOpt["remaining"] = "no";
podpressAudioPlayer.setup("/adobe-blog/wp-content/plugins/podpress/players/1pixelout/" + podPressPlayerFile, {bg:"E5E5E5", text:"333333", leftbg:"CCCCCC", lefticon:"333333", volslider:"666666", voltrack:"FFFFFF", rightbg:"B4B4B4", rightbghover:"999999", righticon:"333333", righticonhover:"FFFFFF", loader:"009900", track:"FFFFFF", border:"CCCCCC", tracker:"DDDDDD", skip:"666666", slider:"666666", initialvolume:"70", buffer:"5", checkpolicy:"no", animation:"yes", remaining:"no", pagebg:"FFFFFF", transparentpagebg:"yes", encode: "no"} );
//]]></script>
<script type="text/javascript">//<![CDATA[
var podPressBlogURL = "/adobe-blog/";
var podPressBackendURL = "/adobe-blog/wp-content/plugins/podpress/";
var podPressDefaultPreviewImage = "https://blogs.perficient.com/wp-content/plugins/podpress/images/vpreview_center.png";
var podPressMP3PlayerWrapper = false;
var podPress_cortado_signed = false;
var podPressOverwriteTitleandArtist = false;
var podPressHTML5 = true;
var podPressHTML5_showplayersdirectly = false;
var podPressText_PlayNow = "Play Now";
var podPressText_HidePlayer = "Hide Player";
//]]></script>
<script type='text/javascript' src='/adobe-blog/wp-includes/js/jquery/jquery.js?ver=1.12.4'></script>
<script type='text/javascript' src='/adobe-blog/wp-includes/js/jquery/jquery-migrate.min.js?ver=1.4.1'></script>
<script type='text/javascript' src='/adobe-blog/wp-content/plugins/duracelltomi-google-tag-manager/js/gtm4wp-form-move-tracker.js?ver=1.3.1'></script>
<script type='text/javascript' src='/adobe-blog/wp-content/plugins/twitter-blackbird-pie/js/blackbirdpie.js?ver=20110404'></script>
<script type='text/javascript' src='/adobe-blog/wp-content/plugins/podpress/js/podpress.js?ver=4.5.3'></script>
<link rel='https://api.w.org/' href='/adobe-blog/wp-json/' />
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="/adobe-blog/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="/adobe-blog/wp-includes/wlwmanifest.xml" />
<link rel='prev' title='Gartner Magic Quadrant for Horizontal Portals 2011' href='/adobe-blog/2011/10/31/gartner-magic-quadrant-for-horizontal-portals-2011/' />
<link rel='next' title='Adobe CQ5.5 Sneak Peek' href='/adobe-blog/2012/02/28/adobe-cq5-5-sneak-peek/' />
<meta name="generator" content="WordPress 4.5.3" />
<link rel='shortlink' href='/adobe-blog/?p=4180' />
<link rel="alternate" type="application/json+oembed" href="/adobe-blog/wp-json/oembed/1.0/embed?url=http%3A%2F%2Fblogs.perficient.com%2Fadobe%2F2012%2F02%2F01%2Fadobe-cq5-as-a-portal%2F" />
<link rel="alternate" type="text/xml+oembed" href="/adobe-blog/wp-json/oembed/1.0/embed?url=http%3A%2F%2Fblogs.perficient.com%2Fadobe%2F2012%2F02%2F01%2Fadobe-cq5-as-a-portal%2F&format=xml" />
<style type="text/css">
<!-- Silverlight WordPress Plugin -->
#silverlightControlHost{height:100%;}
</style>
<!-- Google Tag Manager for WordPress by DuracellTomi -->
<script data-cfasync="false" type="text/javascript">
dataLayer.push({"pagePostType":"post","pagePostType2":"single-post","pageCategory":["analytics-optimization-personalization","experience-management"],"pageAttributes":["best-practices","cq5","portal","websphere-portal"],"pagePostAuthor":"Mark Polly"});
</script>
</head>
<body class="single single-post postid-4180 single-format-standard">
<noscript><iframe src="//www.googletagmanager.com/ns.html?id=GTM-KQ58VV"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<script data-cfasync="false">(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-KQ58VV');</script>
<!-- End Google Tag Manager -->
<script type="text/javascript" src="http://www.perficient.com/Coveo/js/cultures/en.js"></script>
<script type="text/javascript">
Coveo.$(function() {
if (typeof(CoveoForSitecore) !== 'undefined') {
CoveoForSitecore.componentsOptions = {"analyticsCustomMetadata" : {},"analyticsEndpointUri" : "/coveo/rest/v6/analytics" , "boostExpressions" : "" , "clientLanguageFieldName" : "@fz95xlanguage77837" , "clientLanguageName" : "en" , "defaultSortType" : "" , "defaultSortField" : "" , "defaultSortCriteriaNoSpace" : "Relevancy" , "defaultSortCriteriaLowercase" : "relevancy" , "enableClientSideLogging" : false,"externalCollections" : [],"externalSources" : [],"filterResultsOnCurrentCulture" : true,"hiddenExpression" : " NOT @ftemplateid77837==(\"adb6ca4f-03ef-4f47-b9ac-9ce2ba53ff97\",\"fe5dd826-48c6-436d-b87a-7c4210c7413b\")" , "indexSourceName" : "Coveo_web_index - CM-perficient" , "isEditingInPageEditor" : false,"isPreviewingInPageEditor" : false,"isPreviewingInPageEditorWithSimulatedDevice" : false,"latestVersionFieldName" : "@fz95xlatestversion77837" , "pageFullPath" : "/sitecore/content/Perficient/Home" , "pageName" : "Home" , "restEndpointUri" : "/coveo/rest" , "searchBoxPlaceholderText" : "Search for..." , "sendToSitecoreAnalytics" : false,"sitecoreItemId" : "cc93e72a-e070-467b-8ce8-6f8b03289603" , "sitecoreItemUri" : "sitecore://web/{CC93E72A-E070-467B-8CE8-6F8B03289603}?lang=en\u0026ver=1" , "siteName" : "perficient" , "searchRedirectionUrl" : "http://www.perficient.com/search-results"};
Coveo.$('#searchBox').coveoForSitecore('initSearchBox',
CoveoForSitecore.componentsOptions);
} else {
Coveo.$('#searchBox').coveo('initSearchBox',
'http://www.perficient.com/search-results');
}
Coveo.$('#searchBox').find("input.CoveoQueryBox").attr("placeholder", 'Search for...');
});
</script>
<section>
<div class="search-overlay overlay overlay-effect form-footer">
<div class="overlay-container container">
<div class="row">
<div class="col-xs-12">
<div class="search-container">
<div id="searchBox" class="input-group">
<div data-activate-omnibox="true">
<input type="text" class="form-control CoveoQueryBox" placeholder="Search for..."/>
</div>
<span class="input-group-btn">
<button class="CoveoSearchButton">GO</button>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<header role="banner">
<div class="search-icon" id="search-trigger-overlay">
<span></span>
</div>
<div class="container-fluid">
<div class="row">
<div class="hidden-md-up mobile-logo">
<a href="http://www.perficient.com/">
<img src='/adobe-blog/wp-content/themes/perficient_2016/images/perficient-logo.jpg' alt='' />
</a>
</div>
<button class="navbar-toggler hidden-md-up" type="button" data-toggle="collapse" data-target="#mobilenav">
<div class="menu-icon">
<div class="center-bar"></div>
</div>
</button>
<nav class="navbar navbar-full">
<div class="collapse navbar-toggleable-sm" id="mobilenav">
<div class="nav-block">
<div class="main-nav">
<ul>
<li class="nav-item hidden-sm-down">
<!-- Possible change here -->
<a href="http://www.perficient.com/" class="logo">
<img src='/adobe-blog/wp-content/themes/perficient_2016/images/perficient-logo.jpg' alt='' />
</a>
<!-- /Possible change here -->
</li>
<!-- BEGIN MAIN NAVIGATION -->
<li class="nav-item ">
<a href="http://www.perficient.com/services" class="nav-link dropdown-toggle" id="servicesMenu" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Services
</a>
<div class="dropdown-menu mega-menu" aria-labelledby="servicesMenu">
<div class="menu-title">
<a href="http://www.perficient.com/services">Services</a>
</div>
<div class="menu-block">
<ul class="list-unstyled">
<li class="mega-menu-item"><a href="http://www.perficient.com/services/data">Data</a></li>
<li class="mega-menu-item"><a href="http://www.perficient.com/services/design">Design</a></li>
<li class="mega-menu-item"><a href="http://www.perficient.com/services/marketing">Marketing</a></li>
<li class="mega-menu-item"><a href="http://www.perficient.com/services/operations">Operations</a></li>
<li class="mega-menu-item"><a href="http://www.perficient.com/services/strategy">Strategy</a></li>
<li class="mega-menu-item"><a href="http://www.perficient.com/services/technology">Technology</a></li>
<li class="mega-menu-item"><a href="http://www.perficient.com/services/perficient-digital">Perficient Digital</a></li>
</ul>
</div>
</div>
</li>
<li class="nav-item ">
<a href="http://www.perficient.com/industries" class="nav-link dropdown-toggle" id="servicesMenu" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Industries
</a>
<div class="dropdown-menu mega-menu" aria-labelledby="servicesMenu">
<div class="menu-title">
<a href="http://www.perficient.com/industries">Industries</a>
</div>
<div class="menu-block">
<ul class="list-unstyled">
<li class="mega-menu-item"><a href="http://www.perficient.com/industries/automotive">Automotive</a></li>
<li class="mega-menu-item"><a href="http://www.perficient.com/industries/communications">Communications</a></li>
<li class="mega-menu-item"><a href="http://www.perficient.com/industries/consumer-markets">Consumer Markets</a></li>
<li class="mega-menu-item"><a href="http://www.perficient.com/industries/energy">Energy</a></li>
<li class="mega-menu-item"><a href="http://www.perficient.com/industries/financial-services">Financial Services</a></li>
<li class="mega-menu-item"><a href="http://www.perficient.com/industries/healthcare">Healthcare</a></li>
<li class="mega-menu-item"><a href="http://www.perficient.com/industries/high-tech">High Tech</a></li>
<li class="mega-menu-item"><a href="http://www.perficient.com/industries/life-sciences">Life Sciences</a></li>
<li class="mega-menu-item"><a href="http://www.perficient.com/industries/manufacturing">Manufacturing</a></li>
</ul>
</div>
</div>
</li>
<li class="nav-item ">
<a href="http://www.perficient.com/partners" class="nav-link dropdown-toggle" id="servicesMenu" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Partners
</a>
<div class="dropdown-menu mega-menu" aria-labelledby="servicesMenu">
<div class="menu-title">
<a href="http://www.perficient.com/partners">Partners</a>
</div>
<div class="menu-block">
<ul class="list-unstyled">
<li class="mega-menu-item"><a href="http://www.perficient.com/partners/adobe">Adobe</a></li>
<li class="mega-menu-item"><a href="http://www.perficient.com/partners/ibm">IBM</a></li>
<li class="mega-menu-item"><a href="http://www.perficient.com/partners/microsoft">Microsoft</a></li>
<li class="mega-menu-item"><a href="http://www.perficient.com/partners/oracle">Oracle</a></li>
<li class="mega-menu-item"><a href="http://www.perficient.com/partners/salesforce">Salesforce</a></li>
<li class="mega-menu-item"><a href="http://www.perficient.com/partners/cloudera">Cloudera</a></li>
<li class="mega-menu-item"><a href="http://www.perficient.com/partners/google">Google</a></li>
<li class="mega-menu-item"><a href="http://www.perficient.com/partners/hortonworks">Hortonworks</a></li>
<li class="mega-menu-item"><a href="http://www.perficient.com/partners/informatica">Informatica</a></li>
<li class="mega-menu-item"><a href="http://www.perficient.com/partners/insite">Insite</a></li>
<li class="mega-menu-item"><a href="http://www.perficient.com/partners/liferay">Liferay</a></li>
<li class="mega-menu-item"><a href="http://www.perficient.com/partners/magento">Magento</a></li>
<li class="mega-menu-item"><a href="http://www.perficient.com/partners/pegasystems">Pegasystems</a></li>
<li class="mega-menu-item"><a href="http://www.perficient.com/partners/red-hat">Red Hat</a></li>
<li class="mega-menu-item"><a href="http://www.perficient.com/partners/sitecore">Sitecore</a></li>
<li class="mega-menu-item"><a href="http://www.perficient.com/partners/splunk">Splunk</a></li>
<li class="mega-menu-item"><a href="http://www.perficient.com/partners/tibco">TIBCO</a></li>
</ul>
</div>
</div>
</li>
<li class="nav-item ">
<a href="http://www.perficient.com/work" class="nav-link dropdown-toggle" id="servicesMenu" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Work
</a>
<div class="dropdown-menu mega-menu" aria-labelledby="servicesMenu">
<div class="menu-title">
<a href="http://www.perficient.com/work">Work</a>
</div>
<div class="menu-block">
<ul class="list-unstyled">
<li class="mega-menu-item"><a href='http://www.perficient.com/work?service=Data' >Data</a></li>
<li class="mega-menu-item"><a href='http://www.perficient.com/work?service=Design' >Design</a></li>
<li class="mega-menu-item"><a href='http://www.perficient.com/work?service=Marketing' >Marketing</a></li>
<li class="mega-menu-item"><a href='http://www.perficient.com/work?service=Operations' >Operations</a></li>
<li class="mega-menu-item"><a href='http://www.perficient.com/work?service=Strategy' >Strategy</a></li>
<li class="mega-menu-item"><a href='http://www.perficient.com/work?service=Technology' >Technology</a></li>
<li class="mega-menu-item"><a href='http://www.perficient.com/work?service=Perficient%2BDigital' >Perficient Digital</a></li>
</ul>
</div>
</div>
</li>
<li class="nav-item ">
<a href="http://www.perficient.com/insights" class="nav-link dropdown-toggle" id="servicesMenu" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Insights
</a>
<div class="dropdown-menu mega-menu" aria-labelledby="servicesMenu">
<div class="menu-title">
<a href="http://www.perficient.com/insights">Insights</a>
</div>
<div class="menu-block">
<ul class="list-unstyled">
<li class="mega-menu-item"><a href="http://www.perficient.com/insights/blogs">Blogs</a></li>
<li class="mega-menu-item"><a href="http://www.perficient.com/insights/events">Events</a></li>
<li class="mega-menu-item"><a href="http://www.perficient.com/insights/guides">Guides</a></li>
<li class="mega-menu-item"><a href="http://www.perficient.com/insights/webinars">Webinars</a></li>
</ul>
</div>
</div>
</li>
<!-- END MAIN NAVIGATION -->
</ul>
</div>
<!-- BEGIN UTILITY NAVIGATION -->
<div class="pull-right utility-nav">
<ul>
<li>
<a href='http://www.perficient.com/about' >About</a>
</li>
<li>
<a href='http://phx.corporate-ir.net/phoenix.zhtml?c=83872&p=irol-irhome ' >Investors</a>
</li>
<li>
<a href='https://careers-perficient.icims.com/' >Careers</a>
</li>
<li>
<a href='http://www.perficient.com/contact' >Contact</a>
</li>
</ul>
</div>
</div>
<!-- END UTILITY NAVIGATION -->
</div>
</nav>
</div>
</div>
</header>
<section class="hero left short-hero hero-blog-header" id="">
<a href="http://www.perficient.com/insights/blogs" class="link-back">Blogs</a>
<div class="hero-background-container">
<img class="hero-background" src="/adobe-blog/files/2016/05/blog-hero-adobe.jpg">
</div>
<div class="color-container">
<i class="icon icon-blockangle"></i>
<div class="hero-content">
<h1 class="hero-blog-name"><a href="/adobe-blog/" rel="home">Adobe</a></h1>
<p class="hero-caption"> Perspectives on Adobe Digital Marketing Platform Technologies </p>
</div>
</div>
</section>
<script>
dataLayer.push({
'postDate': 'February 1, 2012',
'postAuthor_ID': '',
'postAuthor_nicename': '',
'postAuthor_display_name': '',
'postAuthor_nickname': '',
'postName': 'Adobe CQ5 as a Portal',
'postCategories':'Analytics, Optimization & Personalization, Experience Management',
'postTags':'Best Practices, cq5, portal, websphere portal'});
</script>
<!-- Main Content -->
<section class="rich-text">
<div class="container">
<div class="row">
<div class="col-md-9">
<article id="post-4180" class="post-4180 post type-post status-publish format-standard hentry category-analytics-optimization-personalization category-experience-management tag-best-practices tag-cq5 tag-portal tag-websphere-portal">
<h1 class="entry-title">Adobe CQ5 as a Portal</h1>
<h4 class="byline author-info">by <span class="vcard author"><span class="fn"><a href="/adobe-blog/author/mpolly/" title="Posts by Mark Polly" rel="author">Mark Polly</a></span></span> on <span class="date updated">February 1st, 2012</span>
<span class='span-reading-time'>| <em>~ 2 minute read</em></span>
</h4>
<div class="entry">
<div class='shareaholic-canvas' data-app-id='24634915' data-app='share_buttons' data-title='Adobe CQ5 as a Portal' data-link='/adobe-blog/2012/02/01/adobe-cq5-as-a-portal/' data-summary=''></div><!-- AddThis Sharing Buttons above --><div class='at-above-post addthis_default_style addthis_toolbox at-wordpress-hide' data-title='Adobe CQ5 as a Portal' data-url='/adobe-blog/2012/02/01/adobe-cq5-as-a-portal/'></div><p>We’ve seen a lot of interest in Adobe CQ5 lately. One question that comes up a lot is about CQ5’s portal capabilities. Michael Porter blogged last year about the trend of Web Content Management systems to become more portal-like (see <a title="Web Content Management trend toward portal" href="http://blogs.perficient.com/digitaltransformation/2011/04/25/web-content-managements-trend-towards-portals/">Web Content Management’s Trend Towards Portals</a>).</p>
<p>It is true that overall CQ5 has lots of traditional portal features. However, unlike many other WCM systems, CQ5 has gone the extra step to include a portal server within its stack so you can run real portlets in the system. So CQ5 can play dual roles of traditional content management and portal, just like traditional portal vendors IBM, Liferay, and SharePoint.</p>
<p>So the question is: can CQ5 offer the same level of portal capabilities as these other vendors? From a pure <em>portal</em> point of view, I don’t think CQ5 is quite at the level of the major portal vendors. I refer to CQ5 as more portal-lite because it does offer the ability to run standard portlets, but it lacks many of the features that the other systems provide. Here is a small list of additional services that IBM’s portal offers that are not in CQ5:</p>
<ul>
<li>Credential Vault – when integrating with external sites, you sometimes need to store each user’s ID and password to pass along. IBM provides a very secure implementation of a credential vault out of the box.</li>
<li>Personalization engine access from within a portlet. CQ5 offers personalization of content, but what if you have a custom portlet that needs to pull in personalized content. IBM offers this service so portlets can define a content spot on the output of a portlet and that spot runs the rules engine to get personalized content.</li>
<li>JSF or Struts frameworks. Both frameworks are included in the IBM tooling for Portlets and are available in the server runtimes. For CQ5 you will have to implement these frameworks yourself.</li>
<li>Interportlet communications. CQ5 runs JSR 286 portlets which now offer the ability to communicate with each other through portlet events. But if you have older JSR 168 portlets that can’t do events, you have to come up with your own portlet communication system. IBM has provided a strong portlet wiring service for a long time.</li>
<li>Virtual portals in the IBM Portal provide the ability to distribute administration of portals without having to purchase separate hardware and software. This feature allows for addressing multiple user directories when you want to keep your suppliers separate from your customers.</li>
</ul>
<p>If you don’t plan to use these extra features, then Adobe’s CQ5 product may fit your portal needs just fine. If these features are important, then you need to evaluate whether CQ5 should be your sole portal platform.</p>
<p>We often see the scenario where you have a content-heavy site for your public web presence, but you have an application-heavy secure site for customer self service. In this case, its perfectly feasible to combine CQ5 for its great content management and digital marketing platform with a more traditional portal platform for the heavy application lifting.</p>
<p>For this scenario, content is managed in CQ5 for both marketing and secure sites. Your application-heavy portal, say IBM Portal, can use the out of the box CQ5 content portlet to deliver content to the secure site.</p>
<p>Don’t get me wrong, I like what Adobe CQ5 offers from a WCM and Portal perspective. Many of our clients love it. But as we see so many vendors trying to blur the lines between the technologies to offer a complete solution, I just see that the evolution is still under way.</p>
<!-- AddThis Sharing Buttons below --><div class='at-below-post addthis_default_style addthis_toolbox at-wordpress-hide' data-title='Adobe CQ5 as a Portal' data-url='/adobe-blog/2012/02/01/adobe-cq5-as-a-portal/'></div><!-- AddThis Recommended Content below --> <div class='at-below-post-recommended addthis_default_style addthis_toolbox at-wordpress-hide'></div><!-- Begin MailChimp Signup Form -->
<link href="//cdn-images.mailchimp.com/embedcode/classic-10_7.css" rel="stylesheet" type="text/css">
<style type="text/css">
#mc_embed_signup{background:#fff; clear:left; font:14px Helvetica,Arial,sans-serif; }
/* Add your own MailChimp form style overrides in your site stylesheet or in this style block.
We recommend moving this block and the preceding CSS link to the HEAD of your HTML file. */
</style>
<div id="mc_embed_signup">
<form action="//perficient.us8.list-manage.com/subscribe/post?u=30512c1cf29041d8fbc20332c&id=87a68f1486" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
<div id="mc_embed_signup_scroll">
<h2>Subscribe to the Adobe Weekly Digest</h2>
<div class="indicates-required"><span class="asterisk">*</span> indicates required</div>
<div class="mc-field-group">
<label for="mce-EMAIL">Email Address <span class="asterisk">*</span>
</label>
<input type="email" value="" name="EMAIL" class="required email" id="mce-EMAIL">
</div>
<div id="mce-responses" class="clear">
<div class="response" id="mce-error-response" style="display:none"></div>
<div class="response" id="mce-success-response" style="display:none"></div>
</div> <!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
<div style="position: absolute; left: -5000px;" aria-hidden="true"><input type="text" name="b_30512c1cf29041d8fbc20332c_87a68f1486" tabindex="-1" value=""></div>
<div class="clear"><input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="button"></div>
</div>
</form>
</div>
<script type='text/javascript' src='//s3.amazonaws.com/downloads.mailchimp.com/js/mc-validate.js'></script><script type='text/javascript'>(function($) {window.fnames = new Array(); window.ftypes = new Array();fnames[0]='EMAIL';ftypes[0]='email';fnames[1]='FNAME';ftypes[1]='text';fnames[2]='LNAME';ftypes[2]='text';}(jQuery));var $mcj = jQuery.noConflict(true);</script>
<!--End mc_embed_signup-->
<div class="tags-author-info">
<div class="col-md-8 col-md-push-4">
<div class="blogs-tags">TAGS <a href="/adobe-blog/tag/best-practices/" rel="tag">Best Practices</a> <a href="/adobe-blog/tag/cq5/" rel="tag">cq5</a> <a href="/adobe-blog/tag/portal/" rel="tag">portal</a> <a href="/adobe-blog/tag/websphere-portal/" rel="tag">websphere portal</a></div>
</div>
<div class="col-md-4 col-md-pull-8 author-avatar-and-name">
<a href="/adobe-blog/author/mpolly/" style="float: left; margin-right: 1rem;"><img src="/adobe-blog/wp-content/plugins/user-avatar-jetpack/user-avatar-pic.php?src=/wp-content/uploads/avatars/77/1382532322-bpfull.jpg&w=64&id=77&random=1382532322" alt="" class=" avatar avatar-64 photo user-77-avatar" width="64" height="64" /></a>
<h4><a href="/adobe-blog/author/mpolly/" title="Posts by Mark Polly" rel="author">Mark Polly</a></h4>
</div>
<div class="clearfix"></div>
</div>
</div>
</article>
<div id="comments" class="comments-area">
<h2 class="comments-title">
6 thoughts on “<span>Adobe CQ5 as a Portal</span>” </h2>
<ol class="commentlist">
<li class="comment even thread-even depth-1" id="li-comment-39">
<article id="comment-39" class="comment">
<div class="comment-meta comment-author vcard">
<img alt='' src='https://secure.gravatar.com/avatar/d836f5a9d679f1aee8e4ce9dd0a3aa51?s=44&d=mm&r=g' srcset='https://secure.gravatar.com/avatar/d836f5a9d679f1aee8e4ce9dd0a3aa51?s=88&d=mm&r=g 2x' class='avatar avatar-44 photo img-circle' height='44' width='44' /><cite class="fn">Ajitha </cite> <a href="/adobe-blog/2012/02/01/adobe-cq5-as-a-portal/#comment-39"><time datetime="2016-03-19T08:56:25+00:00">March 19, 2016 at 8:56 am</time></a> </div><!-- .comment-meta -->
<section class="comment-content comment">
<p>We are using Adobe AEM as WCM , since we have other enterprise applications as well to be integrated along with SSO in to website we are considering Liferay portal. In this scenario what are the integration alternatives i have leveraging AEM (all presentation logic) for content authors at the same time integrating this with in Liferay portal ?</p>
</section><!-- .comment-content -->
<div class="reply">
<a rel='nofollow' class='comment-reply-link' href='/adobe-blog/2012/02/01/adobe-cq5-as-a-portal/?replytocom=39#respond' onclick='return addComment.moveForm( "comment-39", "39", "respond", "4180" )' aria-label='Reply to Ajitha'>Reply</a> <span>↓</span> </div><!-- .reply -->
</article><!-- #comment-## -->
</li><!-- #comment-## -->
<li class="comment odd alt thread-odd thread-alt depth-1" id="li-comment-38">
<article id="comment-38" class="comment">
<div class="comment-meta comment-author vcard">
<img alt='' src='https://secure.gravatar.com/avatar/4627151647b74f896cb9207fd761bba7?s=44&d=mm&r=g' srcset='https://secure.gravatar.com/avatar/4627151647b74f896cb9207fd761bba7?s=88&d=mm&r=g 2x' class='avatar avatar-44 photo img-circle' height='44' width='44' /><cite class="fn">Vinodh </cite> <a href="/adobe-blog/2012/02/01/adobe-cq5-as-a-portal/#comment-38"><time datetime="2013-12-05T10:33:06+00:00">December 5, 2013 at 10:33 am</time></a> </div><!-- .comment-meta -->
<section class="comment-content comment">
<p>Yes, CDN like Akamai might be a good choice to consider. Thanks Mark.</p>
</section><!-- .comment-content -->
<div class="reply">
<a rel='nofollow' class='comment-reply-link' href='/adobe-blog/2012/02/01/adobe-cq5-as-a-portal/?replytocom=38#respond' onclick='return addComment.moveForm( "comment-38", "38", "respond", "4180" )' aria-label='Reply to Vinodh'>Reply</a> <span>↓</span> </div><!-- .reply -->
</article><!-- #comment-## -->
</li><!-- #comment-## -->
<li class="comment even thread-even depth-1" id="li-comment-36">
<article id="comment-36" class="comment">
<div class="comment-meta comment-author vcard">
<img alt='' src='https://secure.gravatar.com/avatar/4627151647b74f896cb9207fd761bba7?s=44&d=mm&r=g' srcset='https://secure.gravatar.com/avatar/4627151647b74f896cb9207fd761bba7?s=88&d=mm&r=g 2x' class='avatar avatar-44 photo img-circle' height='44' width='44' /><cite class="fn">Vinodh Ramadoss </cite> <a href="/adobe-blog/2012/02/01/adobe-cq5-as-a-portal/#comment-36"><time datetime="2013-12-03T13:45:30+00:00">December 3, 2013 at 1:45 pm</time></a> </div><!-- .comment-meta -->
<section class="comment-content comment">
<p>Thanks Mark. From this it looks like, I will not only have some resources for my Webcenter Portal coming from CQ5 but also all the presentation logic corresponding to these resources coming from CQ5 (including all the CSS styling and Javascript that goes on those components). And I just need to call this resource directly using URL or build a JSR 268 portlet to consume it in my Webcenter Portal. Is my understanding right?</p>
<p>If so, how would I build a caching layer on top of this. If I want to cache, let us say some of the images stored in CQ5 in an intermediate caching layer like Coherence, it is going to be complicated as the presentation logic for that image and its container component is also stored in CQ5.</p>
</section><!-- .comment-content -->
<div class="reply">
<a rel='nofollow' class='comment-reply-link' href='/adobe-blog/2012/02/01/adobe-cq5-as-a-portal/?replytocom=36#respond' onclick='return addComment.moveForm( "comment-36", "36", "respond", "4180" )' aria-label='Reply to Vinodh Ramadoss'>Reply</a> <span>↓</span> </div><!-- .reply -->
</article><!-- #comment-## -->
<ol class="children">
<li class="comment byuser comment-author-mpolly bypostauthor odd alt depth-2" id="li-comment-37">
<article id="comment-37" class="comment">
<div class="comment-meta comment-author vcard">
<img src="/adobe-blog/wp-content/plugins/user-avatar-jetpack/user-avatar-pic.php?src=/wp-content/uploads/avatars/77/1382532322-bpfull.jpg&w=44&id=77&random=1382532322" alt="" class=" avatar avatar-44 photo user-77-avatar" width="44" height="44" /><cite class="fn">Mark Polly <span> Post author</span></cite> <a href="/adobe-blog/2012/02/01/adobe-cq5-as-a-portal/#comment-37"><time datetime="2013-12-05T09:45:36+00:00">December 5, 2013 at 9:45 am</time></a> </div><!-- .comment-meta -->
<section class="comment-content comment">
<p>Yes, you have encountered one of the many problems with trying to integrate separate systems like WebCenter and Adobe. I’m not that familiar with Coherence, but I thought it was used for data and object caching. So for things like CSS and Javascript they would not go into the Coherence cache. I think you will have to look at the CQ5 side to see how it caches the html it produces. That way your WebCenter portal doesn’t worry about caching, and you take care of that in CQ5.</p>
<p>CSS and Javascript can also be cached using CDNs, browser cache and speciality built edge cache systems.</p>
</section><!-- .comment-content -->
<div class="reply">
<a rel='nofollow' class='comment-reply-link' href='/adobe-blog/2012/02/01/adobe-cq5-as-a-portal/?replytocom=37#respond' onclick='return addComment.moveForm( "comment-37", "37", "respond", "4180" )' aria-label='Reply to Mark Polly'>Reply</a> <span>↓</span> </div><!-- .reply -->
</article><!-- #comment-## -->
</li><!-- #comment-## -->
</ol><!-- .children -->
</li><!-- #comment-## -->
<li class="comment even thread-odd thread-alt depth-1" id="li-comment-34">
<article id="comment-34" class="comment">
<div class="comment-meta comment-author vcard">
<img alt='' src='https://secure.gravatar.com/avatar/4627151647b74f896cb9207fd761bba7?s=44&d=mm&r=g' srcset='https://secure.gravatar.com/avatar/4627151647b74f896cb9207fd761bba7?s=88&d=mm&r=g 2x' class='avatar avatar-44 photo img-circle' height='44' width='44' /><cite class="fn">Vinodh Ramadoss </cite> <a href="/adobe-blog/2012/02/01/adobe-cq5-as-a-portal/#comment-34"><time datetime="2013-11-25T13:30:57+00:00">November 25, 2013 at 1:30 pm</time></a> </div><!-- .comment-meta -->
<section class="comment-content comment">
<p>Mark, I need to leverage content hosted in Adobe CQ5 and surface that in a portal built using Oracle Webcenter. Can you point me to the right resources to make this integration work? Are there REST APIs that can help? I am assuming there are JCR 170 APIs as well.</p>
</section><!-- .comment-content -->
<div class="reply">
<a rel='nofollow' class='comment-reply-link' href='/adobe-blog/2012/02/01/adobe-cq5-as-a-portal/?replytocom=34#respond' onclick='return addComment.moveForm( "comment-34", "34", "respond", "4180" )' aria-label='Reply to Vinodh Ramadoss'>Reply</a> <span>↓</span> </div><!-- .reply -->
</article><!-- #comment-## -->
<ol class="children">
<li class="comment byuser comment-author-mpolly bypostauthor odd alt depth-2" id="li-comment-35">
<article id="comment-35" class="comment">
<div class="comment-meta comment-author vcard">
<img src="/adobe-blog/wp-content/plugins/user-avatar-jetpack/user-avatar-pic.php?src=/wp-content/uploads/avatars/77/1382532322-bpfull.jpg&w=44&id=77&random=1382532322" alt="" class=" avatar avatar-44 photo user-77-avatar" width="44" height="44" /><cite class="fn">Mark Polly <span> Post author</span></cite> <a href="/adobe-blog/2012/02/01/adobe-cq5-as-a-portal/#comment-35"><time datetime="2013-11-29T07:10:47+00:00">November 29, 2013 at 7:10 am</time></a> </div><!-- .comment-meta -->
<section class="comment-content comment">
<p>Yes, Adobe CQ5 has REST APIs, and is built on a standard JCR using Apache Jackrabbit as the implementation. CQ5 also has JSR 286 portlets that can be used to display content in JSR 286 containers, which Webcenter is one. You can find all the documentation for this here: <a href="http://dev.day.com/docs/en/cq/current.html" rel="nofollow">http://dev.day.com/docs/en/cq/current.html</a></p>
<p>Look for “Developing on AEM” and it will give you what you need.</p>
</section><!-- .comment-content -->
<div class="reply">
<a rel='nofollow' class='comment-reply-link' href='/adobe-blog/2012/02/01/adobe-cq5-as-a-portal/?replytocom=35#respond' onclick='return addComment.moveForm( "comment-35", "35", "respond", "4180" )' aria-label='Reply to Mark Polly'>Reply</a> <span>↓</span> </div><!-- .reply -->
</article><!-- #comment-## -->
</li><!-- #comment-## -->
</ol><!-- .children -->
</li><!-- #comment-## -->
</ol><!-- .commentlist -->
<div id="respond" class="comment-respond">
<h3 id="reply-title" class="comment-reply-title">Leave a Reply <small><a rel="nofollow" id="cancel-comment-reply-link" href="/adobe/?p=4180#respond" style="display:none;">Cancel reply</a></small></h3> <form action="/adobe-blog/wp-comments-post.php" method="post" id="commentform" class="comment-form">
<p class="comment-notes"><span id="email-notes">Your email address will not be published.</span> Required fields are marked <span class="required">*</span></p><p class="comment-form-comment"><label for="comment">Comment</label> <textarea id="comment" name="comment" cols="45" rows="8" maxlength="65525" aria-required="true" required="required"></textarea></p><p class="comment-form-author"><label for="author">Name <span class="required">*</span></label> <input id="author" name="author" type="text" value="" size="30" maxlength="245" aria-required='true' required='required' /></p>
<p class="comment-form-email"><label for="email">Email <span class="required">*</span></label> <input id="email" name="email" type="text" value="" size="30" maxlength="100" aria-describedby="email-notes" aria-required='true' required='required' /></p>
<p class="comment-form-url"><label for="url">Website</label> <input id="url" name="url" type="text" value="" size="30" maxlength="200" /></p>
<p class="cptch_block"><br /><span class="cptch_wrap">
<label class="cptch_label" for="cptch_input">
<span class="cptch_span">6</span>
<span class="cptch_span"> − </span>
<span class="cptch_span"><input id="cptch_input_90" class="cptch_input " type="text" autocomplete="off" name="cptch_number" value="" maxlength="2" size="2" aria-required="true" required="required" style="margin-bottom:0;display:inline;font-size: 12px;width: 40px;" /></span>
<span class="cptch_span"> = </span>
<span class="cptch_span">1</span>
<input type="hidden" name="cptch_result" value="EAA=" />
<input type="hidden" name="cptch_time" value="1466706682" />
<input type="hidden" value="Version: 4.2.0" />
</label><span class="cptch_reload_button_wrap hide-if-no-js">
<noscript>
<style type="text/css">
.hide-if-no-js {
display: none !important;
}
</style>
</noscript>
<span class="cptch_reload_button dashicons dashicons-update"></span>
</span></span></p><p class="form-submit"><input name="submit" type="submit" id="submit" class="submit" value="Post Comment" /> <input type='hidden' name='comment_post_ID' value='4180' id='comment_post_ID' />
<input type='hidden' name='comment_parent' id='comment_parent' value='0' />
</p><p style="display: none;"><input type="hidden" id="akismet_comment_nonce" name="akismet_comment_nonce" value="63bd316f5f" /></p><p style="display: none;"><input type="hidden" id="ak_js" name="ak_js" value="102"/></p> </form>
</div><!-- #respond -->
</div><!-- #comments .comments-area -->
<nav>
<ul class="pager">
<li class="pager-prev"><a href="/adobe-blog/2011/10/31/gartner-magic-quadrant-for-horizontal-portals-2011/" rel="prev">← PREVIOUS POST</a></li>
<li class="pager-next"><a href="/adobe-blog/2012/02/28/adobe-cq5-5-sneak-peek/" rel="next">NEXT POST →</a></li>
</ul>
</nav>
</div>
<div class="col-md-3" id="blogs-sidebar">
<div id="mc4wp_form_widget-2" class="widget widget_mc4wp_form_widget"><script type="text/javascript">(function() {
if (!window.mc4wp) {
window.mc4wp = {
listeners: [],
forms : {
on: function (event, callback) {
window.mc4wp.listeners.push({
event : event,
callback: callback
});
}
}
}
}
})();
</script><!-- MailChimp for WordPress v3.1.10 - https://wordpress.org/plugins/mailchimp-for-wp/ --><form id="mc4wp-form-1" class="mc4wp-form mc4wp-form-8827 mc4wp-form-theme mc4wp-form-theme-red" method="post" data-id="8827" data-name="Default sign-up form" ><div class="mc4wp-form-fields"><p>
<label>Subscribe to the Adobe Weekly Digest: </label>
<input type="email" name="EMAIL" placeholder="Your email address" required />
</p>
<p>
<input type="submit" value="Sign up" />
</p><div style="display: none;"><input type="text" name="_mc4wp_honeypot" value="" tabindex="-1" autocomplete="off" /></div><input type="hidden" name="_mc4wp_timestamp" value="1466706682" /><input type="hidden" name="_mc4wp_form_id" value="8827" /><input type="hidden" name="_mc4wp_form_element_id" value="mc4wp-form-1" /></div><div class="mc4wp-response"></div></form><!-- / MailChimp for WordPress Plugin --></div><div id="text-2" class="widget widget_text"><h3 class="widgettitle">Perficient Adobe Blog</h3> <div class="textwidget">Our Adobe practice experts help clients understand opportunities, challenges, trends and the platform technology needed to deliver end-to-end, integrated digital
marketing platform solutions to fully realize the value of their Adobe investment.</div>
</div><div id="categories-2" class="widget widget_categories"><h3 class="widgettitle">Categories</h3> <ul>
<li class="cat-item cat-item-285"><a href="/adobe-blog/category/adobe/" >Adobe</a>
</li>
<li class="cat-item cat-item-3"><a href="/adobe-blog/category/analytics-optimization-personalization/" >Analytics, Optimization & Personalization</a>
</li>
<li class="cat-item cat-item-4"><a href="/adobe-blog/category/campaigns-marketing-automation/" >Campaigns & Marketing Automation</a>
</li>
<li class="cat-item cat-item-5"><a href="/adobe-blog/category/experience-management/" >Experience Management</a>
</li>
<li class="cat-item cat-item-283"><a href="/adobe-blog/category/innovation-insights/" >Innovation and Insights</a>
</li>
<li class="cat-item cat-item-2"><a href="/adobe-blog/category/mobile-experience/" >Mobile Experience</a>
</li>
</ul>
</div> <div id="recent-posts-2" class="widget widget_recent_entries"> <h3 class="widgettitle">Recent Posts</h3> <ul>
<li>
<a href="/adobe-blog/2016/06/17/start-aem-automatically-using-systemd/">Start AEM Automatically Using SystemD</a>
</li>
<li>
<a href="/adobe-blog/2016/06/15/making-connections-that-matter-in-healthcare-aem-mobile/">Making Connections that Matter in Healthcare: AEM Mobile</a>
</li>
<li>
<a href="/adobe-blog/2016/06/14/rise-of-the-millennials-how-a-new-generation-is-shaping-b2b-marketing/">Rise of the Millennials: How a New Generation is Shaping B2B Marketing</a>
</li>
<li>
<a href="/adobe-blog/2016/06/08/aem-mobile-on-tour/">AEM Mobile on Tour!</a>
</li>
<li>
<a href="/adobe-blog/2016/06/06/why-consumers-arent-satisfied-with-the-digital-experience/">Why Consumers Aren’t Satisfied with the Digital Experience</a>
</li>
</ul>
</div> <div id="author_avatars-2" class="widget widget_author_avatars"><h3 class="widgettitle">Contributors</h3><div class="author-list"><div class="user with-name user-889"><a href="/adobe-blog/author/rmccullough/" title="Ryan McCullough"><span class="avatar" title="Ryan McCullough"><img src="/adobe-blog/wp-content/plugins/user-avatar-jetpack/user-avatar-pic.php?src=/wp-content/uploads/avatars/889/1466016800-bpfull.jpg&w=32&id=889&random=1466016800" class=" avatar avatar-32 photo user-889-avatar" width="32" height="32" title="Ryan McCullough" alt="Ryan McCullough" /></span><span class="name">Ryan McCullough</span></a></div><div class="user with-name user-805"><a href="/adobe-blog/author/sgallina/" title="Stephanie Gallina"><span class="avatar" title="Stephanie Gallina"><img src="/adobe-blog/wp-content/plugins/user-avatar-jetpack/user-avatar-pic.php?src=/wp-content/uploads/avatars/805/1454423567-bpfull.jpg&w=32&id=805&random=1454423567" class=" avatar avatar-32 photo user-805-avatar" width="32" height="32" title="Stephanie Gallina" alt="Stephanie Gallina" /></span><span class="name">Stephanie Gallina</span></a></div><div class="user with-name user-757"><a href="/adobe-blog/author/dklco/" title="Dan Klco"><span class="avatar" title="Dan Klco"><img src="/adobe-blog/wp-content/plugins/user-avatar-jetpack/user-avatar-pic.php?src=/wp-content/uploads/avatars/757/1460728611-bpfull.jpg&w=32&id=757&random=1460728612" class=" avatar avatar-32 photo user-757-avatar" width="32" height="32" title="Dan Klco" alt="Dan Klco" /></span><span class="name">Dan Klco</span></a></div><div class="user with-name user-820"><a href="/adobe-blog/author/rperea/" title="Ryan Perea"><span class="avatar" title="Ryan Perea"><img src="/adobe-blog/wp-content/plugins/user-avatar-jetpack/user-avatar-pic.php?src=/wp-content/uploads/avatars/820/1456781515-bpfull.jpg&w=32&id=820&random=1456781515" class=" avatar avatar-32 photo user-820-avatar" width="32" height="32" title="Ryan Perea" alt="Ryan Perea" /></span><span class="name">Ryan Perea</span></a></div><div class="user with-name user-851"><a href="/adobe-blog/author/ssumner/" title="Shannon Sumner"><span class="avatar" title="Shannon Sumner"><img src="/adobe-blog/wp-content/plugins/user-avatar-jetpack/user-avatar-pic.php?src=/wp-content/uploads/avatars/851/1461793321-bpfull.jpg&w=32&id=851&random=1461793321" class=" avatar avatar-32 photo user-851-avatar" width="32" height="32" title="Shannon Sumner" alt="Shannon Sumner" /></span><span class="name">Shannon Sumner</span></a></div><div class="user with-name user-839"><a href="/adobe-blog/author/gdawson/" title="Greg Dawson"><span class="avatar" title="Greg Dawson"><img src="/adobe-blog/wp-content/plugins/user-avatar-jetpack/user-avatar-pic.php?src=/wp-content/uploads/avatars/839/1459911114-bpfull.jpg&w=32&id=839&random=1459911114" class=" avatar avatar-32 photo user-839-avatar" width="32" height="32" title="Greg Dawson" alt="Greg Dawson" /></span><span class="name">Greg Dawson</span></a></div><div class="user with-name user-208"><a href="/adobe-blog/author/rwood/" title="Rich Wood"><span class="avatar" title="Rich Wood"><img src="/adobe-blog/wp-content/plugins/user-avatar-jetpack/user-avatar-pic.php?src=/wp-content/uploads/avatars/208/richwood-bpfull.jpg&w=32&id=208&random=1350014512" class=" avatar avatar-32 photo user-208-avatar" width="32" height="32" title="Rich Wood" alt="Rich Wood" /></span><span class="name">Rich Wood</span></a></div><div class="user with-name user-3"><a href="/adobe-blog/author/michaelporter/" title="Michael Porter"><span class="avatar" title="Michael Porter"><img src="/adobe-blog/wp-content/plugins/user-avatar-jetpack/user-avatar-pic.php?src=/wp-content/uploads/avatars/3/mike_porter_avatar-bpfull.jpg&w=32&id=3&random=1350014518" class=" avatar avatar-32 photo user-3-avatar" width="32" height="32" title="Michael Porter" alt="Michael Porter" /></span><span class="name">Michael Porter</span></a></div><div class="user with-name user-627"><a href="/adobe-blog/author/dsheets/" title="David Sheets"><span class="avatar" title="David Sheets"><img src="/adobe-blog/wp-content/plugins/user-avatar-jetpack/user-avatar-pic.php?src=/wp-content/uploads/avatars/627/1422381722-bpfull.jpg&w=32&id=627&random=1422381722" class=" avatar avatar-32 photo user-627-avatar" width="32" height="32" title="David Sheets" alt="David Sheets" /></span><span class="name">David Sheets</span></a></div><div class="user with-name user-573"><a href="/adobe-blog/author/esefanov/" title="Eugene Sefanov"><span class="avatar" title="Eugene Sefanov"><img src="/adobe-blog/wp-content/plugins/user-avatar-jetpack/user-avatar-pic.php?src=/wp-content/uploads/avatars/573/1407507530-bpfull.jpg&w=32&id=573&random=1407507531" class=" avatar avatar-32 photo user-573-avatar" width="32" height="32" title="Eugene Sefanov" alt="Eugene Sefanov" /></span><span class="name">Eugene Sefanov</span></a></div></div></div><div id="social_stickers_widget-2" class="widget social_stickers_widget"><h3 class="widgettitle">Follow Us</h3><a href="http://twitter.com/perficient" target="_blank" title="Twitter"><img src="/adobe-blog/wp-content/plugins/social-stickers/themes/default/twitter.png" width="32" height="32" /></a> <a href="http://linkedin.com/in/165444" target="_blank" title="Linkedin"><img src="/adobe-blog/wp-content/plugins/social-stickers/themes/default/linkedin.png" width="32" height="32" /></a> <a href="http://facebook.com/perficient" target="_blank" title="Facebook"><img src="/adobe-blog/wp-content/plugins/social-stickers/themes/default/facebook.png" width="32" height="32" /></a> <a href="http://pinterest.com/perficientinc" target="_blank" title="Pinterest"><img src="/adobe-blog/wp-content/plugins/social-stickers/themes/default/pinterest.png" width="32" height="32" /></a> <a href="http://youtube.com/Perficient" target="_blank" title="Youtube"><img src="/adobe-blog/wp-content/plugins/social-stickers/themes/default/youtube.png" width="32" height="32" /></a> <a href="http://www.slideshare.net/perficientinc" target="_blank" title="Slideshare"><img src="/adobe-blog/wp-content/plugins/social-stickers/themes/default/slideshare.png" width="32" height="32" /></a> <a href="http://feeds.feedburner.com/perficient/adobe" target="_blank" title="RSS"><img src="/adobe-blog/wp-content/plugins/social-stickers/themes/default/rss.png" width="32" height="32" /></a> <a href="http://instagram.com/perficient" target="_blank" title="Instagram"><img src="/adobe-blog/wp-content/plugins/social-stickers/themes/default/instagram.png" width="32" height="32" /></a> </div><div id="archives-2" class="widget widget_archive"><h3 class="widgettitle">Archives</h3> <label class="screen-reader-text" for="archives-dropdown-2">Archives</label>
<select id="archives-dropdown-2" name="archive-dropdown" onchange='document.location.href=this.options[this.selectedIndex].value;'>
<option value="">Select Month</option>
<option value='/adobe-blog/2016/06/'> June 2016 </option>
<option value='/adobe-blog/2016/05/'> May 2016 </option>
<option value='/adobe-blog/2016/04/'> April 2016 </option>
<option value='/adobe-blog/2016/03/'> March 2016 </option>
<option value='/adobe-blog/2016/02/'> February 2016 </option>
<option value='/adobe-blog/2016/01/'> January 2016 </option>
<option value='/adobe-blog/2015/12/'> December 2015 </option>
<option value='/adobe-blog/2015/11/'> November 2015 </option>
<option value='/adobe-blog/2015/10/'> October 2015 </option>
<option value='/adobe-blog/2015/08/'> August 2015 </option>
<option value='/adobe-blog/2015/05/'> May 2015 </option>
<option value='/adobe-blog/2015/04/'> April 2015 </option>
<option value='/adobe-blog/2015/03/'> March 2015 </option>
<option value='/adobe-blog/2014/10/'> October 2014 </option>
<option value='/adobe-blog/2014/07/'> July 2014 </option>
<option value='/adobe-blog/2014/03/'> March 2014 </option>
<option value='/adobe-blog/2014/02/'> February 2014 </option>
<option value='/adobe-blog/2013/10/'> October 2013 </option>
<option value='/adobe-blog/2013/09/'> September 2013 </option>
<option value='/adobe-blog/2013/01/'> January 2013 </option>
<option value='/adobe-blog/2012/06/'> June 2012 </option>
<option value='/adobe-blog/2012/03/'> March 2012 </option>
<option value='/adobe-blog/2012/02/'> February 2012 </option>
<option value='/adobe-blog/2011/10/'> October 2011 </option>
<option value='/adobe-blog/2011/08/'> August 2011 </option>
<option value='/adobe-blog/2011/07/'> July 2011 </option>
<option value='/adobe-blog/2011/06/'> June 2011 </option>
<option value='/adobe-blog/2011/04/'> April 2011 </option>
<option value='/adobe-blog/2011/03/'> March 2011 </option>
<option value='/adobe-blog/2010/03/'> March 2010 </option>
</select>
</div> </div>
</div>
</div>
</section>
<!-- /Main Content -->
<section class="contact-form ">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12">
<iframe src="http://www2.perficient.com/l/9462/2016-03-07/6tc4d4" width="100%" scrolling="no" allowtransparency="true" id="7A7496EFAF0F4FAEB4A35B5ADE7C7294" style="border: none; overflow: hidden; height: 660px;"></iframe>
</div>
</div>
</div>
</section>
<!-- Begin Contact Overlay -->
<section>
<div class="contact-overlay overlay overlay-effect form-footer contact-form ">
<div class="overlay-container container">
<div class="row">
<div class="col-md-11 col-sm-12">
<iframe src="http://www2.perficient.com/l/9462/2016-03-07/6tc4d4" width="100%" scrolling="no" allowtransparency="true" id="iFrameContact1" style="border: none; overflow: hidden; height: 352px;"></iframe>
</div>
</div>
<button type="button" class="contact-overlay-close overlay-close">Close</button>
</div>
</div>
</section>
<script type="text/javascript">
iFrameResize();
$('#iFrameContact1').iFrameResize();
</script>
<!-- End Contact Overlay-->
<section class="footer-icons">
<div class="container">
<div class="row">
<div class="col-sm-12">
<ul class="hidden-sm-down pull-left">
<li>
<a href="http://www.perficient.com/">
<img src="/adobe-blog/wp-content/themes/perficient_2016/assets/img/perficient-logo-grey.png" alt="Perficient, Inc" />
</a>
</li>
<!-- BEGIN FOOTER NAVIGATION -->
<li>
<a href='http://www.perficient.com/privacy-policy' >Privacy Policy</a>
</li>
<!-- END FOOTER NAVIGATION -->
<li>
© 2016 Perficient, Inc. All Rights Reserved
</li>
</ul>
<!-- Begin Footer Icons-->
<ul class="list-unstyled">
<li>
<a href='http://www.perficient.com/Thought-Leadership/Social-Media/Blogs' > <i class="fa fa-rss"></i>
</a>
</li>
<li>
<a href='http://www.twitter.com/perficient' > <i class="fa fa-twitter"></i>
</a>
</li>
<li>
<a href='http://www.facebook.com/Perficient' > <i class="fa fa-facebook-square"></i>
</a>
</li>
<li>
<a href='http://linkedin.com/company/perficient' > <i class="fa fa-linkedin-square"></i>
</a>
</li>
<li>
<a href='http://www.youtube.com/perficient' > <i class="fa fa-youtube"></i>
</a>
</li>
</ul>
<!-- End Footer Icons-->
</div>
</div>
</div>
</section>
<footer>
<div class="desktop-footer">
<div class="footer-slogan">
Vision. Execution. Value.
</div>
<div class="footer-links hidden-md-up">
<ul>
<!-- BEGIN FOOTER NAVIGATION MOBILE -->
<li>
<a href='http://www.perficient.com/privacy-policy' >Privacy Policy</a>
</li>
<!-- END FOOTER NAVIGATION MOBILE -->
</ul>
<p>© 2016 Perficient, Inc. All Rights Reserved</p>
</div>
<button class="pull-right hidden-sm-down" type="button" id="contact-trigger-overlay">Contact Us</button>
<div class="footer-share">
<button class="dropdown-toggle" id="sharethis" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Share This Page
</button>
<!-- BEGIN SOCIAL MEDIA LINKS -->
<!-- AddToAny BEGIN -->
<div class="dropdown-menu sharelinks a2a_kit" aria-labelledby="sharethis">
<ul class="list-unstyled">
<li>
<a class="a2a_button_twitter"><i class="fa fa-twitter"></i>Twitter</a>
</li>
<li>
<a class="a2a_button_facebook"><i class="fa fa-facebook-square"></i>Facebook</a>
</li>
<li>
<a class="a2a_button_linkedin"><i class="fa fa-linkedin-square"></i>LinkedIn</a>
</li>
<li>
<a class="a2a_button_email"><i class="fa fa-envelope-o"></i>Email</a>
</li>
</ul>
</div>
<script>
var a2a_config = a2a_config || {};
a2a_config.linkurl = "/adobe-blog/2012/02/01/adobe-cq5-as-a-portal/";
a2a_config.templates = {
twitter: "${title} ${link} by @Perficient"
};
</script>
<script async src="https://static.addtoany.com/menu/page.js"></script>
<!-- AddToAny END -->
<!-- END SOCIAL MEDIA LINKS -->
</div>
</div>
</footer>
<script src="/adobe-blog/wp-content/themes/perficient_2016/assets/js/vendor/jquery.js"></script>
<script src="/adobe-blog/wp-content/themes/perficient_2016/assets/js/vendor/jquery.cookie.js"></script>
<script src="/adobe-blog/wp-content/themes/perficient_2016/assets/js/vendor/modernizr.custom.js"></script>
<script src="/adobe-blog/wp-content/themes/perficient_2016/assets/js/vendor/slick.min.js"></script><!-- carousel -->
<script src="/adobe-blog/wp-content/themes/perficient_2016/assets/js/vendor/overlay-classes.js"></script>
<script src="/adobe-blog/wp-content/themes/perficient_2016/assets/js/vendor/overlay.js"></script>
<script src="/adobe-blog/wp-content/themes/perficient_2016/assets/js/vendor/flexibility.js"></script><!-- flexbox support IE-->
<script src="/adobe-blog/wp-content/themes/perficient_2016/assets/js/vendor/tether.min.js"></script>
<script src="/adobe-blog/wp-content/themes/perficient_2016/assets/js/vendor/bootstrap.min.js"></script>
<script src="/adobe-blog/wp-content/themes/perficient_2016/assets/js/perficient-foundation.js"></script>
<script src="/adobe-blog/wp-content/themes/perficient_2016/assets/js/perficient-app.js"></script>
<!-- Powered by WPtouch: 4.1.5 --><script data-cfasync="false" type="text/javascript"></script>