1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- +========================================================================+
- | IBM Confidential
- | OCO Source Materials
- | IBM Cognos Products: BUX
- | (C) Copyright IBM Corp. 2011, 2020
- |
- | The source code for this program is not published or otherwise
- | divested of its trade secrets, irrespective of what has been deposited
- | with the U.S. Copyright Office.
- +========================================================================+
- -->
- <service loadPriority="99" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="./ ./services.xsd"
- name="buxService"
- class="com.cognos.pogo.services.SoapActionHandlerService"
- registerInCM="false"
- CMdefaultName="BUX Service"
- parser="stax"
- bodyHandlerFactory="buxService.buxServiceHandler">
- <prerequisites>
- <prerequisite disabledProperty="xtscrnIsEnabled"/>
- <prerequisite disabledProperty="dispIsEnabled"/>
- </prerequisites>
- <handlers>
- <handler name="buxServiceReporter" classname="com.cognos.pogo.monitoring.SimpleRequestReportingHandler" publisherName="NoPublisher" reporterName="buxService" serviceType="buxService" skip_on_fault="false"/>
- <handler name="remoteBalanceHandler" classname="com.cognos.p2plb.clerver.actions.RemoteBalanceHandler">
- <service name="buxService">
- <forwarding delayBetweenAttempts="0" maxAttempts="1" retryOnNoProcess="false"/>
- <soapAction>icd</soapAction>
- </service>
- </handler>
- <handler name="check_if_stopped" classname="com.cognos.pogo.handlers.engine.AbortIfSuspendedHandler"/>
- <handler name="buxSessionHandler" classname="com.ibm.cognos.bux.buxservice.stax.BUXSessionHandler"/>
- <handler name="buxServiceHandler" classname="com.ibm.cognos.bux.buxservice.stax.BUXServiceHandler"/>
- <handler name="buxChainHandler" classname="com.cognos.pogo.handlers.logic.ChainHandler">
- <chain>
- <handler_ref name="check_if_stopped"/>
- <handler_ref name="pogo.auth_check"/>
- <handler_ref name="buxSessionHandler"/>
- <handler_ref name="buxServiceHandler"/>
- <handler_ref name="pogo.respond"/>
- </chain>
- </handler>
- </handlers>
- <soapActions>
- <soapAction path="icd" handler="buxService.buxChainHandler"/>
- </soapActions>
- <attributes>
- <attribute type="global">collaborationDiscoveryURI</attribute>
- <attribute type="global">bpmRestURI</attribute>
- </attributes>
- </service>
|