Removing message mappers

To remove a message mapper, you must manually remove it from the group of message mappers in the instance_name.xml file. To remove a message mapper, do the following:

  1. Open the instance_name.xml configuration file.
  2. Locate the component with the name MessageMapperGroup.
  3. Locate the XML configuration node for the message mapper that you want to remove. It will look similar to the following:
    <MessageMapper messageMapperId="#"
            classname="class inplementing MessageMapper interface"
            enable="true"
            name="Name of Message Mapper">
        <configuration />
        </MessageMapper>
    
  4. Change the enable parameter to "false". This will disable the message mapper and make it unavailable for use.