Package org.openbel.framework.ws.model

Examples of org.openbel.framework.ws.model.WebAPIService


            throw new IllegalStateException("TOMCAT_HTTP_PORT is invalid.");
        }
        String endpoint = format(ENDPOINT_FORMAT, Integer.parseInt(port));

        try {
            return new WebAPIService(new URL(endpoint), new QName(
                    "http://belframework.org/ws/schemas", "WebAPIService"))
                    .getWebAPISoap11();
        } catch (MalformedURLException e) {
            throw new IllegalStateException(format(
                    "endpoint URL %s is invalid.", endpoint));
View Full Code Here

TOP

Related Classes of org.openbel.framework.ws.model.WebAPIService

Copyright © 2018 www.massapicom. 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.