-
Notifications
You must be signed in to change notification settings - Fork 181
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generate Guid for types derived from http://microsoft.com/wsdl/types/…
- Loading branch information
Michael Ganss
committed
Jul 26, 2023
1 parent
0bcf3c6
commit 8c58cf2
Showing
5 changed files
with
55 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" | ||
id="BerichtHeaderSHV" | ||
targetNamespace="http://tempuri.org/v1" | ||
elementFormDefault="qualified" | ||
xmlns="http://tempuri.org/v1" | ||
version="1.0"> | ||
|
||
<xs:include schemaLocation="uuid.xsd"/> | ||
|
||
<xs:complexType name="Header"> | ||
<xs:sequence> | ||
<xs:element name="Reference" type="UUID"/> | ||
<xs:element name="Receiver" type="UUID" minOccurs="0" nillable="true"/> | ||
<xs:element name="CrossReference" type="UUID" minOccurs="0" nillable="true"/> | ||
<xs:element name="ConversationReference" type="UUID" minOccurs="0" nillable="true"/> | ||
<xs:element name="Version" type="xs:string"/> | ||
</xs:sequence> | ||
</xs:complexType> | ||
|
||
<xs:element name="Header" type="Header"/> | ||
</xs:schema> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<xs:schema xmlns:mxs="http://microsoft.com/wsdl/types/" | ||
xmlns:xs="http://www.w3.org/2001/XMLSchema" | ||
id="UUID" | ||
targetNamespace="http://tempuri.org/v1" | ||
xmlns:t="http://tempuri.org/v1" | ||
elementFormDefault="qualified" | ||
version="1.0"> | ||
|
||
<xs:import schemaLocation="guid.xsd" namespace="http://microsoft.com/wsdl/types/"/> | ||
<xs:simpleType name="IntermediateUUID"> | ||
<xs:restriction base="mxs:guid"/> | ||
</xs:simpleType> | ||
<xs:simpleType name="UUID"> | ||
<xs:restriction base="t:IntermediateUUID" /> | ||
</xs:simpleType> | ||
</xs:schema> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters