With the latest patch set of Oracle a new BPEL Activity got introduced. Well actual it's not a new feature but it's available as a item now in the Component pallet in JDeveloper. It's the checkpoint activity. It's the equivalent of the java call checkpoint();. This forces the Java thread to store it's current state in the dehydration store. In previous versions we would solve this by adding some java code into the process. Like below:
This is not needed any more. Now we can simply add a...