various fixes and improvements found by log analysis
This commit is contained in:
parent
f75a03ff4d
commit
f44c82bde3
14 changed files with 123 additions and 58 deletions
|
@ -8,6 +8,17 @@
|
||||||
|
|
||||||
package ch.ethz.seb.sebserver.webservice;
|
package ch.ethz.seb.sebserver.webservice;
|
||||||
|
|
||||||
|
import java.util.Arrays;
|
||||||
|
import java.util.Collections;
|
||||||
|
import java.util.HashSet;
|
||||||
|
|
||||||
|
import org.slf4j.Logger;
|
||||||
|
import org.slf4j.LoggerFactory;
|
||||||
|
import org.springframework.beans.factory.annotation.Qualifier;
|
||||||
|
import org.springframework.beans.factory.annotation.Value;
|
||||||
|
import org.springframework.security.crypto.password.PasswordEncoder;
|
||||||
|
import org.springframework.stereotype.Component;
|
||||||
|
|
||||||
import ch.ethz.seb.sebserver.SEBServerInit;
|
import ch.ethz.seb.sebserver.SEBServerInit;
|
||||||
import ch.ethz.seb.sebserver.WebSecurityConfig;
|
import ch.ethz.seb.sebserver.WebSecurityConfig;
|
||||||
import ch.ethz.seb.sebserver.gbl.client.ClientCredentialServiceImpl;
|
import ch.ethz.seb.sebserver.gbl.client.ClientCredentialServiceImpl;
|
||||||
|
@ -20,16 +31,6 @@ import ch.ethz.seb.sebserver.webservice.servicelayer.authorization.impl.SEBServe
|
||||||
import ch.ethz.seb.sebserver.webservice.servicelayer.dao.FilterMap;
|
import ch.ethz.seb.sebserver.webservice.servicelayer.dao.FilterMap;
|
||||||
import ch.ethz.seb.sebserver.webservice.servicelayer.dao.InstitutionDAO;
|
import ch.ethz.seb.sebserver.webservice.servicelayer.dao.InstitutionDAO;
|
||||||
import ch.ethz.seb.sebserver.webservice.servicelayer.dao.UserDAO;
|
import ch.ethz.seb.sebserver.webservice.servicelayer.dao.UserDAO;
|
||||||
import org.slf4j.Logger;
|
|
||||||
import org.slf4j.LoggerFactory;
|
|
||||||
import org.springframework.beans.factory.annotation.Qualifier;
|
|
||||||
import org.springframework.beans.factory.annotation.Value;
|
|
||||||
import org.springframework.security.crypto.password.PasswordEncoder;
|
|
||||||
import org.springframework.stereotype.Component;
|
|
||||||
|
|
||||||
import java.util.Arrays;
|
|
||||||
import java.util.Collections;
|
|
||||||
import java.util.HashSet;
|
|
||||||
|
|
||||||
@Component
|
@Component
|
||||||
@WebServiceProfile
|
@WebServiceProfile
|
||||||
|
@ -69,7 +70,7 @@ class AdminUserInitializer {
|
||||||
try {
|
try {
|
||||||
|
|
||||||
log.debug("Create initial admin account is switched on. Check database if exists...");
|
log.debug("Create initial admin account is switched on. Check database if exists...");
|
||||||
final Result<SEBServerUser> byUsername = this.userDAO.sebServerUserByUsername(this.adminName);
|
final Result<SEBServerUser> byUsername = this.userDAO.sebServerAdminByUsername(this.adminName);
|
||||||
if (byUsername.hasValue()) {
|
if (byUsername.hasValue()) {
|
||||||
|
|
||||||
log.debug("Initial admin account already exists. Check if the password must be reset...");
|
log.debug("Initial admin account already exists. Check if the password must be reset...");
|
||||||
|
|
|
@ -94,7 +94,7 @@ public class WebserviceInit implements ApplicationListener<ApplicationReadyEvent
|
||||||
SEBServerInit.INIT_LOGGER.info("------> Ping update time: {}",
|
SEBServerInit.INIT_LOGGER.info("------> Ping update time: {}",
|
||||||
this.environment.getProperty("sebserver.webservice.distributed.pingUpdate"));
|
this.environment.getProperty("sebserver.webservice.distributed.pingUpdate"));
|
||||||
SEBServerInit.INIT_LOGGER.info("------> Connection update time: {}",
|
SEBServerInit.INIT_LOGGER.info("------> Connection update time: {}",
|
||||||
this.environment.getProperty("sebserver.webservice.distributed.connectionUpdate"));
|
this.environment.getProperty("sebserver.webservice.distributed.connectionUpdate", "2000"));
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
|
|
@ -49,6 +49,12 @@ public interface UserDAO extends ActivatableEntityDAO<UserInfo, UserMod>, BulkAc
|
||||||
* @return a Result of SEBServerUser for specified username. Or an exception result on error case */
|
* @return a Result of SEBServerUser for specified username. Or an exception result on error case */
|
||||||
Result<SEBServerUser> sebServerUserByUsername(String username);
|
Result<SEBServerUser> sebServerUserByUsername(String username);
|
||||||
|
|
||||||
|
/** Use this to get the SEBServerUser admin principal for a given username.
|
||||||
|
*
|
||||||
|
* @param username The username of the user to get SEBServerUser from
|
||||||
|
* @return a Result of SEBServerUser for specified username. Or an exception result on error case */
|
||||||
|
Result<SEBServerUser> sebServerAdminByUsername(String username);
|
||||||
|
|
||||||
/** Use this to get a Collection containing EntityKey's of all entities that belongs to a given User.
|
/** Use this to get a Collection containing EntityKey's of all entities that belongs to a given User.
|
||||||
*
|
*
|
||||||
* @param uuid The UUID of the user
|
* @param uuid The UUID of the user
|
||||||
|
|
|
@ -127,6 +127,21 @@ public class UserDAOImpl implements UserDAO {
|
||||||
.flatMap(this::sebServerUserFromRecord);
|
.flatMap(this::sebServerUserFromRecord);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@Transactional(readOnly = true)
|
||||||
|
public Result<SEBServerUser> sebServerAdminByUsername(final String username) {
|
||||||
|
return getSingleResource(
|
||||||
|
username,
|
||||||
|
this.userRecordMapper
|
||||||
|
.selectByExample()
|
||||||
|
.where(UserRecordDynamicSqlSupport.username, isEqualTo(username))
|
||||||
|
.and(UserRecordDynamicSqlSupport.active,
|
||||||
|
isEqualTo(BooleanUtils.toInteger(true)))
|
||||||
|
.build()
|
||||||
|
.execute())
|
||||||
|
.flatMap(this::sebServerUserFromRecord);
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@Transactional(readOnly = true)
|
@Transactional(readOnly = true)
|
||||||
public Result<Collection<UserInfo>> all(final Long institutionId, final Boolean active) {
|
public Result<Collection<UserInfo>> all(final Long institutionId, final Boolean active) {
|
||||||
|
|
|
@ -311,7 +311,9 @@ public class ExamAdminServiceImpl implements ExamAdminService {
|
||||||
examId,
|
examId,
|
||||||
ProctoringServiceSettings.ATTR_ENABLE_PROCTORING)
|
ProctoringServiceSettings.ATTR_ENABLE_PROCTORING)
|
||||||
.map(rec -> BooleanUtils.toBoolean(rec.getValue()))
|
.map(rec -> BooleanUtils.toBoolean(rec.getValue()))
|
||||||
.onError(error -> log.error("Failed to verify proctoring enabled for exam: {}", examId, error));
|
.onError(error -> log.warn("Failed to verify proctoring enabled for exam: {}, {}",
|
||||||
|
examId,
|
||||||
|
error.getMessage()));
|
||||||
if (result.hasError()) {
|
if (result.hasError()) {
|
||||||
return Result.of(false);
|
return Result.of(false);
|
||||||
}
|
}
|
||||||
|
|
|
@ -61,6 +61,8 @@ public abstract class AbstractLogLevelCountIndicator extends AbstractLogIndicato
|
||||||
return super.currentValue;
|
return super.currentValue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO do this within a better reactive way like ping updates
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
|
||||||
final Long errors = this.clientEventRecordMapper
|
final Long errors = this.clientEventRecordMapper
|
||||||
|
|
|
@ -67,9 +67,9 @@ public abstract class AbstractLogNumberIndicator extends AbstractLogIndicator {
|
||||||
return super.currentValue;
|
return super.currentValue;
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
// TODO do this within a better reactive way like ping updates
|
||||||
|
|
||||||
System.out.println("************** loadFromPersistent");
|
try {
|
||||||
|
|
||||||
final List<ClientEventRecord> execute = this.clientEventRecordMapper.selectByExample()
|
final List<ClientEventRecord> execute = this.clientEventRecordMapper.selectByExample()
|
||||||
.where(ClientEventRecordDynamicSqlSupport.clientConnectionId, isEqualTo(this.connectionId))
|
.where(ClientEventRecordDynamicSqlSupport.clientConnectionId, isEqualTo(this.connectionId))
|
||||||
|
|
|
@ -19,8 +19,6 @@ import org.springframework.beans.factory.annotation.Qualifier;
|
||||||
|
|
||||||
import ch.ethz.seb.sebserver.gbl.async.AsyncServiceSpringConfig;
|
import ch.ethz.seb.sebserver.gbl.async.AsyncServiceSpringConfig;
|
||||||
import ch.ethz.seb.sebserver.gbl.model.exam.Indicator;
|
import ch.ethz.seb.sebserver.gbl.model.exam.Indicator;
|
||||||
import ch.ethz.seb.sebserver.gbl.model.exam.Indicator.IndicatorType;
|
|
||||||
import ch.ethz.seb.sebserver.gbl.model.session.ClientEvent;
|
|
||||||
import ch.ethz.seb.sebserver.gbl.model.session.ClientEvent.EventType;
|
import ch.ethz.seb.sebserver.gbl.model.session.ClientEvent.EventType;
|
||||||
import ch.ethz.seb.sebserver.gbl.util.Utils;
|
import ch.ethz.seb.sebserver.gbl.util.Utils;
|
||||||
import ch.ethz.seb.sebserver.webservice.datalayer.batis.ClientEventLastPingMapper;
|
import ch.ethz.seb.sebserver.webservice.datalayer.batis.ClientEventLastPingMapper;
|
||||||
|
@ -35,12 +33,12 @@ public abstract class AbstractPingIndicator extends AbstractClientIndicator {
|
||||||
private final Executor executor;
|
private final Executor executor;
|
||||||
protected final DistributedPingCache distributedPingCache;
|
protected final DistributedPingCache distributedPingCache;
|
||||||
|
|
||||||
//protected Long pingRecord = null;
|
|
||||||
protected PingUpdate pingUpdate = null;
|
protected PingUpdate pingUpdate = null;
|
||||||
|
|
||||||
protected AbstractPingIndicator(
|
protected AbstractPingIndicator(
|
||||||
final DistributedPingCache distributedPingCache,
|
final DistributedPingCache distributedPingCache,
|
||||||
@Qualifier(AsyncServiceSpringConfig.EXAM_API_PING_SERVICE_EXECUTOR_BEAN_NAME) final Executor executor) {
|
@Qualifier(AsyncServiceSpringConfig.EXAM_API_PING_SERVICE_EXECUTOR_BEAN_NAME) final Executor executor) {
|
||||||
|
|
||||||
super();
|
super();
|
||||||
this.executor = executor;
|
this.executor = executor;
|
||||||
this.distributedPingCache = distributedPingCache;
|
this.distributedPingCache = distributedPingCache;
|
||||||
|
@ -81,7 +79,9 @@ public abstract class AbstractPingIndicator extends AbstractClientIndicator {
|
||||||
try {
|
try {
|
||||||
this.executor.execute(this.pingUpdate);
|
this.executor.execute(this.pingUpdate);
|
||||||
} catch (final Exception e) {
|
} catch (final Exception e) {
|
||||||
//log.warn("Failed to schedule ping task: {}" + e.getMessage());
|
if (log.isDebugEnabled()) {
|
||||||
|
log.warn("Failed to schedule ping task: {}" + e.getMessage());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -115,30 +115,6 @@ public abstract class AbstractPingIndicator extends AbstractClientIndicator {
|
||||||
|
|
||||||
public abstract ClientEventRecord updateLogEvent(final long now);
|
public abstract ClientEventRecord updateLogEvent(final long now);
|
||||||
|
|
||||||
@Override
|
|
||||||
public double computeValueAt(final long timestamp) {
|
|
||||||
// TODO Auto-generated method stub
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void notifyValueChange(final ClientEvent event) {
|
|
||||||
// TODO Auto-generated method stub
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void notifyValueChange(final ClientEventRecord clientEventRecord) {
|
|
||||||
// TODO Auto-generated method stub
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public IndicatorType getType() {
|
|
||||||
// TODO Auto-generated method stub
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
static final class PingUpdate implements Runnable {
|
static final class PingUpdate implements Runnable {
|
||||||
|
|
||||||
private final ClientEventLastPingMapper clientEventLastPingMapper;
|
private final ClientEventLastPingMapper clientEventLastPingMapper;
|
||||||
|
@ -151,8 +127,12 @@ public abstract class AbstractPingIndicator extends AbstractClientIndicator {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void run() {
|
public void run() {
|
||||||
|
try {
|
||||||
this.clientEventLastPingMapper
|
this.clientEventLastPingMapper
|
||||||
.updatePingTime(this.pingRecord, Utils.getMillisecondsNow());
|
.updatePingTime(this.pingRecord, Utils.getMillisecondsNow());
|
||||||
|
} catch (final Exception e) {
|
||||||
|
log.error("Failed to update ping: {}", e.getMessage());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -176,6 +176,7 @@ public class DistributedPingCache implements DisposableBean {
|
||||||
|
|
||||||
public Long getLastPing(final Long pingRecordId, final boolean missing) {
|
public Long getLastPing(final Long pingRecordId, final boolean missing) {
|
||||||
try {
|
try {
|
||||||
|
|
||||||
Long ping = this.pingCache.get(pingRecordId);
|
Long ping = this.pingCache.get(pingRecordId);
|
||||||
if (ping == null && !missing) {
|
if (ping == null && !missing) {
|
||||||
|
|
||||||
|
|
|
@ -111,8 +111,8 @@ public final class PingIntervalClientIndicator extends AbstractPingIndicator {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public double getValue() {
|
public double getValue() {
|
||||||
final long now = DateTimeUtils.currentTimeMillis();
|
final double value = super.getValue();
|
||||||
return now - super.getValue();
|
return DateTimeUtils.currentTimeMillis() - value;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -177,6 +177,16 @@ public class APIExceptionHandler extends ResponseEntityExceptionHandler {
|
||||||
.createErrorResponse(ex.getMessage());
|
.createErrorResponse(ex.getMessage());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ExceptionHandler(ExamNotRunningException.class)
|
||||||
|
public ResponseEntity<Object> handleExamNotRunning(
|
||||||
|
final ExamNotRunningException ex,
|
||||||
|
final WebRequest request) {
|
||||||
|
|
||||||
|
log.warn("{}", ex.getMessage());
|
||||||
|
return APIMessage.ErrorMessage.INTEGRITY_VALIDATION
|
||||||
|
.createErrorResponse(ex.getMessage());
|
||||||
|
}
|
||||||
|
|
||||||
@ExceptionHandler(APIConstraintViolationException.class)
|
@ExceptionHandler(APIConstraintViolationException.class)
|
||||||
public ResponseEntity<Object> handleIllegalAPIArgumentException(
|
public ResponseEntity<Object> handleIllegalAPIArgumentException(
|
||||||
final APIConstraintViolationException ex,
|
final APIConstraintViolationException ex,
|
||||||
|
|
|
@ -172,8 +172,14 @@ public class ExamMonitoringController {
|
||||||
EntityType.EXAM,
|
EntityType.EXAM,
|
||||||
UserRole.EXAM_SUPPORTER);
|
UserRole.EXAM_SUPPORTER);
|
||||||
|
|
||||||
|
// check exam running
|
||||||
|
final Exam runningExam = this.examSessionService.getRunningExam(examId).getOr(null);
|
||||||
|
if (runningExam == null) {
|
||||||
|
throw new ExamNotRunningException("Exam not currently running: " + examId);
|
||||||
|
}
|
||||||
|
|
||||||
// check running exam privilege for specified exam
|
// check running exam privilege for specified exam
|
||||||
if (!hasRunningExamPrivilege(examId, institutionId)) {
|
if (!hasRunningExamPrivilege(runningExam, institutionId)) {
|
||||||
throw new PermissionDeniedException(
|
throw new PermissionDeniedException(
|
||||||
EntityType.EXAM,
|
EntityType.EXAM,
|
||||||
PrivilegeType.READ,
|
PrivilegeType.READ,
|
||||||
|
@ -217,8 +223,14 @@ public class ExamMonitoringController {
|
||||||
EntityType.EXAM,
|
EntityType.EXAM,
|
||||||
UserRole.EXAM_SUPPORTER);
|
UserRole.EXAM_SUPPORTER);
|
||||||
|
|
||||||
|
// check exam running
|
||||||
|
final Exam runningExam = this.examSessionService.getRunningExam(examId).getOr(null);
|
||||||
|
if (runningExam == null) {
|
||||||
|
throw new ExamNotRunningException("Exam not currently running: " + examId);
|
||||||
|
}
|
||||||
|
|
||||||
// check running exam privilege for specified exam
|
// check running exam privilege for specified exam
|
||||||
if (!hasRunningExamPrivilege(examId, institutionId)) {
|
if (!hasRunningExamPrivilege(runningExam, institutionId)) {
|
||||||
throw new PermissionDeniedException(
|
throw new PermissionDeniedException(
|
||||||
EntityType.EXAM,
|
EntityType.EXAM,
|
||||||
PrivilegeType.READ,
|
PrivilegeType.READ,
|
||||||
|
@ -243,6 +255,11 @@ public class ExamMonitoringController {
|
||||||
@PathVariable(name = API.PARAM_PARENT_MODEL_ID, required = true) final Long examId,
|
@PathVariable(name = API.PARAM_PARENT_MODEL_ID, required = true) final Long examId,
|
||||||
@Valid @RequestBody final ClientInstruction clientInstruction) {
|
@Valid @RequestBody final ClientInstruction clientInstruction) {
|
||||||
|
|
||||||
|
// check exam running
|
||||||
|
if (!this.examSessionService.isExamRunning(examId)) {
|
||||||
|
throw new ExamNotRunningException("Exam not currently running: " + examId);
|
||||||
|
}
|
||||||
|
|
||||||
this.sebClientInstructionService.registerInstruction(clientInstruction);
|
this.sebClientInstructionService.registerInstruction(clientInstruction);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -261,6 +278,11 @@ public class ExamMonitoringController {
|
||||||
@PathVariable(name = API.PARAM_PARENT_MODEL_ID, required = true) final Long examId,
|
@PathVariable(name = API.PARAM_PARENT_MODEL_ID, required = true) final Long examId,
|
||||||
@PathVariable(name = API.EXAM_API_SEB_CONNECTION_TOKEN, required = true) final String connectionToken) {
|
@PathVariable(name = API.EXAM_API_SEB_CONNECTION_TOKEN, required = true) final String connectionToken) {
|
||||||
|
|
||||||
|
// check exam running
|
||||||
|
if (!this.examSessionService.isExamRunning(examId)) {
|
||||||
|
throw new ExamNotRunningException("Exam not currently running: " + examId);
|
||||||
|
}
|
||||||
|
|
||||||
final ClientConnectionData connection = getConnectionDataForSingleConnection(
|
final ClientConnectionData connection = getConnectionDataForSingleConnection(
|
||||||
institutionId,
|
institutionId,
|
||||||
examId,
|
examId,
|
||||||
|
@ -286,6 +308,11 @@ public class ExamMonitoringController {
|
||||||
@PathVariable(name = API.PARAM_MODEL_ID, required = true) final Long notificationId,
|
@PathVariable(name = API.PARAM_MODEL_ID, required = true) final Long notificationId,
|
||||||
@PathVariable(name = API.EXAM_API_SEB_CONNECTION_TOKEN, required = true) final String connectionToken) {
|
@PathVariable(name = API.EXAM_API_SEB_CONNECTION_TOKEN, required = true) final String connectionToken) {
|
||||||
|
|
||||||
|
// check exam running
|
||||||
|
if (!this.examSessionService.isExamRunning(examId)) {
|
||||||
|
throw new ExamNotRunningException("Exam not currently running: " + examId);
|
||||||
|
}
|
||||||
|
|
||||||
this.sebClientNotificationService.confirmPendingNotification(
|
this.sebClientNotificationService.confirmPendingNotification(
|
||||||
notificationId,
|
notificationId,
|
||||||
examId,
|
examId,
|
||||||
|
@ -322,12 +349,6 @@ public class ExamMonitoringController {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private boolean hasRunningExamPrivilege(final Long examId, final Long institution) {
|
|
||||||
return hasRunningExamPrivilege(
|
|
||||||
this.examSessionService.getRunningExam(examId).getOr(null),
|
|
||||||
institution);
|
|
||||||
}
|
|
||||||
|
|
||||||
private boolean hasRunningExamPrivilege(final Exam exam, final Long institution) {
|
private boolean hasRunningExamPrivilege(final Exam exam, final Long institution) {
|
||||||
if (exam == null) {
|
if (exam == null) {
|
||||||
return false;
|
return false;
|
||||||
|
|
|
@ -0,0 +1,27 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2021 ETH Zürich, Educational Development and Technology (LET)
|
||||||
|
*
|
||||||
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package ch.ethz.seb.sebserver.webservice.weblayer.api;
|
||||||
|
|
||||||
|
public class ExamNotRunningException extends RuntimeException {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = -2931666431463176875L;
|
||||||
|
|
||||||
|
public ExamNotRunningException() {
|
||||||
|
super();
|
||||||
|
}
|
||||||
|
|
||||||
|
public ExamNotRunningException(final String message, final Throwable cause) {
|
||||||
|
super(message, cause);
|
||||||
|
}
|
||||||
|
|
||||||
|
public ExamNotRunningException(final String message) {
|
||||||
|
super(message);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -38,7 +38,7 @@ sebserver.webservice.internalSecret=${sebserver.password}
|
||||||
|
|
||||||
### webservice networking
|
### webservice networking
|
||||||
sebserver.webservice.forceMaster=false
|
sebserver.webservice.forceMaster=false
|
||||||
sebserver.webservice.distributed=false
|
sebserver.webservice.distributed=true
|
||||||
sebserver.webservice.distributed.pingUpdate=3000
|
sebserver.webservice.distributed.pingUpdate=3000
|
||||||
sebserver.webservice.http.external.scheme=https
|
sebserver.webservice.http.external.scheme=https
|
||||||
sebserver.webservice.http.external.servername=
|
sebserver.webservice.http.external.servername=
|
||||||
|
|
Loading…
Reference in a new issue