[Solved] xml-xsd validation debugging

I think that the problem is in the order of the elements, as the NotificationEmail is a last one in your schema. Try to reorder the data, like this: <?xml version=”1.0″ encoding=”UTF-8″?> <ShoretelCosmoConference xmlns=”http://www.m5net.com/mantle/configuration/connectors” xmlns:i=”http://www.w3.org/2001/XMLSchema-instance”> <AccountId>13284</AccountId> <StartConference>Host Joins</StartConference> <EndConference>Moderator leaves</EndConference> <WebLoginMode>Name Only</WebLoginMode> <Password /> <OutdialPrompt>true</OutdialPrompt> <NotifyChanges>false</NotifyChanges> <NotificationEmail /> </ShoretelCosmoConference> I use this validation for your … Read more