alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Apache CXF example source code file (JaxWsServiceConfigurationTest.java)

This example Apache CXF source code file (JaxWsServiceConfigurationTest.java) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Apache CXF tags/keywords

exception, hello, jaxwsserviceconfiguration, jaxwsserviceconfiguration, jaxwsservicefactorybean, jaxwsservicefactorybean, qname, qname, reflection, serviceinfo, soapbinding, string, string, test, util, webmethod

The Apache CXF JaxWsServiceConfigurationTest.java source code

/**
 * 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.cxf.jaxws.support;

import java.lang.reflect.Method;

import java.util.Iterator;

import javax.jws.WebMethod;
import javax.jws.WebService;
import javax.jws.soap.SOAPBinding;
import javax.wsdl.Definition;
import javax.wsdl.Service;
import javax.wsdl.factory.WSDLFactory;
import javax.wsdl.xml.WSDLReader;
import javax.xml.namespace.QName;

import org.apache.cxf.Bus;
import org.apache.cxf.binding.BindingFactoryManager;
import org.apache.cxf.catalog.CatalogWSDLLocator;
import org.apache.cxf.service.model.MessageInfo;
import org.apache.cxf.service.model.OperationInfo;
import org.apache.cxf.service.model.ServiceInfo;
import org.apache.cxf.transport.DestinationFactoryManager;
import org.apache.cxf.wsdl11.WSDLServiceBuilder;
import org.easymock.classextension.EasyMock;
import org.easymock.classextension.IMocksControl;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;

public class JaxWsServiceConfigurationTest extends Assert {


    @Before
    public void setUp() throws Exception {

    }

    @Test
    public void testGetInPartName() throws Exception {
        QName opName = new QName("http://cxf.com/", "sayHello");
        Method sayHelloMethod = Hello.class.getMethod("sayHello", new Class[]{String.class, String.class});
        ServiceInfo si = getMockedServiceModel("/wsdl/default_partname_test.wsdl");
        JaxWsServiceFactoryBean bean = new JaxWsServiceFactoryBean();
        bean.setServiceClass(Hello.class);
        JaxWsServiceConfiguration jwsc = (JaxWsServiceConfiguration) bean.getServiceConfigurations().get(0);
        jwsc.setServiceFactory(bean);
        
        OperationInfo op = si.getInterface().getOperation(opName);
        op.setInput("input", new MessageInfo(op, MessageInfo.Type.INPUT, 
                                             new QName("http://cxf.com/", "input")));
        op.setOutput("output", new MessageInfo(op, MessageInfo.Type.OUTPUT, 
                                               new QName("http://cxf.com/", "output")));
        
        QName partName = jwsc.getInPartName(op, sayHelloMethod, 0);
        assertEquals("get wrong in partName for first param", new QName("http://cxf.com/", "arg0"), partName);
        
        op.getInput().addMessagePart(new QName("arg0"));
        
        partName = jwsc.getInPartName(op, sayHelloMethod, 1);
        assertEquals("get wrong in partName for first param", new QName("http://cxf.com/", "arg1"), partName);
    }

    @Test
    public void testDefaultStyle() throws Exception {
        JaxWsServiceFactoryBean bean = new JaxWsServiceFactoryBean();
        bean.setServiceClass(HelloDefault.class);
        JaxWsServiceConfiguration jwsc = (JaxWsServiceConfiguration) bean.getServiceConfigurations().get(0);
        jwsc.setServiceFactory(bean);

        assertNull(jwsc.getStyle());
        assertEquals("document", bean.getStyle());
        assertNull(jwsc.isWrapped());
    }

    @Test
    public void testRPCStyle() throws Exception {
        JaxWsServiceFactoryBean bean = new JaxWsServiceFactoryBean();
        bean.setServiceClass(HelloRPC.class);
        JaxWsServiceConfiguration jwsc = (JaxWsServiceConfiguration) bean.getServiceConfigurations().get(0);
        jwsc.setServiceFactory(bean);
        
        assertEquals("rpc", jwsc.getStyle());
        assertFalse(jwsc.isWrapped());
    }

    @Test
    public void testDocumentWrappedStyle() throws Exception {
        JaxWsServiceFactoryBean bean = new JaxWsServiceFactoryBean();
        bean.setServiceClass(HelloWrapped.class);
        JaxWsServiceConfiguration jwsc = (JaxWsServiceConfiguration) bean.getServiceConfigurations().get(0);
        jwsc.setServiceFactory(bean);
        
        assertEquals("document", jwsc.getStyle());
        assertTrue(jwsc.isWrapped());
    }

    @Test
    public void testDocumentBareStyle() throws Exception {
        JaxWsServiceFactoryBean bean = new JaxWsServiceFactoryBean();
        bean.setServiceClass(HelloBare.class);
        JaxWsServiceConfiguration jwsc = (JaxWsServiceConfiguration) bean.getServiceConfigurations().get(0);
        jwsc.setServiceFactory(bean);
        
        assertEquals("document", jwsc.getStyle());
        assertFalse(jwsc.isWrapped());
    }

    @Test
    public void testGetOutPartName() throws Exception {
        QName opName = new QName("http://cxf.com/", "sayHi");
        Method sayHiMethod = Hello.class.getMethod("sayHi", new Class[]{});
        ServiceInfo si = getMockedServiceModel("/wsdl/default_partname_test.wsdl");
        JaxWsServiceConfiguration jwsc = new JaxWsServiceConfiguration();
        JaxWsServiceFactoryBean bean = new JaxWsServiceFactoryBean();
        bean.setServiceClass(Hello.class);
        jwsc.setServiceFactory(bean);
        
        // clear the output
        OperationInfo op = si.getInterface().getOperation(opName);
        op.setOutput("output", new MessageInfo(op, 
                                               MessageInfo.Type.OUTPUT,
                                               new QName("http://cxf.com/", "output")));
        
        QName partName = jwsc.getOutPartName(op, sayHiMethod, -1);
        assertEquals("get wrong return partName", new QName("http://cxf.com/", "return"), partName);
    }

    private ServiceInfo getMockedServiceModel(String wsdlUrl) throws Exception {
        WSDLReader wsdlReader = WSDLFactory.newInstance().newWSDLReader();
        wsdlReader.setFeature("javax.wsdl.verbose", false);
        Definition def = wsdlReader.readWSDL(new CatalogWSDLLocator(wsdlUrl));

        IMocksControl control = EasyMock.createNiceControl();
        Bus bus = control.createMock(Bus.class);
        BindingFactoryManager bindingFactoryManager = control.createMock(BindingFactoryManager.class);
        DestinationFactoryManager dfm = control.createMock(DestinationFactoryManager.class);
        WSDLServiceBuilder wsdlServiceBuilder = new WSDLServiceBuilder(bus);

        Service service = null;
        for (Iterator<?> it = def.getServices().values().iterator(); it.hasNext();) {
            Object obj = it.next();
            if (obj instanceof Service) {
                service = (Service) obj;
                break;
            }
        }

        EasyMock.expect(bus.getExtension(BindingFactoryManager.class)).andReturn(bindingFactoryManager);
        EasyMock.expect(bus.getExtension(DestinationFactoryManager.class)).andStubReturn(dfm);
        control.replay();

        ServiceInfo serviceInfo = wsdlServiceBuilder.buildServices(def, service).get(0);
        serviceInfo.setProperty(WSDLServiceBuilder.WSDL_DEFINITION, null);
        serviceInfo.setProperty(WSDLServiceBuilder.WSDL_SERVICE, null);
        return serviceInfo;
    }

    @WebService(name = "Hello", targetNamespace = "http://cxf.com/")
    @SOAPBinding(parameterStyle = javax.jws.soap.SOAPBinding.ParameterStyle.BARE, 
                 style = javax.jws.soap.SOAPBinding.Style.RPC, use = javax.jws.soap.SOAPBinding.Use.LITERAL)
    public interface Hello {
        @WebMethod(operationName = "sayHi", exclude = false)
        String sayHi();

        @WebMethod(operationName = "sayHello", exclude = false)
        String sayHello(String asdf1, String asdf2);
    }

    @WebService(name = "Hello", targetNamespace = "http://cxf.com/")
    public interface HelloDefault {
        @WebMethod(operationName = "sayHi", exclude = false)
        String sayHi();

        @WebMethod(operationName = "sayHello", exclude = false)
        String sayHello(String asdf1, String asdf2);
    }

    @SOAPBinding(style = javax.jws.soap.SOAPBinding.Style.RPC)
    public interface HelloRPC {
        String sayHi();
    }

    @SOAPBinding(style = javax.jws.soap.SOAPBinding.Style.DOCUMENT)
    public interface HelloWrapped {
        String sayHi();
    }

    @SOAPBinding(parameterStyle = javax.jws.soap.SOAPBinding.ParameterStyle.BARE,
                 style = javax.jws.soap.SOAPBinding.Style.DOCUMENT)
    public interface HelloBare {
        String sayHi();
    }
}

Other Apache CXF examples (source code examples)

Here is a short list of links related to this Apache CXF JaxWsServiceConfigurationTest.java source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.