I am assuiming the flow service is complete, then you can inspect the physical file “flow.xml” and make head tail out of it.
Or the easiest way is to write a java service and traverse the pipeline some where in runtime…with something like
Object object = null;
IDataCursor idc = pipeline.getCursor();
if(idc.first(“object”))
object = idc.getValue();
if(object == null)
throw some exception
Then you need to dig further and check what is the type of Object that you have on hand, it could be array of objects or a node
3rd Option is try playing with pub.schema:validatePipeline
#Integration-Server-and-ESB#webMethods#Flow-and-Java-services