Browse Source

Upgrade Kettle von 6.0 auf 8.3 und Tomcat 9 auf Tomcat 10 #10

kern_tomcat10_test_his
Daniel Quathamer 6 days ago
parent
commit
c9b4656eab
  1. 8
      src/de/superx/servlet/UserInitializer.java
  2. 2
      superx/WEB-INF/conf/edustore/db/install/conf/builddatum.txt
  3. 2
      superx/WEB-INF/conf/edustore/db/install/conf/kern.rtf
  4. BIN
      superx/WEB-INF/lib/commons-vfs-1.0.jar
  5. BIN
      superx/WEB-INF/lib/superx6.0.jar

8
src/de/superx/servlet/UserInitializer.java

@ -321,7 +321,7 @@ public class UserInitializer { @@ -321,7 +321,7 @@ public class UserInitializer {
if (StringUtils.isNullOrEmpty(user.getName()))
throw new NichtAngemeldetException(" Keine Anmeldung möglich, da im request keine Kennung angegeben.");
checkIfUserExistsInDatabaseAndUpdateDetails(con, true);
System.out.println("AUTH1:"+user.getName());
String passwort = ServletHelper.getParameter(request, RequestParameter.passwort);
// neue Funktion "Gastanmeldung", Admins können in der userinfo verschluesselt
// Passwort
@ -342,7 +342,11 @@ public class UserInitializer { @@ -342,7 +342,11 @@ public class UserInitializer {
}
} else {
//Support fuer LDAP-Technik via Tomcat Remote User
if (request.getRemoteUser()!=null)
System.out.println("AUTH2:via Tomcat Remote User");
System.out.println("AUTH3:"+request.getAuthType());
if (request.getRemoteUser()!=null ||
(request.getAuthType() !=null && request.getAuthType().equals("shibboleth"))
)
{
isPasswordOK=true;
}

2
superx/WEB-INF/conf/edustore/db/install/conf/builddatum.txt

@ -1 +1 @@ @@ -1 +1 @@
18.01.2026
21.01.2026

2
superx/WEB-INF/conf/edustore/db/install/conf/kern.rtf

File diff suppressed because one or more lines are too long

BIN
superx/WEB-INF/lib/commons-vfs-1.0.jar

Binary file not shown.

BIN
superx/WEB-INF/lib/superx6.0.jar

Binary file not shown.
Loading…
Cancel
Save