// create a new switch mediator
transformMediator = new TransformMediator();
// set xpath condition to select source
AXIOMXPath xpath = new AXIOMXPath("//m0:CheckPriceRequest");
xpath.addNamespace("m0", "http://www.apache-synapse.org/test");
transformMediator.setSource(xpath);
// set XSLT transformation URL
transformMediator.setXsltUrl(
new URL("file:///" + new File(".").getAbsolutePath() + "/../core/test-resources/misc/transform.xslt"));