skip to Main Content

Asp.net – Divide XML into specific nodes

There is an XML string. I can't figure out how to get only the contents of the node, and then split it into separate Persons. <?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:soap="http://"> <soap:Body> <GetJob xmlns="http:// "> <GetResult> <Result>00</Result> <Data> <Person> <Name>Ивано Иван…

VIEW QUESTION

Html – component-based XML library

Is there an XML library where we divide the code into various components? and on final we build/merge it main.xml content is: <?xml version="1.0" encoding="UTF-8"?> <Component1> <SubComponent /> </Component1> <Component2 /> Component1.xml, SubComponent.xml, Component2.xml content is: <1-- xml code for…

VIEW QUESTION

Extrapolate and download from xml images asp link in WooCommerce

we have output XMLs from SOAP, which we need to download to a folder with the same filename that we find in the XML. I file IMG hanno un accesskey: <?xml version="1.0" encoding="UTF-8"?> <TableResult> <Product> <FDI_0843>https://ws.farmadati.it/WS_DOC/GetDoc.aspx?accesskey=xxxxxxx&tipodoc=TE009&nomefile=001536.jpg</FDI_0843> <FDI_0840>908872245</FDI_0840> </Product> <Product> <FDI_0843>https://ws.farmadati.it/WS_DOC/GetDoc.aspx?accesskey=xxxxxxx&tipodoc=TE009&nomefile=005075.jpg</FDI_0843>…

VIEW QUESTION

Looking up key-value pairs in JSON objects from XSLT

I have an XSLT implementation that hyphenates strings following latex patterns, i.e. inserts soft hyphens in strings. I call this function like this: <xsl:template match="p[lang('en')]/text()"> <xsl:analyze-string select="." regex="w+"> <xsl:matching-substring> <xsl:value-of select="fn:hyphenate(., '­', 'en')"/> <xsl:non-matching-substring> <xsl:value-of select="."/> </xsl:non-matching-substring> </xsl:analyze-string> </xsl:template> Now,…

VIEW QUESTION
Back To Top
Search