Hi, On Dec 10, 2007 12:57 AM, Patrick O'Brian <[EMAIL PROTECTED]> wrote: > I'm tryin to format the info of a personal xsl with featurelist widget. > the problem is that any direct reference to my layer causes an exception. > > uncaught exception: [Exception... "Component returned failure code: > 0x80600001 [nsIXSLTProcessor.importStylesheet]" nsresult: "0x80600001 > (<unknown>)" location: "JS frame :: > http://localhost:8080/mapbuilder/lib/util/Util.js :: XslProcessor
Such exceptions tell you that you have a syntax error in your xsl. Without looking at into it too detailled, I would say that the following might be the reason: > <xsl:apply-templates match="topp:CNTRY_NAME"/> Try <xsl:call-template name="topp:CNTRY_NAME"/> instead. If that does not help, use a good XML editor for developing XSL (like XMLSpy or Stylus Studio). This will help you debug your stylesheets. Regards, Andreas. ------------------------------------------------------------------------- SF.Net email is sponsored by: Check out the new SourceForge.net Marketplace. It's the best place to buy or sell services for just about anything Open Source. http://sourceforge.net/services/buy/index.php _______________________________________________ Mapbuilder-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/mapbuilder-users
