org.mule.module.cxf.support.CxfUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mule-module-cxf Show documentation
Show all versions of mule-module-cxf Show documentation
A Mule module for web service connectivity using CXF.
The newest version!
/*
* 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.cxf.support;
import org.mule.api.endpoint.EndpointNotFoundException;
import java.io.IOException;
import java.util.Iterator;
import java.util.List;
import org.apache.cxf.binding.soap.SoapVersion;
import org.apache.cxf.binding.soap.SoapVersionFactory;
import org.apache.cxf.endpoint.Endpoint;
import org.apache.cxf.interceptor.Interceptor;
import org.apache.cxf.message.Message;
import org.apache.cxf.phase.PhaseInterceptor;
import org.apache.cxf.service.model.EndpointInfo;
import org.apache.cxf.transport.ChainInitiationObserver;
import org.apache.cxf.transport.Destination;
import org.apache.cxf.transport.DestinationFactory;
import org.apache.cxf.transport.MessageObserver;
public final class CxfUtils
{
@SuppressWarnings("unchecked")
public static boolean removeInterceptor(List> inInterceptors, String name)
{
for (Interceptor> i : inInterceptors)
{
if (i instanceof PhaseInterceptor)
{
PhaseInterceptor p = (PhaseInterceptor)i;
if (p.getId().equals(name))
{
inInterceptors.remove(p);
return true;
}
}
}
return false;
}
public static Endpoint getEndpoint(DestinationFactory df, String uri)
throws IOException, EndpointNotFoundException
{
int idx = uri.indexOf('?');
if (idx != -1)
{
uri = uri.substring(0, idx);
}
EndpointInfo ei = new EndpointInfo();
ei.setAddress(uri);
Destination d = df.getDestination(ei);
if (d.getMessageObserver() == null)
{
// TODO is this the right Mule exception?
throw new EndpointNotFoundException(uri);
}
MessageObserver mo = d.getMessageObserver();
if (!(mo instanceof ChainInitiationObserver))
{
throw new EndpointNotFoundException(uri);
}
ChainInitiationObserver co = (ChainInitiationObserver) mo;
return co.getEndpoint();
}
public static String getBindingIdForSoapVersion(String version)
{
Iterator soapVersions = SoapVersionFactory.getInstance().getVersions();
while(soapVersions.hasNext())
{
SoapVersion soapVersion = soapVersions.next();
if(Double.toString(soapVersion.getVersion()).equals(version))
{
return soapVersion.getBindingId();
}
}
throw new IllegalArgumentException("Invalid Soap version " + version);
}
public static String mapUnsupportedSchemas(String url)
{
//hack for CXF to work correctly with servlet and jetty urls
if(url != null)
{
url = url.replace("servlet://", "http://");
url = url.replace("jetty://", "http://");
url = url.replace("jetty-ssl://", "https://");
}
return url;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy