I would like to implement a loop based on a specific condition in webMethods.
I would to execute some steps in a loop if a specific condition is true
; for example the java code should be like this:
while(condition==true) {
//some action
}
How can I do it?