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
|