/** * Copyright (C) 2010 eXo Platform SAS. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.xcmis.wssoap.impl.server; import org.apache.cxf.endpoint.ServerImpl; import org.apache.cxf.interceptor.LoggingInInterceptor; import org.apache.cxf.interceptor.LoggingOutInterceptor; import org.xcmis.spi.utils.Logger; import org.xcmis.wssoap.impl.ACLServicePortImpl; import org.xcmis.wssoap.impl.DiscoveryServicePortImpl; import org.xcmis.wssoap.impl.MultiFilingServicePortImpl; import org.xcmis.wssoap.impl.NavigationServicePortImpl; import org.xcmis.wssoap.impl.ObjectServicePortImpl; import org.xcmis.wssoap.impl.PolicyServicePortImpl; import org.xcmis.wssoap.impl.RelationshipServicePortImpl; import org.xcmis.wssoap.impl.RepositoryServicePortImpl; import org.xcmis.wssoap.impl.VersioningServicePortImpl; import java.util.ArrayList; import java.util.List; import javax.jws.WebService; import javax.xml.ws.Endpoint; /** * @author <a href="mailto:alexey.zavizionov@exoplatform.com.ua">Alexey * Zavizionov</a> * @version $Id: WebServiceLoader.java 2 2010-02-04 17:21:49Z andrew00x $ */ public class WebServiceLoader { /** * Logger. */ private static final Logger LOG = Logger.getLogger(WebServiceLoader.class); /** * Constructs instance of WebServiceLoader. * */ public WebServiceLoader() { } /** * Register all available container components in a CXF engine from Servlet. * */ public void init() { this.init(null); } /** * Register all available container components in a CXF engine from Servlet * with given baseURL. * * @param baseURL string base URL */ public void init(String baseURL) { List<Object> services = new ArrayList<Object>(); services.add(new ACLServicePortImpl()); services.add(new DiscoveryServicePortImpl()); services.add(new MultiFilingServicePortImpl()); services.add(new NavigationServicePortImpl()); services.add(new ObjectServicePortImpl()); services.add(new PolicyServicePortImpl()); services.add(new RelationshipServicePortImpl()); services.add(new RepositoryServicePortImpl()); services.add(new VersioningServicePortImpl()); for (Object implementor : services) { String address = getAddress(baseURL, implementor); if (address != null) { deployService(address, implementor); LOG.info("New singleton WebService '" + address + "' registered."); } } } /** * Get service address with WebService annotation for implementor. * * @param baseURL string base URL * @param implementor object implementor * @return address string */ private String getAddress(String baseURL, Object implementor) { Class<?> iclass = implementor.getClass(); String serviceName = iclass.getAnnotation(WebService.class).serviceName(); String portName = iclass.getAnnotation(WebService.class).portName(); if (LOG.isDebugEnabled()) { LOG.debug(" serviceName = " + serviceName); LOG.debug(" portName = " + portName); } StringBuilder address = new StringBuilder(); if (baseURL != null && baseURL.length() != 0) { address.append(baseURL); } if (serviceName != null && serviceName.length() != 0) { address.append('/'); address.append(serviceName); } if (portName != null && portName.length() != 0) { address.append('/'); address.append(portName); } if (LOG.isDebugEnabled()) { LOG.debug("getAddress() - address = " + address); LOG.debug("getAddress() - implementor = " + implementor); } return address.toString(); } /** * Simple deploy service. Uses Endpoint class. * * @param address string service address * @param object service object * @return endpoint Endpoint */ public static Endpoint simpleDeployService(String address, Object object) { if (LOG.isDebugEnabled()) { LOG.debug("Starting Service: object = " + object + " at the address = " + address); } Endpoint endpoint = Endpoint.publish(address, object); if (LOG.isDebugEnabled()) { org.apache.cxf.jaxws.EndpointImpl endpointImpl = (org.apache.cxf.jaxws.EndpointImpl)endpoint; ServerImpl server = endpointImpl.getServer(); server.getEndpoint().getInInterceptors().add(new LoggingInInterceptor()); server.getEndpoint().getOutInterceptors().add(new LoggingOutInterceptor()); } if (endpoint.isPublished()) { LOG.info("The webservice '" + address + "' has been published SUCCESSFUL!"); } return endpoint; } /** * Simple deploy service. Uses Endpoint class. * * @param address string service address * @param object service object * @return endpoint Endpoint */ static Endpoint deployService(String address, Object object) { if (LOG.isDebugEnabled()) { LOG.debug("Starting Service: object = " + object + " at the address = " + address); } Endpoint endpoint = Endpoint.publish(address, object); if (LOG.isDebugEnabled()) { org.apache.cxf.jaxws.EndpointImpl endpointImpl = (org.apache.cxf.jaxws.EndpointImpl)endpoint; ServerImpl server = endpointImpl.getServer(); server.getEndpoint().getInInterceptors().add(new LoggingInInterceptor()); server.getEndpoint().getOutInterceptors().add(new LoggingOutInterceptor()); } if (endpoint.isPublished()) { LOG.info("The webservice '" + address + "' has been published SUCCESSFUL!"); } return endpoint; } }