Center of Excellence

Center of Excellence


The COE is responsible for defining company direction, strategy and special projects that ensure and promote quality across the organization. This includes go-to-market strategy for business development, global expansion of services, product development, mentoring, thought-leadership, certifications, specializations and operational playbooks which promote excellence throughout the company. The COE leads our client's digital strategy, disruption and long-term planning discussions to better support our customer's needs. The COE sets strategic direction for company organic and inorganic growth including mergers / acquisition assessments, negotiations and deal structure.


Center of Excellence's Recent Articles

Resizing Touch UI component dialogs

In this blog post I lay out a technique that I've recently put together to have more control over component dialog "windows" or modals in AEM 6.1's [Touch UI interface](https://docs.adobe.com/docs/en/aem/6-1/develop/the-basics/touch-ui-concepts.html). This user-interface is set to replace Classic UI. It's thus a good idea to get acquainted with the way it...

AEM 6.1 - Filter RequestDispatcher Forward breaks i18n

I just noticed that on AEM 6, in my Filter, when I call RequestDispatcher forward, i.e. request.getRequestDispatcher(...).forward(req, res);, it cause i18n to break. Here's a snippet of my codes: ... boolean filtered = false; SlingHttpServletRequest request = req instanceof SlingHttpServletRequest ? (SlingHttpServletRequest) req : null; SlingHttpServletResponse response = res instanceof SlingHttpServletResponse ? (SlingHttpServletResponse) res : null; if (request != null && response != null) { // block of codes to resolve the request uri and get the new...

CQ 5.6 Tipping Point

Image Credit: "Woodwards building Vancouver demolition 1" by Tannoy at English Wikipedia. Licensed under CC BY-SA 3.0 via Wikimedia Commons. Recently, I spent a bit of time running performance tests against various versions of CQ5/AEM to understand the performance characteristics of the different versions. One of the interesting outcomes of...

August Webinar-Stravaganza!

Tis the season for webinars! 6D will be presenting some great webinars in August.  6D DPS Entitlement System Webinar Tuesday, August 18, 201512:30-1:00pm EST / 9:30-10:00am PST First up, Jason Porath and Charlie Wagner will be leading a webinar introducing the new 6D DPS Entitlement System. This product integrates with Adobe’s DPS and Publish platforms...

Three AEM / DPS Tips

I recently created a reference integration between Adobe Experience Manager (AEM) and Adobe Digital Pubishing Suite (DPS). AEM 6.1 ships with an integration between the two tools, along with a reference implementation, Geometrixx Media. This is a very exciting solution, as it allows non-technical authors to publish content to DPS apps. The AEM...

How to add AEM Dependency that is missing from public repository

![](/images/posts/2015-06-18-maven-dependency-missing-from-repo/mavendependency.png) So you just updated to the nice and shiny AEM 6.1, looking at new functionality and exploring around. Then you decide to tap into the [new api documentation](http://docs.adobe.com/docs/en/aem/6-1/ref/javadoc/index.html). Then reality comes back in, the boss wants to connect a new product into AEM 6.1. Too easy! I'll use a...