skip to Main Content

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

Parse xml child and namespace with PHP

I need to read a specific xml child from the following xml: <?xml version="1.0" encoding="utf-8"?> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <soapenv:Body> <exp:Input xmlns:exp="http://exportservice.domest.sogei.it"> <exp:serviceId>Send item text</exp:serviceId> <exp:data> <exp:xml>textcontent</exp:xml> <exp:dichiarante>AXB17735</exp:dichiarante> </exp:data> </exp:Input> </soapenv:Body> </soapenv:Envelope> what i need is to read the child…

VIEW QUESTION
Back To Top
Search