Yes
this is pssible,Yes it is fairly straightforward and Yes it is fairly easy to
explain. Below are links sites that contain good tutorials on XSLT
http://www.zvon.org/xxl/XSLTutorial/Books/Book1/
--
PITHY WORDS OF WISDOM
A journey of a thousand miles begins with a cash
advance.
This posting is provided "AS IS" with no
warranties, and confers no rights. You assume all risk for your use. © 2002
Microsoft Corporation. All rights reserved.
Hello,
I
need help transforming a schema (which appears at the top of the XML
document). I also need to transform the XML data itself. I am
looking to "convert" the xml data from one type to another... you do this with
XSL correct?
I
have a little snippet of the schema which needs to be
transformed:
THIS:
<s:AttributeType name="CSHIP"
rs:number="3" rs:write="true">
<s:datatype
dt:type="number"
rs:dbtype="numeric"
dt:maxLength="19" rs:scale="0"
rs:precision="4"
rs:fixedlength="true"
rs:maybenull="false" />
NEEDS TO BECOME
THIS:
<s:AttributeType name="CSHIP"
rs:number="3" rs:nullable="true" rs:maydefer="true" rs:writeunknown="true">
<s:datatype dt:type="number" rs:dbtype="numeric" dt:maxLength="19" rs:scale="0" rs:precision="4"
rs:fixedlength="true" />
Is this possible,
fairly straight forward, easy to explain?
Thanks for the
help.
Karl
|