Package org.mule.extras.client

Examples of org.mule.extras.client.MuleClient.dispatchDirect()


        MuleClient client = new MuleClient();
        DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
        dbf.setNamespaceAware(true);
        Document soap = dbf.newDocumentBuilder().parse(ClassUtils.getResourceAsStream("asyncRequest.xml", getClass()));
        Map props = new HashMap();
        client.dispatchDirect("pxe", new DOMSource(soap.getDocumentElement()), props);
        //TODO apart from there being no exception how do I verify the result??
    }
}
View Full Code Here

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.