Hi Nick,
Basically what I am trying to achieve is feeding in a batch of parameters into a custom functoid which also accepts a message string (from a config file).
The functoid then iterates through the supplied parameters and replaces any "Names" it matches with the "Value" for that paramater.
Basically I want an extended find and replace that runs from an indeterminate number of parameters.
Thanks for any ideas you may have.
Cheers
Stu.
Partial xsd:
– <xs:element minOccurs="0" maxOccurs="unbounded" name="Parameters">
<xs:element name="Name" type="xs:string" />
<xs:element name="Value" type="xs:string" />
</xs:sequence>
</xs:complexType>
</xs:element>