- Upvotes Received
- 2
- Posts with Upvotes
- 2
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
8 Posted Topics
Re: You need to know - where and how you host your data - what api your partners provide or need - how to process / generate / query / store XML data As you are building an internet service you could think about using a platform as a service in … | |
Re: Are you looking for someone helping you with some specific task? Or, are you trying to learn XBRL? | |
Re: Hey tungsten, I am part of an emerging multi-cultural open XML/XPath/XQuery community at [URL="http://www.xquery.me"]xquery.me[/URL]. We do some fancy fully open source libraries in xquery (e.g. we have a library for interfacing with Amazon web services in 100% XQuery code -> see [url]https://github.com/dknochen/xaws[/url] ). If you want to contribute a library … | |
Re: You need to use copy-of with copy-namespaces="no": [CODE]<xsl:copy-of copy-namespaces="no"/>[/CODE] Additionally, you have to set the empty namespace: [CODE] <xsl:template match="Account"> <CustomObject3 xmlns=""> ... </CustomObject3> </xsl:template> [/CODE] Finally, use local-name() instead of name(), e.g.: [CODE] <xsl:element name="Account{local-name()}"> <xsl:value-of select="."/> </xsl:element> [/CODE] This will probably not solve all of your problems, but … | |
Re: To select by class and cod attributes: [CODE]String path = "//coordenadoria/disciplina[@cod='"+disc+"' and @class='"+turma+"']";[/CODE] | |
Re: You could use the [URL="http://www.xsltfunctions.com/xsl/fn_tokenize.html"]fn:tokenize[/URL] function. [ICODE]fn:tokenize(pets/@animale, ",")[/ICODE] | |
Re: Is it this what you've tried that didn't work? [ICODE]<xsl:template match="div[@class='vampire']"> ... </xsl:template> <xsl:template match="div[@class='ghoul']"> ... </xsl:template>[/ICODE] If so, do you have another template with: [ICODE]<xsl:template match="div"> ... </xsl:template>[/ICODE] | |
Re: the error doesn't match your example code. in line 15 is an empty line. if you don't provide a complete example. how could anybody be able to help? for now, i would say your xsl or xml is not valid xml. |
The End.