/** * This work was created by participants in the DataONE project, and is * jointly copyrighted by participating institutions in DataONE. For * more information on DataONE, see our web site at http://dataone.org. * * Copyright ${year} * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * * $Id: D1TestServlet.java 15577 2015-05-08 16:53:19Z leinfelder $ */ package org.dataone.portal.servlets.myproxy; import static edu.uiuc.ncsa.security.util.pkcs.CertUtil.toPEM; import java.io.PrintWriter; import java.security.cert.X509Certificate; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.dataone.portal.PortalCertificateManager; import edu.uiuc.ncsa.myproxy.oa4mp.client.servlet.ClientServlet; /** *

Created by Ben Leinfelder
*/ public class D1TestServlet extends ClientServlet { protected void doIt(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse) throws Throwable { // get the certificate, if we have it X509Certificate certificate = PortalCertificateManager.getInstance().getCertificate(httpServletRequest); String subject = "NONE FOUND"; if (certificate != null) { subject = certificate.getSubjectDN().toString(); } httpServletResponse.setContentType("text/html"); PrintWriter pw = httpServletResponse.getWriter(); /* Put the key and certificate in the result, but allow them to be initially hidden. */ String y = "\n" + "\n" + "\n" + "\n" + "

Authentication information

\n" + "

This is the DataONE certificate associated with your session.

\n" + "\n" + "
\n" + " \n" + "
" + "\n" + ""; pw.println(y); pw.flush(); } }