Hi,
I want to list all the services (which are being called in the action), of ALL processing rules.
Can please some one help me in this, if there is any util (java) in place.
Env. Details : webM V 7.1.3
Thank you,
Naidu
Hi,
I want to list all the services (which are being called in the action), of ALL processing rules.
Can please some one help me in this, if there is any util (java) in place.
Env. Details : webM V 7.1.3
Thank you,
Naidu
There is no built in way or utility to retrieve the processing rules action/definitionsā¦
May be you can check more on the TN DB tables see if you can explore more on there:
HTH,
RMG
I could see a column defined in the table āProcessing Ruleā as āRuleData BLOB NULLā that carries blob data. I donāt have an env where I can see the content of this blob, but looks like only in this the information about action will be stored. I donāt see any other relevant tables where this is being stored. Give it a try to read this blob and see if that helps you figure out what you are looking forā¦
HTH
Senthil
Thank you CityB,
Using Toad, even I donāt have permission to look into blob.(added its a HeavyBlob data) Will workout using java.
thanks,
Naidu
You can take some help from DBA.
Hi,Built in flow service wm.tn.route:list returns a list of all the processing rules. In fact itās a vector of RoutingRuleMetaData objects, IData API can be used to access the elements. Then wm.tn.route:getRule can be used to get the processing service/actions by rule internal ID or rule name.Regards,rhm
Yes this is a another custom program way to do this but not straight forward though dealing with APIās etcā¦
HTH,
RMG