I have the following question:
How do I get access to a schema stored in Tamino at run time?
The scenario is that I want to create a generic method of taking a schema and then creating an XML instance that is a subset of a large XML document by navigating through the smaller schema to identify which values from the big schema are needed for the smaller XML document:
EG, if the biger schema contained “FirstName”, “Initial”, “LastName”, and there was a schema that contained only “FirstName” and “LastName”.
If I wanted to dynamically identify the nodes that I need to extract values from in the big XML document, I could do this by navigating through the smaller SCHEMA, and generating an XQuery dynamically as I identify the nodes in the smaller schema.
Another option is to generate a blank XML instance. How can I do this dynamically at run time?
How would I do this?
Stuart King
#Tamino#webMethods#API-Management