
Ad Pods and stand alone Ad
Hello.
I have a question about jwplayer vast.
Create vast xml with Ad Pod <Ad> and stand alone <Ad> as shown below.
When jwplayer calls http://dev.com/test.xml, jwplayer request ad1.xml, ad2.xml, ad3.xml, and ad1.xml, ad3.xml ad is played.
Ad Pod <Ad> and stand alone <Ad> in test.xml, and only stand-alone <Ad> and child <VASTAdTagURI> should not be called.
What should I do?
=========test.xml=========
<VAST xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="vast.xsd" version="3.0">
<Ad sequence="1">
<Wrapper fallbackOnNoAd="true">
<AdSystem version="1.0">dev</AdSystem>
<VASTAdTagURI>
<![CDATA[
https://dev.com/ad1.xml
]]>
</VASTAdTagURI>
<Impression><Impression/>
</Wrapper>
</Ad>
<Ad>
<Wrapper>
<AdSystem version="1.0">dev</AdSystem>
<VASTAdTagURI>
<![CDATA[
https://dev.com/ad2.xml
]]>
</VASTAdTagURI>
<Impression><Impression/>
</Wrapper>
</Ad>
</VAST>
=========ad2.xml=========
<VAST xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="vast.xsd" version="3.0">
<Ad sequence="2">
<Wrapper>
<AdSystem version="1.0">dev</AdSystem>
<VASTAdTagURI>
<![CDATA[
https://dev.com/ad3.xml
]]>
</VASTAdTagURI>
<Impression><Impression/>
</Wrapper>
</Ad>
</VAST>
Thank You.