Skip to main content

Posts

Showing posts with the label Oracle BPM 12c. OracleBPM

Write Java Code inside XSL of Oracle BPM

This post talks about writing custom xsl functions using Java in Oracle BPM process. Please check my previous post on creating custom XSL functions in Oracle SOA/BPEL process. Below example explains about creating XSL function for finding age of person based on Date Of Birth input. Step1 : Create a BPM Synchronous process inside Jdeveloper BPM studio.Something like shown in below. I took very basic example,since the main aim is to create Custom XSL function based on Java code.    i) XSD created to handle input and output of BPM process is :   1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 <?xml version="1.0" encoding="windows-1252" ?> <xsd:schema xmlns:xsd= "http://www.w3.org/2001/XMLSchema" xmlns:tns= "http://ande.prabhas.org/xsd/v1" targetNamespace= "http://ande.prabhas.org/xsd/v1" elementFormDefault= "qualified" &g