|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: Default namespace problem
> XML: > <OrderRequest xmlns:bt="http://www.csgsystems.com/bta"> > > Works fine!! > > But if XML has a default namespace instead: > > XML: > <OrderRequest xmlns="http://www.csgsystems.com/bta"> > Those two OrderRequest elements are *very* different. The first is in no namespace (or the same as its parent), the second is explicitly in the {ttp://www.csgsystems.com/bta} namespace. If your XSLT matches OrderRequest in no namespace (which it probably does if the first XML works) then when you try to run it against the second version it will not match. In order to match you would have to change your XSLT to match="bt:OrderRequest" where bt has been bound to the correct URI (which it has from the excerpt you originally posted). Hope this helps. -Peter
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|






