Most of the time we found documentation referring to BPEL when it comes to set end point properties for adapters. BPEL and ESB share the same and they both can configured with same end point properties. Only thing we need to do is to open respective adapter’s .esbsvc file in notepad and add <endpointProperties> element as shown below.
</invocation>
<endpointProperties>
<property name="minimumDelayBetweenMessages">6000</property>
</endpointProperties>
</service>
Generally you can set endpoint properties “RetryCount” and “RetryInterval” apart from that if you have to add any other property you have to follow the route mentioned above.
I would suggest this trick, simply add any property which is available via UI and then open the file in notepad. This way JDeveloper already created that section and what all I have to do is to edit it with the right property name.


