XSLT, aby usunąć kopertę SOAP, ale pozostawić przestrzenie nazw

Muszę usunąć kopertę z mydłem z wiadomości z mydłem. W tym celu chcę używać XSLT, a nie java. Byłoby bardziej odpowiednim rozwiązaniem do obsługi takiego typu xml.

Na przykład Mam wiadomość z mydłem:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" 
                  xmlns:tar="namespace" 
                  xmlns:tar1="namespace">
    <soapenv:Header/>
    <soapenv:Body>
        <tar:RegisterUser>
            <tar1:Source>?</tar1:Source>
            <tar1:Profile>
                <tar1:EmailAddress>?</tar1:EmailAddress>

            </tar1:Profile>
        </tar:RegisterUser>
    </soapenv:Body>
</soapenv:Envelope>

Chcę, żeby moje dane wyjściowe wyglądały mniej więcej tak:

<tar:RegisterUser xmlns:tar="namespace" xmlns:tar1="namespace">
    <tar1:Source>?</tar1:Source>
    <tar1:Profile>
        <tar1:EmailAddress>?</tar1:EmailAddress>

    </tar1:Profile>
</tar:RegisterUser>

Czy ktoś może mi podać kilka pomysłów, jak to zrobić?

questionAnswers(2)

yourAnswerToTheQuestion