RAP serializes the data graph using ordinal tags (for both SEQs and
BAGs). eg:
<RDF:Seq>
<RDF:_1>...
<RDF:_2>...
...
</RDF:Seq>
as opposed to:
<RDF:Seq>
<RDF:li>...
<RDF:li>...
...
</RDF:Seq>
When I load this datasource into mozilla the containers all appear empty
to mozilla (GetCount() always returns 0).
Is there anyway to tell Mozilla to expect the container SEQ to have
ordinal tags instead of simple RDF:li tags?
The ordinal tags are very useful on the server since they allow
resequencing for ordered containers (SEQ) to be managed fairly easily.
Thanks
Geraint
p.s. I also have the same problem with a similar example at xulplanet
http://xulplanet.com/tutorials/mozsdk/rdfsyntax.php
Axel
I'll probably write a modification to the server code to provide RDF:li
data but using a additional attribute to track the appropriate triplet
on the server. I'll have to see if I can get at the 'hidden' ordering
data within 'mozilla' so I can keep both sides in sync.
Thanks for finding the bug
Geraint