<< sample on how to create property file >> // saving into property file Properties p = new Properties(); FileOutputStream fos = new FileOutputStream("fileName")); p.put("property1", "value1"); p.put("property2", "value2");
p.save(fos, "user defined config file");
Store the parameter values in a delimited text file and include a file reader plugin in your transform. In your custom plugin you can then expose the parameters needed as input fields. - Another option is to use the RPC client (which is a blocking call) to read the parameters from an RPC Server
Issue/Introduction
I have created a custom plugin.How do I pass in values to this plugin?
Environment
Product: TIBCO MessageBroker
Version: 4.1, 3.2.1.4
OS: All
--------------------