Hi Isomorphic,
can you maybe create public method "processRequest", so that I don't need to @Override it. And of course, docs it all.
It would be way more easier to see what possibilities I have.
	And I would love to have clear error message if possible, same as here  IDACall: Display error message 
Best regards
Pavo
					can you maybe create public method "processRequest", so that I don't need to @Override it. And of course, docs it all.
It would be way more easier to see what possibilities I have.
Code:
	
	public class LMSDataSourceLoader extends DataSourceLoader {
    private static final long serialVersionUID = 5069263611843001908L;
    @Override
    public void processRequest(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        // CHECK, if OK
        super.processRequest(request, response);
        // ESLE some error message
    }
}
Best regards
Pavo
Comment