Hi, I’m new in biztalk and I need to solve this problem.
I’m receiving messages like this
[code:1:2024a571b6]<ns0:SCADA_MEDICION punto_medicion=\"punto_medicion_0\" />
<ns0:cromatografia poder_calorifico=\"10.4\" densidad=\"10.4\" />
</ns0:SCADA_MEDICION>[/code:1:2024a571b6]
Then I need to transform them to this one
[code:1:2024a571b6]<ns0:Medicion>
<Header>
<Punto_Medicion>Punto_Medicion_0</Punto_Medicion>
</Header>
<Tags>
<Tag>
<Description>poder_calorifico</Description>
<Value>10.4</Value>
</Tag>
<Tag>
<Description>densidad</Description>
<Value>10.4</Value>
</Tag>
</Tags>
</ns0:Medicion>[/code:1:2024a571b6]
Can I resolve the problem using schemas and maps? or I need to write some code?
Somebody can help me?
Thanks in advance.
Mauricio Bs. As – Argentina