xmlOptions.setLoadLineNumbers();
xmlOptions.setValidateTreatLaxAsSkip();
xmlOptions.setLoadLineNumbers( XmlOptions.LOAD_LINE_NUMBERS_END_ELEMENT );
XmlObject xmlObject = getSoapEnvelopeSchemaLoader().parse( soapMessage, getEnvelopeType(), xmlOptions );
xmlOptions.setErrorListener( errorList );
xmlObject.validate( xmlOptions );
}
catch( XmlException e )
{
if( e.getErrors() != null )
errorList.addAll( e.getErrors() );