I've got one more resource loading issue. The Validator complains on all my <PrimaryAudioVideoClip> elements. It also means that when I run the simulator I get a resource load error when I select to play any videos. My playlist worked in the first release, so I'm trying to figure out what I am doing incorrectly. Is it breaking because I'm using a wmv
For example:
| | | | | + <Title>
| | | | | - <Title>
| | | | | | | Using xml:base: file:///dvddisc/ADV_OBJ/
| | | | | | | Attribute: titleNumber="2"
| | | | | | | Attribute: titleDuration="00:04:00:00"
| | | | | | | Attribute: id="cream"
| | | | | | | Attribute: displayName="Cream"
| | | | | | | Attribute: onEnd="greenday"
| | | | | | - <PrimaryAudioVideoClip>
| | | | | | | | Using xml:base: file:///dvddisc/ADV_OBJ/
| | | | | | | | Attribute: titleTimeBegin="00:00:00:00"
| | | | | | | | Attribute: titleTimeEnd="00:04:00:00"
| | | | | | | | Attribute: src="file:///dvddisc/HVDVD_TS/Cream_Badge_700.wmv"
| | | | | | | | Resource: file:///dvddisc/HVDVD_TS/Cream_Badge_700.wmv
| | | | | | | | Attribute: dataSource="Disc"
| | | | | | | | ERROR (E000000008): Unknown resource is not allowed (Element: PrimaryAudioVideoClip, Attribute: src, Line: 18, Col: 8)
### Playlist ###
<Title titleNumber="2" titleDuration="00:04:00:00" id="cream" displayName="Cream" onEnd="greenday">
<PrimaryAudioVideoClip titleTimeBegin="00:00:00:00" titleTimeEnd="00:04:00:00"
src="file:///dvddisc/HVDVD_TS/Cream_Badge_700.wmv" dataSource="Disc">
<Video track="1" />
<Audio track="1" streamNumber="1" />
</PrimaryAudioVideoClip>
<ApplicationSegment titleTimeBegin="00:00:00:00" titleTimeEnd="00:04:00:00" sync="soft" zOrder="0" language="en" src="file:///dvddisc/ADV_OBJ/videomenu.aca/videomenu.xmf">
<ApplicationResource priority="0" src="file:///dvddisc/ADV_OBJ/videomenu.aca" size="604497" multiplexed="false" />
</ApplicationSegment>
<ScheduledControlList>
<Event id="ev1" titleTime="00:00:10:00" />
</ScheduledControlList>
<ChapterList>
<Chapter titleTimeBegin="00:00:00:00" />
</ChapterList>
</Title>

Unkown Video Resource - .WMV supported?
Philly10407
WMVs are allowed for iHDSim; the validator is just telling you that's not valid for the real spec.
You can rename your WMV to MAP and then have your playlist point to the MAP and it should work fine.
Is the resource load for the WMV or for your application You can double-click the status bar of iHDSim to get a list of the errors (in case there was more than one).
samssb
I'll work through those. Thanks again Peter.