Coverage Report - org.kuali.rice.ksb.messaging.serviceexporters.SOAPServiceExporter
 
Classes in this File Line Coverage Branch Coverage Complexity
SOAPServiceExporter
0%
0/26
0%
0/2
2.5
 
 1  
 /*
 2  
  * Copyright 2005-2007 The Kuali Foundation
 3  
  *
 4  
  *
 5  
  * Licensed under the Educational Community License, Version 2.0 (the "License");
 6  
  * you may not use this file except in compliance with the License.
 7  
  * You may obtain a copy of the License at
 8  
  *
 9  
  * http://www.opensource.org/licenses/ecl2.php
 10  
  *
 11  
  * Unless required by applicable law or agreed to in writing, software
 12  
  * distributed under the License is distributed on an "AS IS" BASIS,
 13  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 14  
  * See the License for the specific language governing permissions and
 15  
  * limitations under the License.
 16  
  */
 17  
 package org.kuali.rice.ksb.messaging.serviceexporters;
 18  
 
 19  
 
 20  
 import org.apache.cxf.Bus;
 21  
 import org.apache.cxf.aegis.databinding.AegisDatabinding;
 22  
 import org.apache.cxf.endpoint.ServerRegistry;
 23  
 import org.apache.cxf.frontend.ServerFactoryBean;
 24  
 import org.apache.cxf.interceptor.LoggingInInterceptor;
 25  
 import org.apache.cxf.interceptor.LoggingOutInterceptor;
 26  
 import org.apache.cxf.jaxws.JaxWsServerFactoryBean;
 27  
 import org.apache.log4j.Logger;
 28  
 import org.kuali.rice.core.api.exception.RiceRuntimeException;
 29  
 import org.kuali.rice.ksb.api.bus.ServiceDefinition;
 30  
 import org.kuali.rice.ksb.api.bus.support.SoapServiceDefinition;
 31  
 import org.kuali.rice.ksb.security.soap.CXFWSS4JInInterceptor;
 32  
 import org.kuali.rice.ksb.security.soap.CXFWSS4JOutInterceptor;
 33  
 
 34  
 
 35  
 /**
 36  
  *
 37  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 38  
  */
 39  
 public class SOAPServiceExporter extends AbstractWebServiceExporter implements ServiceExporter {
 40  
 
 41  0
         static final Logger LOG = Logger.getLogger(SOAPServiceExporter.class);
 42  
                 
 43  
         public SOAPServiceExporter(SoapServiceDefinition serviceDefinition, Bus cxfBus, ServerRegistry cxfServerRegistry) {
 44  0
             super(serviceDefinition, cxfBus, cxfServerRegistry);
 45  0
         }
 46  
 
 47  
         /**
 48  
          * This publishes the cxf service onto the cxf bus.
 49  
          * 
 50  
          * @param serviceImpl
 51  
          * @throws Exception
 52  
          */
 53  
         @Override
 54  
     public void publishService(ServiceDefinition serviceDefinition, Object serviceImpl, String address) {
 55  
                 ServerFactoryBean svrFactory;
 56  
                 
 57  0
                 SoapServiceDefinition soapServiceDefinition = (SoapServiceDefinition)serviceDefinition;
 58  
                 
 59  
                 //Use the correct bean factory depending on pojo service or jaxws service
 60  0
                 if (soapServiceDefinition.isJaxWsService()){
 61  0
                         LOG.info("Creating JaxWsService " + soapServiceDefinition.getServiceName());
 62  0
                         svrFactory = new JaxWsServerFactoryBean();
 63  
                 } else {
 64  0
                         svrFactory = new ServerFactoryBean();
 65  
                         
 66  
                         //JAXB Binding not supported for pojo service (CXF-897)
 67  0
                         svrFactory.getServiceFactory().setDataBinding(new AegisDatabinding());
 68  
                 }
 69  
         
 70  0
                 svrFactory.setBus(getCXFBus());
 71  0
                 svrFactory.setServiceName(soapServiceDefinition.getServiceName());
 72  0
                 svrFactory.setAddress(address);
 73  0
                 svrFactory.setPublishedEndpointUrl(soapServiceDefinition.getEndpointUrl().toExternalForm());
 74  0
                 svrFactory.setServiceBean(serviceImpl);
 75  
                 
 76  
                 try {
 77  0
                         svrFactory.setServiceClass(Class.forName(soapServiceDefinition.getServiceInterface()));
 78  0
                 } catch (ClassNotFoundException e) {
 79  0
                         throw new RiceRuntimeException("Failed to publish service " + soapServiceDefinition.getServiceName() + " because service interface could not be loaded: " + soapServiceDefinition.getServiceInterface(), e);
 80  0
                 }
 81  
                 
 82  
                 //Set logging and security interceptors
 83  0
                 svrFactory.getInInterceptors().add(new LoggingInInterceptor());
 84  0
                 svrFactory.getInInterceptors().add(new CXFWSS4JInInterceptor(soapServiceDefinition.getBusSecurity()));
 85  
                 
 86  0
                 svrFactory.getOutInterceptors().add(new LoggingOutInterceptor());
 87  0
                 svrFactory.getOutInterceptors().add(new CXFWSS4JOutInterceptor(soapServiceDefinition.getBusSecurity()));
 88  
                 
 89  0
                 svrFactory.getInFaultInterceptors().add(new CXFWSS4JInInterceptor(soapServiceDefinition.getBusSecurity()));
 90  0
                 svrFactory.getOutFaultInterceptors().add(new CXFWSS4JOutInterceptor(soapServiceDefinition.getBusSecurity()));
 91  
                 
 92  0
                 svrFactory.create();
 93  0
         }
 94  
 
 95  
 }