Re: Passing the Raw xml to a functoid?

Home Page Forums BizTalk 2004 – BizTalk 2010 Passing the Raw xml to a functoid? Re: Passing the Raw xml to a functoid?

#18265

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:complexType>
         <xs:sequence>
              <xs:element name="Name" type="xs:string" />
              <xs:element name="Value" type="xs:string" />
      </xs:sequence>
  </xs:complexType>
</xs:element>