Package org.codehaus.xfire.wsdl11

Source Code of org.codehaus.xfire.wsdl11.DocLitWSDLTest

package org.codehaus.xfire.wsdl11;

import javax.xml.namespace.QName;

import org.codehaus.xfire.aegis.AbstractXFireAegisTest;
import org.codehaus.xfire.service.Service;
import org.codehaus.xfire.test.Echo;

/**
* @author <a href="mailto:dan@envoisolutions.com">Dan Diephouse</a>
*/
public class DocLitWSDLTest
    extends AbstractXFireAegisTest
{
    public void testWSDL()
        throws Exception
    {
        Service service = getServiceFactory().create(Echo.class,
                                                     new QName("urn:xfire:wsdl", "EchoService"),
                                                     getClass().getResource("echoDocLit.wsdl"),
                                                     null);
       
       
    }
}
TOP

Related Classes of org.codehaus.xfire.wsdl11.DocLitWSDLTest

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.