[xsl] Merging attributes in one XML file with node values in another (identical structure)

Subject: [xsl] Merging attributes in one XML file with node values in another (identical structure)
From: "Minervini, Chris" <christopher.minervini@xxxxxxxxxx>
Date: Thu, 22 Jun 2006 09:59:41 -0400
O.K. here's my question.  It seems like it should be simple but I can't
figure it out.
I have two XML files. One with data in the node values, and one with
data in attributes. They have the same exact structure.

<a>
   <b>
      <node>1</node>
   </b>
   <c>
      <d>
         <node>2</node>
      </d>
   </c>
</a>

... and ...

<a>
   <b val="x">
      <node width="10"/>
   </b>
   <c>
      <d val="z">
         <node height="15"/>
      </d>
   </c>
</a>

As you can see the word "node" node appears at /a/b/node and a/c/d/node
but has two distinct values and attributes.
Is there a way to transform the first one with XSLT to produce the
following results:

<a>
   <b val="x">
      <node width="10">1</node>
   </b>
   <c>
      <d val="z">
         <node height="15">2</node>
      </d>
   </c>
</a>

...essentially combining the node values of one file with the attributes
in the other.
I've really been struggling with this. I was able to do it with
recursion, but I'm looking for a way to do it without using recursive
procedures. I don't think it's possible. Is it?

-----------------------------------------------------------------------------
-
This message is intended only for the personal and confidential use of the
designated recipient(s) named above.  If you are not the intended recipient of
this message you are hereby notified that any review, dissemination,
distribution or copying of this message is strictly prohibited.  This
communication is for information purposes only and should not be regarded as
an offer to sell or as a solicitation of an offer to buy any financial
product, an official confirmation of any transaction, or as an official
statement of Lehman Brothers.  Email transmission cannot be guaranteed to be
secure or error-free.  Therefore, we do not represent that this information is
complete or accurate and it should not be relied upon as such.  All
information is subject to change without notice.
----------
IRS Circular 230 Disclosure:
Please be advised that any discussion of U.S. tax matters contained within
this communication (including any attachments) is not intended or written to
be used and cannot be used for the purpose of (i) avoiding U.S. tax related
penalties or (ii) promoting, marketing or recommending to another party any
transaction or matter addressed herein.

Current Thread