<% 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); %> JaxMe Online

JaxMe Online

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.

URL:
Action:
Validating parser:
<% if (success != null) { if (success.booleanValue()) { %>

Schema validation result

The schema was validated successful.

<% } else { %>

Schema validation result

The schema was found to contain errors.

<% } } if (e != null) { %>

Error Details

<%
		    Throwable t = e.getRootCause() == null ? e : e.getRootCause();
		    t.printStackTrace(new java.io.PrintWriter(out));
		%>
<% } %>