All Downloads are FREE. Search and download functionalities are using the official Maven repository.

msv.msv.examples.servlet.src.ValidationServlet Maven / Gradle / Ivy

import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;
import org.xml.sax.*;
import org.iso_relax.verifier.*;

public class ValidationServlet extends HttpServlet {
    
    public void doGet(HttpServletRequest request, HttpServletResponse response)
                throws IOException, ServletException {
        // just in case the browser tries to read this servlet,
        // redirect it to the demo page.
        response.sendRedirect("index.html");
    }
    
    public void doPost(HttpServletRequest request, HttpServletResponse response)
                throws IOException, ServletException {
        
        String message;
        try {
            // parse the request body as an XML document
            InputSource document = new InputSource(request.getReader());
        
            // create a verifier. Since multiple threads can concurrently call
            // the doGet method, we cannot reuse one verifier object.
            Verifier verifier = schema.newVerifier();
        
            // set an error handler that do nothing.
            // we will call the isValid method, so we don't want an error to be thrown as an exception.
            verifier.setErrorHandler( silentErrorHandler );
        
            boolean isValid = verifier.verify(document);
        
            if(isValid)        message = "valid";
            else            message = "invalid";
            
        } catch( VerifierConfigurationException e ) {
            // technically, this exception can be thrown from the newVerifier method.
            // but usually this is very unlikely (because we've already compiled schema
            // and there are not much things that can go wrong.)
            
            log("unable to create a new verifier",e);
            throw new ServletException(e);
            
        } catch( SAXException e ) {
            // verify method may throw this exception.
            // this usually happens when the input document is not wellformed.
            // so we don't send a log in this case.
              
            message = "SAXException:"+e.getMessage();
        }
        
        // send a response back to the client
        response.setContentType("text/plain");
        PrintWriter writer = response.getWriter();
        writer.write(message);
    }
    
    /**
     * Compiled schema.
     */
    private Schema schema = null;
    
    
    public void init() throws ServletException {
        super.init();
        
        // compile a schema when the servlet is initialized
        // ------------------------------------------------
        VerifierFactory factory = new com.sun.msv.verifier.jarv.TheFactoryImpl();
        
        try {
            String schemaName = "myschema.dtd";
            
            // in this example, we load a schema from a resource file,
            // which is not visible to clients.
            // you may want to use getServletContext().getResourceAsStream()
            InputStream stream = ValidationServlet.class.getResourceAsStream(schemaName);
            if(stream==null)
                throw new ServletException("unable to locate the schema resource");
            
            InputSource is = new InputSource(stream);
            is.setSystemId(schemaName);
            
            schema = factory.compileSchema(is);
        } catch( Exception e ) {
            // VerifierConfigurationException and SAXException can be thrown,
            // but they don't have much difference in the meaning.
            
            // send the error message to a log file and abort.
            log( "unable to parse the schema file", e );
            throw new ServletException(e);
        }
    }
    
    /**
     * An error handler implementation that doesn't report any error.
     */
    private static final ErrorHandler silentErrorHandler = new ErrorHandler() {
        public void fatalError( SAXParseException e ) {}
        public void error( SAXParseException e ) {}
        public void warning( SAXParseException e ) {}
    };
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy