Skip to content
Snippets Groups Projects
Commit daf83839 authored by Jan Zickermann's avatar Jan Zickermann
Browse files

OZG-6891 Use xta-test-server 1.6.0

parent 3000a9f0
No related branches found
No related tags found
No related merge requests found
......@@ -21,19 +21,19 @@ public class XtaTestServerContainer extends GenericContainer<XtaTestServerContai
}
public String getBaseUrl() {
return "https://%s:%d/services/XTAService/".formatted(getHost(), getMappedPort(PORT));
return "https://%s:%d/MB_XTA-WS/XTA210".formatted(getHost(), getMappedPort(PORT));
}
public String getMsgBoxPortUrl() {
return getBaseUrl() + "MsgBoxPort";
return getBaseUrl() + "msgBoxPort.svc";
}
public String getManagementPortUrl() {
return getBaseUrl() + "ManagementPort";
return getBaseUrl() + "managementPort.svc";
}
public String getSendPortUrl() {
return getBaseUrl() + "SendXtaPort";
return getBaseUrl() + "sendPort.svc";
}
}
......@@ -25,7 +25,7 @@ import lombok.extern.slf4j.Slf4j;
public class XtaTestServerSetupExtension implements BeforeAllCallback, AfterAllCallback, BeforeEachCallback {
private static final DockerImageName XTA_TEST_SERVER_IMAGE = DockerImageName.parse("docker.ozg-sh.de/xta-test-server")
.withTag("latest");
.withTag("1.6.0");
private static final String JOHN_SMITH_KEYSTORE_PATH = "store/john-smith-client-cert-keystore.p12";
private static final String JOHN_SMITH_KEYSTORE_PASSWORD = "password";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment