SIMID-1.0-simid-ssai-no-client
Linear SIMID creative with a Mezzanine but no progressive MediaFile cannot run in SSAI
Short answer
A Mezzanine file is the stitcher input. SIMID still needs a client player that can load the iframe. Streaming-only plus Mezzanine is the SSAI path with nothing for a device player to attach the creative to.
Why this matters in production
This is advisory context that still helps keep interactive delivery predictable and easier to debug across different SIMID-capable players. Linear SIMID issues affect the handshake between the primary video creative and the interactive layer. When these break, the ad often falls back to plain video or fails interaction entirely.
A Mezzanine file is the stitcher input. SIMID still needs a client player that can load the iframe. Streaming-only plus Mezzanine is the SSAI path with nothing for a device player to attach the creative to.
How to fix
Ship a progressive MediaFile alongside the Mezzanine so a client player can load the SIMID iframe after stitch.
Broader troubleshooting
If this rule is one part of a bigger SIMID delivery issue, start with the SIMID troubleshooting guide for a checklist covering iframe URLs, HTTPS, fallback media, and player support. If the XML is already clean, test the live tag: a JS file, frame headers, or a missing createSession will not show up in the catalog.
Invalid
<MediaFiles>
<Mezzanine delivery="streaming" type="video/mp4" width="1920" height="1080">
<![CDATA[https://cdn.example.com/mezz.mp4]]>
</Mezzanine>
<MediaFile delivery="streaming" type="application/x-mpegURL">
<![CDATA[https://cdn.example.com/ad.m3u8]]>
</MediaFile>
<InteractiveCreativeFile type="text/html" apiFramework="SIMID">
<![CDATA[https://example.com/creative.html]]>
</InteractiveCreativeFile>
</MediaFiles>Valid
<MediaFiles>
<Mezzanine delivery="streaming" type="video/mp4" width="1920" height="1080">
<![CDATA[https://cdn.example.com/mezz.mp4]]>
</Mezzanine>
<MediaFile delivery="progressive" type="video/mp4" width="1280" height="720">
<![CDATA[https://cdn.example.com/ad.mp4]]>
</MediaFile>
<InteractiveCreativeFile type="text/html" apiFramework="SIMID">
<![CDATA[https://example.com/creative.html]]>
</InteractiveCreativeFile>
</MediaFiles>SIMID-1.0-simid-ssai-no-client and other issues instantly.Open the VAST tag validator →