Package org.apache.geronimo.cxf.client

Source Code of org.apache.geronimo.cxf.client.CXFServiceReference

/**
*  Licensed to the Apache Software Foundation (ASF) under one or more
*  contributor license agreements.  See the NOTICE file distributed with
*  this work for additional information regarding copyright ownership.
*  The ASF licenses this file to You under the Apache License, Version 2.0
*  (the "License"); you may not use this file except in compliance with
*  the License.  You may obtain a copy of the License at
*
*     http://www.apache.org/licenses/LICENSE-2.0
*
*  Unless required by applicable law or agreed to in writing, software
*  distributed under the License is distributed on an "AS IS" BASIS,
*  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*  See the License for the specific language governing permissions and
*  limitations under the License.
*/

package org.apache.geronimo.cxf.client;

import java.net.URI;
import java.net.URL;
import java.util.Map;

import javax.naming.NamingException;
import javax.xml.namespace.QName;
import javax.xml.ws.handler.HandlerResolver;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.apache.cxf.Bus;
import org.apache.cxf.BusFactory;
import org.apache.cxf.jaxws.context.WebServiceContextImpl;
import org.apache.geronimo.cxf.CXFCatalogUtils;
import org.apache.geronimo.cxf.CXFWebServiceContainer;
import org.apache.geronimo.gbean.AbstractName;
import org.apache.geronimo.jaxws.HandlerChainsUtils;
import org.apache.geronimo.jaxws.JAXWSAnnotationProcessor;
import org.apache.geronimo.jaxws.JNDIResolver;
import org.apache.geronimo.jaxws.client.EndpointInfo;
import org.apache.geronimo.jaxws.client.JAXWSServiceReference;
import org.apache.geronimo.jaxws.client.PortMethodInterceptor;
import org.apache.geronimo.jaxws.handler.GeronimoHandlerResolver;
import org.apache.geronimo.xbeans.javaee.HandlerChainsType;

public class CXFServiceReference extends JAXWSServiceReference {

    private static final Logger LOG = LoggerFactory.getLogger(CXFServiceReference.class);

    public CXFServiceReference(String serviceClassName,
                               String referenceClassName,
                               URI wsdlURI,
                               QName serviceQName,
                               AbstractName name,
                               String handlerChainsXML,
                               Map<Object, EndpointInfo> seiInfoMap) {
        super(handlerChainsXML, seiInfoMap, name, serviceQName, wsdlURI, referenceClassName, serviceClassName);       
    }
      
    @Override  
    public Object getContent() throws NamingException {
        Bus bus = CXFWebServiceContainer.getDefaultBus();
       
        URL catalogURL = getCatalog();
        if (catalogURL != null) {
            bus = BusFactory.newInstance().createBus();
            CXFCatalogUtils.loadOASISCatalog(bus, catalogURL);
            SAAJInterceptor.registerInterceptors(bus);
        } else {
            SAAJInterceptor.registerInterceptors();
        }
       
        BusFactory.setThreadDefaultBus(bus);
        try {
            return super.getContent();
        } finally {
            BusFactory.setThreadDefaultBus(null);
        }
    }
   
    protected HandlerChainsType getHandlerChains() {
        HandlerChainsType types = null;
        try {
            types = HandlerChainsUtils.getHandlerChains(this.handlerChainsXML);
        } catch (Exception e) {
            LOG.warn("Failed to deserialize handler chains", e);
        }
        return types;
    }

    protected HandlerResolver getHandlerResolver(Class serviceClass) {
        JAXWSAnnotationProcessor annotationProcessor =
                new JAXWSAnnotationProcessor(new JNDIResolver(), new WebServiceContextImpl());
        GeronimoHandlerResolver handlerResolver =
                new GeronimoHandlerResolver(classLoader, serviceClass, getHandlerChains(), annotationProcessor);
        return handlerResolver;
    }
   
    protected PortMethodInterceptor getPortMethodInterceptor() {
        return new CXFPortMethodInterceptor(this.seiInfoMap);
    }
   
}
TOP

Related Classes of org.apache.geronimo.cxf.client.CXFServiceReference

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.