[xsl] need help on trasformation

Subject: [xsl] need help on trasformation
From: Davide Antoni <davide.antoni@xxxxxxxxxxx>
Date: Tue, 17 Oct 2006 19:52:28 +0200
i have this input:
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/";>
<env:Body>
<cup:RISPOSTA_ELENCO_PRESTAZIONI xmlns:cup="http://regione.campania.it/schemas/cup";>
<cup:PRESTAZIONE>
<cup:CodMinisteriale>VISON</cup:CodMinisteriale>
<cup:CodInterno>2702</cup:CodInterno>
<cup:Denominazione>VISITA ONCOLOGICA</cup:Denominazione>
<cup:Branca>ONC</cup:Branca>
</cup:PRESTAZIONE>
</cup:RISPOSTA_ELENCO_PRESTAZIONI>
</env:Body>
</env:Envelope>


And i need this output:

<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/";>
<env:Body>
<RISPOSTA_PRESTAZIONI_EROGABILI xmlns="http://services.standardcup.esel.it";>


        <PRESTAZIONE>
           <PreparazioneUtente>VISON</PreparazioneUtente>
           <idPrestazione>2702</idPrestazione>
           <Denominazione>VISITA ONCOLOGICA</Denominazione>
           <AvvertenzeOperatore>ONC</AvvertenzeOperatore>
        </PRESTAZIONE>


</RISPOSTA_PRESTAZIONI_EROGABILI>


  </env:Body>
</env:Envelope>

Note: i have many of PRESTAZIONE.
Many Thanks To ALL.

Current Thread