//Check WSDL 2.0 assertions
List wsdlAsserts = (List)fWsdlAsserts.get(targetClass);
if (wsdlAsserts != null) {
for (Iterator i = wsdlAsserts.iterator(); i.hasNext();) {
a = (Assertion) i.next();
a.validate(target, fWodenCtx);
}
}
//Check extension assertions (get them from ExtensionRegistry)
List extAsserts = (List)fExtAsserts.get(targetClass);
if (extAsserts != null) {