xsl-list
[Top] [All Lists]

Re: [xsl] Adding targetNamespace to schema

2006-05-22 05:59:17
Hi,

There is nothing special with the targetNamespace attribute, you should add it as you add any other attribute, for instance:

<xsl:template match="/">
  <xs:schema targetNamespace="myTargetNamespace" ...

</xsl:template>

or using xsl:attrinute

<xsl:template match="/">
  <xs:schema ...>
    <xsl:attribute name="targetNamespace">myTargetNamespace</xsl:attribute>
</xsl:template>

You have to pay attention when you make references to components from this schema as those should be qualified names thus their names should resolve to the correct namespace (target namespace) in the context they are written in.

Best Regards,
George
---------------------------------------------------------------------
George Cristian Bina
<oXygen/> XML Editor, Schema Editor and XSLT Editor/Debugger
http://www.oxygenxml.com


Georg Hohmann wrote:
Hello,

i'm new to this list and i apologize in advance if my questions has
been covered a hundred times before. But for the lack of a search
function for the list (or was i too blind to find it?) it's not very
easy for a newbie to check this.

I want to generate a schema out of a normal xml-file. The source
document has a different namespace as the xml files for which the
resulting schema should be suitable for. Most of the conversion (with
Saxon8) works fine, but i simply don't now how to add the
"targetNamespace"-attribute to the "xs:schema"-root tag of the result
document using XSLT.

So i would be thankful if someone could give me a hint how to solve this.

Regards,
G. Hohmann

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>