If you have a new question you’d like our support staff to post a response to, please visit our customer community, GoAnywhere Insiders, to pose the question in our Discussion Boards. We have a thread “Ask Our Tech Experts” that our support team monitors on a regular basis, or you can start a new discussion where other GoAnywhere users and support staff can weigh in. Log in or create your new account at
https://insiders.goanywhere.com.
If you need an immediate response, please create a support ticket or contact our support team by email at
[email protected].
-
Grodaes
- Posts: 10
- Joined: Mon Dec 05, 2016 12:12 pm
Hello, I am working on a project that reads a Fax number from an XML sheet however I always seem to get the error [8099 - Print] An unexpected error occurred. Invalid cursor position: BEFORE_FIRST Original expression: xmlData[1]. when trying to print out the information in ${xmlData[1]}. Any chance anyone has encountered this and solved it?
<project name="Test XML Default Read" mainModule="Main" version="2.0" logLevel="verbose">
<module name="Main">
<xmlRead label="Read XML File" file="d:\FTP\r04572t2__zjde0001_42455_pdf_121852_lbrochu_from_r04572t2e_eft_380680_121852.xml" defaultDateFormat="yyyy-MM-dd" defaultTimeFormat="HH:mm:ss" defaultTimestampFormat="MM/dd/yyyy HH:mm:ss.SSS" version="1.0">
<rowset name="xmlData">
<column index="1" value="/root/FaxCommands/@FaxNumber" name="COLUMN1" type="INTEGER" />
</rowset>
</xmlRead>
<print version="1.0">
<![CDATA[COLUMN1
${xmlData[1]}]]>
</print>
</module>
</project>
-
Support_Julie
Support Specialist
- Posts: 91
- Joined: Thu Mar 05, 2009 3:49 pm
- Location: Ashland, NE USA
-
To resolve your issue, do a SET VARIABLE prior to the PRINT task.
Then in the PRINT task, use that variable.
Since the Set Variable is not inside a loop, use version 1.0 of the Set Variable task.