Hi, there are a few errors in the jingle-schema of XEP-0166.
http://xmpp.org/extensions/xep-0166.html
A typo "maxOcccurs", should be replaced with "maxOccurs".
Some none-closed tags
<xs:enumeration value='initiator'>
should be
<xs:enumeration value='initiator'/>
replace
<xs:enumeration value='both'>
<xs:enumeration value='initiator'>
<xs:enumeration value='none'>
with
<xs:enumeration value='both'/>
<xs:enumeration value='initiator'/>
<xs:enumeration value='none'/>
Also, the code generator I'm using gets very angry with:
<xs:attribute name='creator'
use='required'
default='initiator'>
It's warning:
The 'use' attribute must be optional (or absent) if the default
attribute is present.
Regards
Håvard Sørbø