[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: zap some node s and change attribute

Subject: Re: zap some node s and change attribute
From: "Mukul Gandhi" <gandhi.mukul@xxxxxxxxx>
Date: Tue, 17 Oct 2006 20:44:46 +0530
Re:  zap some node s and change attribute
Please try the following stylesheet:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:output method="xml" indent="yes" />

<xsl:template match="node() | @*">
 <xsl:copy>
   <xsl:apply-templates select="node() | @*" />
 </xsl:copy>
</xsl:template>

<xsl:template match="*[local-name() = 'RICHIESTA_INFORMAZIONI_ASSISTITO']">
 <RICHIESTA_INFORMAZIONI_ASSISTITO
xmlns="http://regione.campania.it/schemas/cup">
   <xsl:copy-of select="@*[not(local-name() = 'idCup')]" />
   <xsl:attribute name="idCUP"><xsl:value-of select="@idCup" /></xsl:attribute>
   <ASSISTITO>
     <CodFiscale><xsl:value-of select="*[local-name() =
'ASSISTITO']/*[local-name() = 'CodFiscale']" /></CodFiscale>
   </ASSISTITO>
 </RICHIESTA_INFORMAZIONI_ASSISTITO>
</xsl:template>

</xsl:stylesheet>

I think above is probably the best way to solve this problem. But I
would be happy to see any better code.


On 10/17/06, Davide Antoni <davide.antoni@xxxxxxxxxxx> wrote:
HI to all

i need an'help:
i have this input:
<soapenv:Envelope
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <soapenv:Body>
     <RICHIESTA_INFORMAZIONI_ASSISTITO DataOra="200603072355" idCup="1"
idOperatore="GABRIELE" xmlns="http://services.standardcup.esel.it">
        <ASSISTITO>
           <Citta/>
           <CodFiscale>TRNCMN78S24F839Y</CodFiscale>
           <CodPostale/>
           <CodSanitario/>
           <Cognome/>
           <DataNascita/>
           <Domicilio/>
           <Email/>
           <Indirizzo/>
           <Nome/>
           <Provincia/>
           <Sesso></Sesso>
           <Stato/>
           <Telefono/>
           <e-mail/>
           <idImpegnativa/>
           <Urgenza/>
        </ASSISTITO>
     </RICHIESTA_INFORMAZIONI_ASSISTITO>
  </soapenv:Body>
</soapenv:Envelope>

and i need this output:

<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" >
  <soapenv:Body>
     <RICHIESTA_INFORMAZIONI_ASSISTITO
xmlns="http://regione.campania.it/schemas/cup" DataOra="200603072355"
idCUP="1" idOperatore="GABRIELE">
        <ASSISTITO>
           <CodFiscale>TRNCMN78S24F839Y</CodFiscale>
        </ASSISTITO>
     </RICHIESTA_INFORMAZIONI_ASSISTITO>
  </soapenv:Body>
</soapenv:Envelope>

It is possibile with voodoo xslt?
THANKS.


--
Regards,
Mukul Gandhi

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.