LibraryToggle FramesPrintFeedback

Configuring Fuse Services Framework-Specific WS-RM Attributes

Overview

To configure the Fuse Services Framework-specific attributes, use the rmManager Spring bean. Add the following to your configuration file:

  • The http://cxf.apache.org/ws/rm/manager namespace to your list of namespaces.

  • An rmManager Spring bean for the specific attribute that your want to configure.

Example 76 shows a simple example.

Example 76. Configuring Fuse Services Framework-Specific WS-RM Attributes

<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:wsrm-mgr="http://cxf.apache.org/ws/rm/manager"
      xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
 http://cxf.apache.org/ws/rm/manager http://cxf.apache.org/schemas/configuration/wsrm-manager.xsd">
...
<wsrm-mgr:rmManager>
<!--
  ...Your configuration goes here
-->
</wsrm-mgr:rmManager>

Children of the rmManager Spring bean

Table 24 shows the child elements of the rmManager Spring bean, defined in the http://cxf.apache.org/ws/rm/manager namespace.

Table 24. Children of the rmManager Spring Bean

ElementDescription
RMAssertionAn element of type RMAssertion
deliveryAssuranceAn element of type DeliveryAssuranceType that describes the delivery assurance that should apply
sourcePolicyAn element of type SourcePolicyType that allows you to configure details of the RM source
destinationPolicyAn element of type DestinationPolicyType that allows you to configure details of the RM destination

Example

For an example, see Maximum unacknowledged messages threshold.

Comments powered by Disqus