
war.fedora.jsp.unavailable-503.jsp Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fcrepo-client Show documentation
Show all versions of fcrepo-client Show documentation
The Fedora Client is a Java Library that allows API access to a Fedora Repository. The client is typically one part of a full Fedora installation.
The newest version!
<%@ page info="503==Unavailable" %>
<%@page isErrorPage="true" %>
<%
response.setStatus(HttpServletResponse.SC_SERVICE_UNAVAILABLE);
response.addHeader("Content-Type", "text/html; charset=UTF8");
%>
Fedora: 503 Unavailable

503 Unavailable
<%
if (exception.getMessage() != null) {
out.print(exception.getMessage());
}
%>
<%
StringWriter sw = new StringWriter();
PrintWriter pw = new PrintWriter(sw);
exception.printStackTrace(pw);
out.print(sw);
sw.close();
pw.close();
%>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy