Package org.reficio.ws.server

Examples of org.reficio.ws.server.OperationNotFoundException


            invokedOperation = getOperationByInputNames(rootNodes);
            if (invokedOperation != null) {
                return invokedOperation;
            }
        }
        throw new OperationNotFoundException("Cannot match a SOAP operation to the given SOAP request");
    }
View Full Code Here


    }

    private BindingOperation getOperationByRootQName(Set<Node> rootNodes) throws OperationNotFoundException {
        // check if only one root node exists
        if (rootNodes.isEmpty() || rootNodes.size() > 1) {
            throw new OperationNotFoundException("No unique top-level node containing the operation name in the rpc request.");
        }
        QName root = XmlUtils.nodeToQName(rootNodes.iterator().next());
        return matchElementNameToOperationName(root);
    }
View Full Code Here

TOP

Related Classes of org.reficio.ws.server.OperationNotFoundException

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.