Custom XPath/XSLT Functions for Oracle App Server

Steps in creating custom XSL/XPath functions: This ones really handy… here are the steps: 1. Create a static inner class that implements IXPathFunction package customFunctions.sandeepphukan.test; import java.util.List; import com.oracle.bpel.xml.xpath.IXPathContext; import com.oracle.bpel.xml.xpath.IXPathFunction; import com.oracle.bpel.xml.xpath.XPathFunctionException; /** * A class that echoes the parameter * @author sphukan * */ public class echo { /** * XPath function */ … Continue reading