Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Update XML output template format #296

Merged
merged 3 commits into from
Nov 8, 2015
Merged

Update XML output template format #296

merged 3 commits into from
Nov 8, 2015

Conversation

mattburch
Copy link
Contributor

The existing XML output template does not unmarshall successfully due to orphan XML tags. The current output format is similar to the following:

<niktoscan>
  <scandetails>
  </scandetails>
  <niktoscan>
    <scandetails>
    </scandetails>
</niktoscan>

I have updated the template to include a top order XML tag and then to close out the sub niktoscan tag preceeding each completed scandetails section. the update would output the following format:

<niktoscan>
  <niktoscan>
    <scandetails>
    </scandetails>
  </niktoscan
  <niktoscan>
    <scandetails>
    </scandetails>
  </niktoscan>
</niktoscan>

This will unmarshall successfully.

sullo added a commit that referenced this pull request Nov 8, 2015
Update XML output template format
@sullo sullo merged commit c015887 into sullo:master Nov 8, 2015
@mattburch
Copy link
Contributor Author

mattburch commented Apr 1, 2017 via email

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants