Reputation: 1
i'm new to SOA and i did some readings but i was not able to answer the following :
i want to call some web services in a specific order. the information needed to call each web service and the order of the call are ONLY known at run time through Database.so the flow would be
Upvotes: 0
Views: 70
Reputation: 732
Yes, you might be able to use a combination of while and switch.
The number of times your while loop executes and which of the paths under switch executes in each iteration would be determined based on your database call before the while loop.
See: http://docs.oracle.com/cd/E29597_01/dev.1111/e10224/bp_conditn.htm https://docs.oracle.com/cd/E23943_01/dev.1111/e10224/bp_conditn.htm#SOASE472
Upvotes: 1