Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #22.6K
Ranked #4K
~2K People Reached
Favorite Forums
Favorite Tags
xml x 9

8 Posted Topics

Member Avatar for aals

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 …

Member Avatar for aals
0
142
Member Avatar for mnewsome

Are you looking for someone helping you with some specific task? Or, are you trying to learn XBRL?

Member Avatar for mnewsome
0
90
Member Avatar for tungsten

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 …

Member Avatar for dknochen
0
224
Member Avatar for glfnute

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 …

Member Avatar for dknochen
0
194
Member Avatar for GabrielZiden

To select by class and cod attributes: [CODE]String path = "//coordenadoria/disciplina[@cod='"+disc+"' and @class='"+turma+"']";[/CODE]

Member Avatar for dknochen
0
179
Member Avatar for f_atencia

You could use the [URL="http://www.xsltfunctions.com/xsl/fn_tokenize.html"]fn:tokenize[/URL] function. [ICODE]fn:tokenize(pets/@animale, ",")[/ICODE]

Member Avatar for f_atencia
0
114
Member Avatar for achava

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]

Member Avatar for achava
0
541
Member Avatar for kidwon

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.

Member Avatar for kidwon
0
129

The End.