04-11-2022 10:57 AM
I am working on the development of a test stand running Veristand 2020. Several times over the last few months, I've made a change to the system definition file, saved it, then tried to deploy, only to get the following error:
Load Error
An error occurred while trying to load "C:\...<project name>.nivssdf", The source file format is invalid.
In every case, the ultimate solution has been to start a brand new project, then bring in all of the project items (sdf, screens, calibrations, logging spec, etc.). It seems something gets corrupted in the process of saving a change. Has anyone ever encountered this? At this point we are just making small changes, like adding a calculated channel, so it's not like there are a lot of changes being made that could break stuff.
04-12-2022 08:04 AM
Hi again _pepper,
That sounds frustrating. You shouldn't have to periodically make a new project from scratch. Would like to get to the bottom of this and find some better workaround for you.
Once you have such a corrupted SD file... In terms of trying workarounds, I would first recommend creating a copy of the project (to serve as a restore point) before messing with anything. A few things to subsequently try would be the following (performing each action before attempting to open the project/deploy):
1. Delete the .cache
folder that is a sibling of the files of the project. (This includes both the cache for the system definition and the project itself.) Note that this will cause settings such as currently open project windows/tabs to be lost.
2. If #1 does not solve the problem, open the system definition file (.nivssdf
) in a text editor and delete the <Property Name="ChannelDiagrams">
XML element near the top of the file. Note that doing this may cause the mapping diagram to regenerate the layout of its content--any custom arrangement, positioning of nodes, bundling of wires, etc. could be lost.
3. If neither #1 or #2 works in isolation, attempt both of them simultaneously before attempting to open the project. (Make sure neither the .cache
folder nor the ChannelDiagrams
property is present.)
Please let us know if these ideas get your SD file back into a happy state.
And if you can isolate what is the change that is corrupting things; like if you had a snapshot of your SD before (no error) and after (SD error on deploy) that would be immensely helpful to us in figuring out what the root cause is. If you can figure that out, I'll get the Bug made and dealt with on the NI R&D side.
07-14-2023 10:13 AM
I have the same issue and have tried all three steps without success. This has happened multiple times already. Is there a way to prevent it? or any additional steps to fix it?
07-17-2023 01:24 AM
We have some similar concerns (i.e. https://forums.ni.com/t5/VeriStand/Issues-in-the-VSSDF-diagram-screen-in-VS2021R2-PXI-LinuxRT/td-p/4...). I will try the removal of the <Property Name="ChannelDiagrams"> for this.
To limit the damages we use a source control tool (SVN or GIT) and use to commit any (even minor) change that works. So in the case of a weird issue we can (at least) check the changes between the versions.
Your error sounds like the XML is no more consistent, maybe because some object (text, image, ....) is not well encapsuled by VS.
Hope you'll find something
03-17-2025 03:55 PM
I had the same error code after going from Veristand 2019 to Veristand 2023. For me, the issue was in the equations where there was a couple equations with duplicate variable names (one unused for some reason) but one of them had a trailing space. The project worked fine in Veristand 2019 but not after the initial load in Veristand 2023. Once I edited the SDF in notepad to delete the duplicates and ensure unique names with no trailing spaces everything worked again.
Here is a recreated example of the issue I had, once I deleted "Var0 " everything worked again.
<Channel Name="Calculated Channel" TypeGUID="03D3B772-1485-13A6-56D8DB23F9C234C2" Identifier="6339110e-8334-484e-9cee-09a9d0d4a100" RowDim="1" ColDim="1" Units="" BitFields="1">
<Description />
<Properties>
<Property Name="CalcCh:Index">
<U32>4294967295</U32>
</Property>
<Property Name="CalcCh:Type">
<U16>0</U16>
</Property>
<Property Name="CalcCh:Formula:FormulaString">
<StringArray>
<Elem>[Var0]</Elem>
</StringArray>
</Property>
<Property Name="Var0">
<DependentNode Path="Targets/Controller/System Channels/Absolute Time" />
</Property>
<Property Name="Var0 "> <!-- Note the extra space here after Var0, delete this duplicate property! -->
<DependentNode Path="Targets/Controller/System Channels/Absolute Time" />
</Property>
</Properties>
<Errors />
<DefaultValue>
<Elem>0</Elem>
</DefaultValue>
</Channel>
Would be nice if Veristand would actually report the SDF node it errored out on instead of just saying the whole file is invalid. I was able to open the bad SDF in the external editor, just not in Veristand as a project.