protected String internalAssertResponse( MessageExchange messageExchange, SubmitContext context )
throws AssertionException
{
WsdlContext wsdlContext = ( ( WsdlMessageExchange )messageExchange ).getOperation().getInterface()
.getWsdlContext();
WsdlValidator validator = new WsdlValidator( wsdlContext );
try
{
AssertionError[] errors = validator.assertResponse( ( WsdlMessageExchange )messageExchange, true );
if( errors.length > 0 )
throw new AssertionException( errors );
}
catch( AssertionException e )
{