было бы любезно, если бы кто-нибудь мог помочь мне с этим фрагментом xmlt.
Я хочу преобразовать этот кусок XML:
<root>
<rowdata>
<ID>1</ID>
<pxPages>
<rowdata>
<comment>comment 1</comment>
</rowdata>
</pxPages>
</rowdata>
<rowdata>
<ID>2</ID>
<pxPages>
<rowdata>
<comment>comment 2</comment>
</rowdata>
</pxPages>
</rowdata>
<rowdata>
<ID>2</ID>
<pxPages>
<rowdata>
<comment>comment 3</comment>
</rowdata>
</pxPages>
</rowdata>
</root>
в
<root>
<ResultOperationalStatusCategory>
<identifier>1</identifier>
<comment>comment 1</comment>
</ResultOperationalStatusCategory>
<ResultOperationalStatusCategory>
<identifier>2</identifier>
<comment>comment 2</comment>
<comment>comment 3</comment>
</ResultOperationalStatusCategory>
СПАСИБО!