All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.mule.module.ws.consumer.NamespaceSaverStaxInterceptor Maven / Gradle / Ivy

/*
 * Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
 * The software in this package is published under the terms of the CPAL v1.0
 * license, a copy of which has been included with this distribution in the
 * LICENSE.txt file.
 */
package org.mule.module.ws.consumer;

import org.mule.module.cxf.support.StreamClosingInterceptor;

import javax.xml.soap.SOAPConstants;
import javax.xml.stream.XMLStreamReader;

import org.apache.cxf.interceptor.Fault;
import org.apache.cxf.interceptor.StaxInInterceptor;
import org.apache.cxf.message.Message;
import org.apache.cxf.phase.AbstractPhaseInterceptor;
import org.apache.cxf.phase.Phase;

/**
 * CXF interceptor that wraps the XML Stream with a decorator that is able to restore namespace declarations for fragments
 */
public class NamespaceSaverStaxInterceptor extends AbstractPhaseInterceptor
{
    public NamespaceSaverStaxInterceptor()
    {
        super(Phase.POST_STREAM);
        getAfter().add(StreamClosingInterceptor.class.getName());
        getAfter().add(StaxInInterceptor.class.getName());
    }

    public void handleMessage(Message message) throws Fault
    {
        XMLStreamReader reader = message.getContent(XMLStreamReader.class);

        if (reader != null)
        {
            NamespaceRestorerXMLStreamReader replacement = new NamespaceRestorerXMLStreamReader(reader)
                    .blackList(SOAPConstants.URI_NS_SOAP_1_1_ENVELOPE)
                    .blackList(SOAPConstants.URI_NS_SOAP_1_2_ENVELOPE);

            message.setContent(XMLStreamReader.class, replacement);
            message.setContent(NamespaceRestorerXMLStreamReader.class, replacement);
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy