Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I want to know how to read excel using xml format tFileInputXML?
here is picture of my job :
Thanks.
I believe this post is referring to an older XML-based Excel format, which starts something like this:
```
<?xml version="1.0"?>
<?mso-application progid="Excel.Sheet"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:html="http://www.w3.org/TR/REC-html40">
```
It's unclear whether Talend has native support for this format, but you can manually parse each sheet into a separate connector using tFileInputMSXML if you want:
Note that the XPath library doesn't seem to support certain functions and/or namespaces, so you have to specify everything directly by index.