...
Four application integration filters come standard with XperienCentral:
- The
WMInclude
filter retrieves the content of an external web application. - The
WMReplacementsFilter
executes a series of replacements in the content that the WMInclude filter has retrieved. These replacements strip away unnecessary HTML and convert other HTML so that it can be rendered in the XperienCentral front-end in your design template. - The
XSLFilter
converts XML into HTML. - Using the
IncludeFileFilter
, content from a file on disk can be displayed.
See Filters for complete information about the filters that can used in an external application integration.
...
- A visitor navigates to an XperienCentral page where an external application is shown.
- XperienCentral (the
WMIncludeFilter
) sends a request to the server of the external web application. - The XML or HTML response is retrieved and a series of transformations (replacements) are performed to make the HTML renderable in the design of the website (the
WMReplacementsFilter
).
The replacements perform the following tasks:
...
The precise replacements that are made will vary from application to application. Many applications can be integrated using the standard filters. However, you may need to create one or more custom filters that handle cases specific to the application you are integrating. This can be accomplished using the Integration API.
Adding an External Application
To integrate an external application in XperienCentral, you will typically follow these steps:
...