123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- Licensed Materials - Property of IBM
- IBM Cognos Products: HTS
- (C) Copyright IBM Corp. 2005, 2013
- US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- -->
- <service name="annotationService" class="com.cognos.pogo.services.SoapActionHandlerService" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" logStartStop="true" loadPriority="200" registerInCM="true" CMdefaultName="AnnotationService">
- <prerequisites>
- <prerequisite disabledProperty="ansIsEnabled"/>
- </prerequisites>
- <handlers>
- <handler name="AnnotationServiceHandler" classname="com.ibm.cognos.internal.annotations.service.AnnotationServiceHandler" reportingHandler="annotationService.annotationsReporter"/>
- <handler name="TransformRequestHandler" classname="com.cognos.jsmcommon.service.TransformRequestHandler"/>
- <handler name="TransformResponseHandler" classname="com.cognos.jsmcommon.service.TransformResponseHandler"/>
- <handler name="setRequestTransformPath" classname="com.cognos.pogo.handlers.logic.SetParmHandler" prop_name="request.transform.path" prop_value="/com/ibm/cognos/internal/annotations/service/transforms/request/"/>
- <handler name="setResponseTransformPath" classname="com.cognos.pogo.handlers.logic.SetParmHandler" prop_name="response.transform.path" prop_value="/com/ibm/cognos/internal/annotations/service/transforms/response/"/>
-
- <handler name="serviceStatus" classname="com.cognos.pogo.handlers.engine.ServiceStatusHandler" dispatcherStateHandler="dispatcher.dispatcherStatusHandler" serviceName="annotationService" skip_on_fault="false"/>
- <handler name="annotationsReporter" classname="com.cognos.pogo.monitoring.SimpleRequestReportingHandler" publisherName="pogoPublisher" reporterName="annotationService" serviceType="annotationService" skip_on_fault="false"/>
- <handler name="annotationsChainHandler" classname="com.cognos.pogo.handlers.logic.ChainHandler">
- <chain>
- <handler_ref name="pogo.auth_check"/>
- <handler_ref name="setRequestTransformPath"/>
- <handler_ref name="TransformRequestHandler"/>
- <handler_ref name="AnnotationServiceHandler"/>
- <handler_ref name="setResponseTransformPath"/>
- <handler_ref name="TransformResponseHandler"/>
- <handler_ref name="pogo.respond"/>
- <handler_ref name="annotationsReporter"/>
- </chain>
- </handler>
-
- <!-- =============================
- annotation service remote load balancing handler
- ============================================-->
- <handler name="RemoteBalanceHandler" classname="com.cognos.p2plb.clerver.actions.RemoteBalanceHandler">
- <service name="annotationService">
- <forwarding delayBetweenAttempts="0" maxAttempts="1"/>
- <soapAction>annotationService</soapAction>
- <soapAction>http://www.ibm.com/xmlns/prod/cognos/internal/annotationService/1</soapAction>
- <soapAction>http://www.ibm.com/xmlns/prod/cognos/internal/annotationService/1.absolute</soapAction>
- <soapAction>http://www.ibm.com/xmlns/prod/cognos/internal/annotationService/1.control</soapAction>
- <soapAction>http://www.ibm.com/xmlns/prod/cognos/internal/annotationService/1.high</soapAction>
- <soapAction>http://www.ibm.com/xmlns/prod/cognos/internal/annotationService/1.session</soapAction>
- <soapAction>http://www.ibm.com/xmlns/prod/cognos/internal/annotationService/1.server</soapAction>
- </service>
- </handler>
- </handlers>
-
- <soapActions>
- <!-- annotationService soap actions -->
- <soapAction path="http://www.ibm.com/xmlns/prod/cognos/internal/annotationService/1" handler="annotationService.annotationsChainHandler"/>
- <soapAction path="http://www.ibm.com/xmlns/prod/cognos/internal/annotationService/1.high" handler="annotationService.annotationsChainHandler"/>
- <soapAction path="http://www.ibm.com/xmlns/prod/cognos/internal/annotationService/1.session" handler="annotationService.annotationsChainHandler"/>
- <soapAction path="http://www.ibm.com/xmlns/prod/cognos/internal/annotationService/1.absolute" handler="annotationService.annotationsChainHandler"/>
- <soapAction path="http://www.ibm.com/xmlns/prod/cognos/internal/annotationService/1.control" handler="annotationService.annotationsChainHandler"/>
- <soapAction path="http://www.ibm.com/xmlns/prod/cognos/internal/annotationService/1.server" handler="annotationService.annotationsChainHandler"/>
-
- <!-- soap action for REST ness -->
- <soapAction path="annotationService" handler="annotationService.annotationsChainHandler"/>
- </soapActions>
- <attributes>
- <attribute>advancedSettings</attribute>
- </attributes>
- </service>
|