Our Web Service standards specify the inclusion of a complex element within the

Certified Senior Developer
Our Web Service standards specify the inclusion of a complex element within the SOAPHeader that can include any number of elements. Some elements are mandatory for all services whilst some could be specific to an individual service. The header is defined as follows:

<xs:element name="MetaDataHeader">
<xs:complexType>
<xs:sequence>
<xs:any namespace="##targetNamespace" processContents="lax" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>

When referencing this service using a Call Web Service smart node we can see the 'MetaDataHeader' CDT with a child field '@any' of type Text.

My question is how do we populate this with the required elements and values?
Do we have to explicitly specify all the elements in the CDT (but then this is a common header with potentially different contents for different services)?
Do we have to explicitly specify all the elem...

OriginalPostID-114135

OriginalPostID-114135

  Discussion posts and replies are publicly visible