% String url = request.getParameter("url"); if (url == null) { url = ""; } Boolean success = (Boolean) request.getAttribute("success"); boolean isValidating = Boolean.valueOf(request.getParameter("isValidating")).booleanValue(); ServletException e = (ServletException) request.getAttribute("error"); String what = request.getParameter("what"); boolean compiling = what == null || "compile".equals(what); %>
This small web application allows you to run JaxMe online. By entering a schema URL, the JaxMe compiler is invoked and returns a ZIP file with the generated sources.
<% if (success != null) { if (success.booleanValue()) { %>The schema was validated successful.
<% } else { %>The schema was found to contain errors.
<% } } if (e != null) { %><% Throwable t = e.getRootCause() == null ? e : e.getRootCause(); t.printStackTrace(new java.io.PrintWriter(out)); %><% } %>