How often does the internal serdes format of vision XML windows change?
Wondering for a couple different use cases, but the most relevant one more broadly is 'if i update my gateway/designer by a minor version bump, is that going to lead to a bunch of diffs in my window.xml files due to internals rather than actual project changes that e.g. git will notice'
Basically never, unless we ever get around to deliberately trying to make it more human readable.
It's ossified into its current state, for good and bad, so I would consider it semi-stable (at least within minor versions).
Again, with the usual caveats that you really might want to just do whatever you're trying to do within the bumpers of the software rather than forging your own trail 
1 Like
" within the bumpers of the software"
If the stuff I were working on were doable within the software's bumpers, I'd be doing so already 
Pretty please?
Some of my past recommendations would also make it much more git-friendly.
honestly my biggest piece of feedback atm is that string refs (as distinct from component refs) afaict add like....0 upside to serdes speed. Oftentimes the ref tag will be longer than the string it's replacing!
As far as I know the intention of the ref system was always to save space over the wire. Whether that was a goal that made sense or was achieved fifteen years ago when it was designed is orthogonal to whether it makes sense now, but in any event it basically boils down to:
If it's in Vision, and it's not broken, don't try to fix it. You and Phil trying to do fun things in Vision's XML encoding is neat, but doesn't help Joe and Jane trying to keep their one production line at a factory working.
1 Like
Yep, I agree!
Everything I'm building is to make actual day-to-day tasks easier, without compromising what's actually going on under the hood, because that side of things is stable
1 Like
The ref system is critical to not duplicate actual objects, including the components themselves. Critical ssince the XML is not well-ordered, and components with bindings will show up "complete" when the InteractionController is serialized, and those refs will then be used when the root container is serialized.
I would argue that making their production line's gateway git-friendly does indeed help keep that production line running. Tweaking the XML encoding to do just two things would be huge:
- Use path to named components as their ref (leaving other object refs as-is), and
- alter encoding order of windows and templates to process their root container first.
Win!
1 Like
yep, that's why i specified string refs. (though the over-the-wire explanation explains that too)
component/object refs make sense to me.