Package org.codehaus.xfire.wsdl11

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

package org.codehaus.xfire.wsdl11;

import javax.wsdl.Definition;
import javax.wsdl.factory.WSDLFactory;

import junit.framework.TestCase;

import org.xml.sax.InputSource;

public class WSDLImportTest
    extends TestCase
{
    public void testImports() throws Exception
    {
    }
    public void xtestImports() throws Exception
    {
        Definition d = WSDLFactory.newInstance().newWSDLReader().readWSDL(
            new ResolverWSDLLocator(null, new InputSource(getClass().getResourceAsStream("echoImport.wsdl"))));
       
        assertNotNull(d);
    }
}
TOP

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

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.