This post describes the architecture for Tridion's Experience Manager (XPM) when used with an MVC framework such as DD4T in a Service-Oriented Architecture. This architecture implies that the website is completely independent of Tridion Content Delivery APIs. The only place where the CD APIs are used is on the Provider's Services Layer, as described in the following diagram.
I am going to focus on this diagram to explain the basics of XPM and Session Preview mechanism in a DD4T with SOA providers setup.
I am going to focus on this diagram to explain the basics of XPM and Session Preview mechanism in a DD4T with SOA providers setup.
Publishing Flow
This flow is a standard Content Delivery DB publishing flow: TRIDION CONTENT MANAGER publishes Pages, Components and Binaries to a DEPLOYER that writes everything in the CONTENT DELIVERY DATA STORE.
It is very important to emphasize here that all publishing types go to the CD DB and that nothing is written to a file-system.
Content Delivery Flow
This flow represents the normal delivery of pages and binaries from the web-application DD4T WEBSITE to the visitor's browser.
The visitor's request to DD4T WEBSITE goes through the MVC controller into a model factory, which invokes a provider on the PROVIDER SERVICES LAYER using a RESTful call.
The provider reads the content from the CONTENT DELIVERY DATA STORE and returns it as string (or some serialized format) to the factory on the DD4T WEBSITE.
Here the response is deserialized into an MVC model (e.g. a Page meta object). Further, the model is forwarded to a View, which renders and sends the response to the visitor's browser.
Experience Manager Flow
This flow describes the high-level actions occurring when a Page or Dynamic Component Presentation is edited through XPM. This flow succeeds the Content Delivery Flow, when an editor enables XPM on a Page in the Staging DD4T WEBSITE.
TRIDION CONTENT MANAGER loads the page in an Iframe through its XPM module running as an extension on the CME website.
When the editor makes changes to the content (adding, changing or reordering items), they are saved immediately to their respective Tridion items on the TCM. However, the changed items are not published immediately -- they only get published when the editor clicks the button Finish Editing in the XPM toolbar. Instead, these changes are 'fast-track published' (i.e. posted) to an ODATA WEBSERVICE, which writes them into a SESSION PREVIEW DATA STORE.
Session Preview Flow
This flow succeeds the Experience Manager Flow and it consists of the high-level actions occurring when the editor clicks the 'Update Preview' toolbar button in XPM. This update is required when the content the user is seeing in an XPM session has been modified but not published. XPM detects that the last modified timestamp of the content is newer than the last published timestamp, and as such an update is needed.
Instead of the editor publishing the modified items, they just click 'Update Preview'.
The XPM module on the TRIDION CONTENT MANAGER sets a cookie on the edited page containing the id of the current XPM session (i.e. preview-session-token) and then triggers the reload of the edited page.
The Content Delivery Flow occurs with the DD4T WEBSITE invoking the PROVIDER SERVICES LAYER requesting a serialized model. In this request, the cookie preview-session-token needs to be present.
The provider uses the preview session token to look up the content in either the CONTENT DELIVERY DATA STORE or in SESSION PREVIEW DATA STORE. If modified content is available in the Session Preview DB, it is returned. Otherwise, it returns published content from Content Delivery DB.
Problem with Session Preview Flow
Because the current approach is MVC and SOA providers, the DD4T WEBSITE lacks all knowledge of Tridion. This means there is no Tridion software running on it. In a non-SOA approach, we would run the Ambient Data Framework on the web-application, and ADF would provide the session preview token to the underlying CD API. Based on this token, the API 'knows' which content to look for.
XPM sets the cookie with the preview session token on the edited page, but there is no software module that uses it or makes it available to PROVIDER SERVICES LAYER.
The solution consists in us writing the logic to attach the preview session token to the RESTful request to the services layer. As such, the factories are responsible to attach a cookie to their RESTful request containing the preview session token.
Once this token is in the RESTful request, the ADF module running on the PROVIDER SERVICES LAYER is able to intercept it and use it during the content lookup.
Conclusion
XPM with DD4T using SOA providers is possible and it works, but not OOTB. Some minimalistic code is needed to send the preview session token to the providers.
Comments