Doorgaan naar hoofdcontent

Posts

Posts uit februari, 2009 tonen

XSLT Unit Testing

I like test driven development and automatic testing, so also for my XSLT code. I wanted to do this also within Oracle SOA Suite. Unfortunately this comes not out-of-the-box from the SOA Suite, so i searched the Net. Eventually i came to XMLUnit  1.2, whcih is an extension of JUnit (version 3.8.2). This framework contains some extension functions especially for XML, like transformations. Configuration First you have to configure XMLUnit to use the Oracle XSLT classes: System.setProperty("javax.xml.parsers.DocumentBuilderFactory", "oracle.xml.jaxp.JXDocumentBuilderFactory"); System.setProperty("javax.xml.parsers.SAXParserFactory", "oracle.xml.jaxp.JXSAXParserFactory"); System.setProperty("javax.xml.transform.TransformerFactory", "oracle.xml.jaxp.JXSAXTransformerFactory"); Implementing a test case Extend from XMLTestCase: public class MyTestCase extends XMLTestCase Configure namespaces (this can be done within the setup() method

Oracle SOA Suite: Adding a custom XSL Function to ESB

Sometimes you need a function within the XSLT that is not available within the standard XPath/XSLT functions or within the Oracle extensions, so you have to make an extension. This post explains how this can be done (within 10.1.3.x). 1) Create Java class that implements the extension function. You must inherit from IXPathFunction. Note: To be able to test your function within JDeveloper you have to add the Orabpel.jar and Orabpel-common.jar libraries. 2) To be able to "see" the function within JDeveloper to have to create a extension function config file: Within JDeveloper go to "Tools - Preferences" and select XSL Maps. Browse to the config file and restart JDeveloper afterwards. Within the component view you can see the extension function: 3) Use within the XSL file. Add the namespace of the extension function: xmlns:ext="http://www.oracle.com/XSL/Transform/java/ .CizBase64Encoder" And then use with the XSL code: 4) Add to SOA Suite runtime. To be able