Importing SOA 11g standard XPath Functions into OSB 11g

Ok, so heres the problem. OSB 11g and SOA 11g XPath functions are not in Sync.  So, XSLTs that were developed in SOA 10g cannot be used directly in OSB 11g. One of the strong cases for this is the migration of all ESB based artifacts to OSB artifacts. One of the easiest  ways of … Continue reading

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