* @throws Exception
* @throws WmsException DOCUMENT ME!
*/
public void validateSchemaGETMAP(File f, GetMapRequest getMapRequest)
throws Exception {
GETMAPValidator validator = new GETMAPValidator();
List errors = null;
try {
FileInputStream in = null;
try {
in = new FileInputStream(f);
errors = validator.validateGETMAP(in,
getMapRequest.getHttpServletRequest().getSession().getServletContext());
} finally {
if (in != null) {
in.close();
}