Sample SystemLink Configuration XML File
- Updated2024-10-31
- 1 minute(s) read
Sample SystemLink Configuration XML File
The following examples demonstrate how to structure a SystemLink Configuration XML file.
Publish all the endpoints for a DUT
<?xml version=""1.0"" encoding=""utf-8"" ?>
<SystemLink>
<DutTags PublishTagsForUnspecifiedPorts = "true" />
</SystemLink>
Publish all the endpoints for a specific port (named "Port A")
<?xml version=""1.0"" encoding=""utf-8"" ?>
<SystemLink>
<DutTags PublishTagsForUnspecifiedPorts="false">
<Port Name="Port A"
PublishTagsForUnspecifiedEndpoints="true"
RetentionType="None" RetentionPeriod="0" />
</DutTags>
</SystemLink>
Publish two specific endpoints, each from a different port
<?xml version=""1.0"" encoding=""utf-8"" ?>
<SystemLink>
<DutTags PublishTagsForUnspecifiedPorts="false">
<Port Name="Port A"
PublishTagsForUnspecifiedEndpoints="false">
<EndpointTag Name="Endpoint 1"
PublishTag="true" RetentionType="Days"
RetentionPeriod="7"/>
</Port>
<Port Name="Port B"
PublishTagsForUnspecifiedEndpoints="false">
<EndpointTag Name="Endpoint 4"
PublishTag="true" RetentionType="Days"
RetentionPeriod="7"/>
</Port>
</DutTags>
</SystemLink>