Hello all,
I am trying to use this fantastic program to simply edit some values in an an XML formatted file that is a configuration backup for an AV device. Once I edit it, I can then import it to replace the current configuration.
The trouble I am having is it seems like some of the basic reformatting that happens is causing the import to fail. No details are given. If I use WinMerge to compare, here are some differences:
This:
<?xml version="1.0" encoding="UTF-8"?>
Becomes:
<?xml version="1.0" encoding="utf-8"?>
This:
<item name="ungrouped" sequence="1"/ >
Becomes:
<item name="ungrouped" sequence="1"/>
(The space before the closing > is removed)
I don't know what is and isn't correctly formatted XML, but the point here is the device seems to be rejecting my edits based on things being autoformatted. All I want to do is open it, find text, replace text, and save.
Thanks!
Hello all,
I am trying to use this fantastic program to simply edit some values in an an XML formatted file that is a configuration backup for an AV device. Once I edit it, I can then import it to replace the current configuration.
The trouble I am having is it seems like some of the basic reformatting that happens is causing the import to fail. No details are given. If I use WinMerge to compare, here are some differences:
This:
<?xml version="1.0" encoding="UTF-8"?>Becomes:
<?xml version="1.0" encoding="utf-8"?>This:
<item name="ungrouped" sequence="1"/ >Becomes:
<item name="ungrouped" sequence="1"/>(The space before the closing
>is removed)I don't know what is and isn't correctly formatted XML, but the point here is the device seems to be rejecting my edits based on things being autoformatted. All I want to do is open it, find text, replace text, and save.
Thanks!