JBoss (I'm using 4.2.3) provides an annotation, @SchemaValidation, to support validating input and output XML for a web service against a provided schema. When your xml doesn't validate, a handler (implementing org.xml.sax.ErrorHandler)is called to address the error, presumably by logging it and/or reporting it to the user.
The handler is supplied a SAXParseException, which has some nice information about the type of validation error that occurred, and where in the XML the problem was, and you can re-throw the exception or log/swallow it according to your needs.
What I would like to do is distinguish in my handling of these errors between those that occur on incoming vs. outgoing XML. In particular, I would like to be very strict and reject requests that contain non-validating XML on the incoming side, and be more lenient and log/swallow errors in XML validation on the output side. This will let me discover issues with my schema or application that produce output validation failures without preventing the response from going out the door.
Unfortunately, the SAXParseException does not indicate the section of the schema that it's validating against, and there doesn't appear to be any kind of distinction made by JBoss as far as what happens on input validation failures vs. output validation failures.