|
-
February 17th, 2006, 02:49 PM
#1
How to create XSLT for my XML doc?
Hi,
I am a new comer to XSLT. I have a XML schema which look like this
<?xml version="1.0" encoding="utf-8"?>
<xs:schema targetNamespace="www.myCompany.com/XMLSchema" xmlns:f="www.mycompany.com/XMLSchema" xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
<xs:element name="xRecord">
<xs:complexType mixed="true">
<xs:sequence>
<xs:element name="CommentText" type="xs:string" minOccurs="0"/>
<xs:element name="OrganizationID" type="xs:string" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="xFunctionRecord">
<xs:complexType>
<xs:sequence>
<xs:element name="functionCommentText" type="xs:string" minOccurs="0"/>
<xs:element name="OrganizationID" type="xs:string" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
I need create a XSLT again this schema. Can anyone show me how to do that?
Thank you very much.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|