Wrox Programmer Forums
Go Back   Wrox Programmer Forums > XML > XSLT
|
XSLT General questions and answers about XSLT. For issues strictly specific to the book XSLT 1.1 Programmers Reference, please post to that forum instead.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the XSLT section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old May 15th, 2012, 05:01 AM
Registered User
 
Join Date: May 2012
Posts: 6
Thanks: 1
Thanked 0 Times in 0 Posts
Smile Generate the XML with given XSD

Hi All,

Im bit new to XML world, so I may asking dumb questions here.. sorry for that :)

Im getting search request through a XML file, I should extract those search parameters from it and perform the search against the DB and populate results back in a XML file. When creating this response XML file I must adhere to the given XSD file.

Here what I wanted to know is, Constructing the response message in XML while adhering to the XSD. How can I do this using a XSLT?


And whole this process should happen in programmatically in Java.

Any help will be greatly appreciated...

Any ideas for this..?

Last edited by kushanxp; May 16th, 2012 at 02:03 AM..
 
Old May 16th, 2012, 02:03 AM
Registered User
 
Join Date: May 2012
Posts: 6
Thanks: 1
Thanked 0 Times in 0 Posts
Question

Here what I wanted to know is, Constructing the response message in XML while adhering to the XSD. How can I do this using a XSLT?
 
Old May 16th, 2012, 03:00 AM
mhkay's Avatar
Wrox Author
 
Join Date: Apr 2004
Posts: 4,962
Thanks: 0
Thanked 292 Times in 287 Posts
Default

If you want to be sure that your result document conforms to a schema, use an XSLT 2.0 schema-aware transformation; use xsl:import-schema to import the schema, and use validation='strict' on the outermost element written to the result tree. Of course, this only validates that the output you are generating conforms to the schema; it won't generate the output for you.
__________________
Michael Kay
http://www.saxonica.com/
Author, XSLT 2.0 and XPath 2.0 Programmer\'s Reference
The Following User Says Thank You to mhkay For This Useful Post:
kushanxp (May 16th, 2012)
 
Old May 16th, 2012, 09:50 AM
Registered User
 
Join Date: May 2012
Posts: 6
Thanks: 1
Thanked 0 Times in 0 Posts
Default

Quote:
Originally Posted by mhkay View Post
If you want to be sure that your result document conforms to a schema, use an XSLT 2.0 schema-aware transformation; use xsl:import-schema to import the schema, and use validation='strict' on the outermost element written to the result tree. Of course, this only validates that the output you are generating conforms to the schema; it won't generate the output for you.
Thanks for the help, Will do as you said.. :)





Similar Threads
Thread Thread Starter Forum Replies Last Post
XML to XSD gagsy Pro Java 0 March 3rd, 2008 02:38 AM
XML validation with XSD ksskumar XML 0 October 12th, 2007 04:46 AM
XML To XML, using XSL & XSD supercop75 XSLT 1 April 8th, 2006 02:48 AM
ASP with xml (along with .xsd) software_developer_kk Classic ASP Basics 0 April 18th, 2005 12:48 AM
Converting xsd to xml lxu XML 0 June 4th, 2004 12:31 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.