Add JSP files to source

This commit is contained in:
Ocarinaoftime 2025-03-14 07:51:47 -04:00 committed by GitHub
parent 24f0a0c5db
commit c76171faf9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
97 changed files with 73582 additions and 0 deletions

View file

@ -0,0 +1,6 @@
<%@ page language="java" %>
<%
String targetUrl = "http://oss-auth.blinklab.com/oss/ias/services/IdentityAuthenticationSOAP"; // Relative URL of the target JSP
RequestDispatcher dispatcher = request.getRequestDispatcher(targetUrl);
dispatcher.forward(request, response);
%>