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

Merge branch 'KOP-3126-Workaround-Unmarshall-exception' into 'main'

KOP-3126 xta: Remove NCName restriction for fileIds

See merge request !5
parents 54b79d5b 9192e966
Branches
Tags
1 merge request!5KOP-3126 xta: Remove NCName restriction for fileIds
Pipeline #2314 passed
......@@ -366,7 +366,7 @@ Die Belegung der Attribute ist für verschiedene Fachlichkeiten unterschiedlich
<xs:documentation>Der Dateiname der Datenquelle, falls der Inhalt einer Datei entnommen worden ist. Bsp.: Für die Übermittlung von xdomea-Nachrichten ist dieses Attribut Pflicht.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="id" type="xs:ID" use="optional">
<xs:attribute name="id" type="oscimeta:NonEmptyStringType" use="optional">
<xs:annotation>
<xs:documentation>Bietet die Möglichkeit, den Inhalt über z.B. eine laufende Nummer zu referenzieren.</xs:documentation>
</xs:annotation>
......
......@@ -126,6 +126,7 @@ public class XtaMessageExampleLoader {
.name(name)
.contentType(getString.apply("contentType"))
.content(createContentDataHandler(data))
.id(MapUtils.getString(messageFile, "id"))
.build();
}
......
......@@ -24,7 +24,7 @@ import lombok.extern.slf4j.Slf4j;
public class XtaTestServerSetupExtension implements BeforeAllCallback, AfterAllCallback {
private static final DockerImageName XTA_TEST_SERVER_IMAGE = DockerImageName.parse("docker.ozg-sh.de/xta-test-server")
.withTag("latest");
.withTag("1.9.0-main");
private static final String XTA_TEST_CLIENT_KEYSTORE_PATH = "store/xta-test-client-john-smith_keystore.p12";
private static final String XTA_TEST_CLIENT_KEYSTORE_PASSWORD = "password";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment