I’m not near my machine so I’m typing this from my phone, but I’m certain there is a service available in WmPublic or WmRoot. I cannot recall if the Pre-upgrade Analyzer tool can do this.
Having said that, the option that will certainly work is to -
- Use a Linux command using “find” and “xargs”, to search for the property in the node.ndf file of the flow services, from the backend
- You then use the executeOSCommand built-in service, to execute the aforesaid command
- This needs a config change in WmPublic/config/OSCommands.cnf (filename is from my memory, so it could vary slightly) folder, to allow this command
The equivalent XML tag for this pipeline property in the node.ndf file should be something like “pipeline_option” and it’s values range from 0, 1, etc., for the various property options. You can test and get the exact values.
Example - find ./ -type f -name node.ndf | xargs grep “pipeline_option>1”
If you don’t really need to run this as a flow service but only want a list of services that have the pipeline set, just run that command from the packages folder to get a list and you’re good.
Note - This is a roundabout solution, so I’ll still suggest that you look through the Public or Root packages, or I can check this for you tomorrow.
KM
#webMethods#Integration-Server-and-ESB#Service-Designer