To enable the ADC processor pipeline, which automatically incorporates the Click to Call links in pages, the web.xml file for ATG Store includes the following:

<filter>
  <filter-name>ADCDataInsertFilter</filter-name>
  <filter-class>
    atg.filter.ConditionalDelegatingFilter
  </filter-class>
  <init-param>
    <param-name>targetFilter</param-name>
    <param-value>
      atg.adc.filter.ADCDataInsertFilter
    </param-value>
  </init-param>
</filter>
<filter-mapping>
  <filter-name>ADCDataInsertFilter</filter-name>
  <url-pattern>*.jsp</url-pattern>
</filter-mapping>

These settings specify that the atg.filter.ConditionalDelegatingFilter should run the atg.adc.filter.ADCDataInsertFilter if it is present. The ADCDataInsertFilter invokes the processor pipeline that inserts the Click to Call links. The filter is part of the ADC module, which is automatically included in the assembled EAR file when you specify the DCS.ClickToConnect module.

 
loading table of contents...