As pointed out by Jeremy PSUtilities is just a collection of services, written by PS to add functionality not included in the standard webMethods packages. Please have a look at [URL]wmusers.com for more details.
For storing and retrieving configurations there are diffrent approaches possible, all need to be coded anew. Some ideas are
- just have a flat file and tokenizer (as mentioned above)
- use Java properties.
- Store to a database
wit hfiles you need to consdier where to place th file to. Placing inside the package (config dir) means, it ghet’s deployed with the package, but this makes different configs in different environements (dev, test prod) difficult. Storing outside the package means more indepence, but you need to take care of deployment.
#Integration-Server-and-ESB#Flow-and-Java-services#webMethods