With TCL procs, sets of arguments can be passed in using the syntax:
{ {NAME xxx} {VALUE xxx} }
{ {NAME xxx} {VALUE xxx} }
However, when I try to pass the same arguments to a Java proc, the userArgs PropertyTree looks like this:
{CLASS com.mmmhis.cloverleaf.upoc.HttpGetTPS} {{{NAME name1}} {VALUE value1}} {{{NAME name2}} {VALUE value2}}
Here is what I’m trying to do: I’ve got a TPS that POSTs a message to a server via HTTPS. I’d like to pass to the TPS the arguments to construct the URL. For example, I’d like to pass the URL as one argument and the URL parameters as a set of arguments ( ie. {{NAME param1} {VALUE value1}} {{NAME param2} {VALUE value2}} …).
I’m already able to achieve the expected behavior by passing the URL parameters as a single TPS argument. I’m just wondering if this behavior is supported and I’m just not configuring it correctly.
Cheers,
Kyley