Package org.oasisopen.sca

Examples of org.oasisopen.sca.ServiceUnavailableException


        if (remotable && distributedProvider != null) {
            return distributedProvider.createInvoker(operation);
        } else {
            Invoker invoker = getInvoker(endpointReference, operation);
            if (invoker == null) {
                throw new ServiceUnavailableException(
                                                      "Unable to create SCA binding invoker for local target " + component
                                                          .getName()
                                                          + " reference "
                                                          + reference.getName()
                                                          + " (bindingURI="
View Full Code Here


            try {
                wrapper = createInstanceWrapper();
                wrapper.start();
            } catch (Exception e) {
                wrapper = null;
                throw new ServiceUnavailableException(e);
            }
        }
        return wrapper;
    }
View Full Code Here

TOP

Related Classes of org.oasisopen.sca.ServiceUnavailableException

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.