Skip to content

Commit

Permalink
Change wst-prefix to trust
Browse files Browse the repository at this point in the history
  • Loading branch information
tvdijen committed Oct 16, 2024
1 parent 530048a commit b26398d
Show file tree
Hide file tree
Showing 57 changed files with 103 additions and 103 deletions.
2 changes: 1 addition & 1 deletion src/XML/wst_200512/AbstractWstElement.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ abstract class AbstractWstElement extends AbstractElement
public const NS = C::NS_TRUST_200512;

/** @var string */
public const NS_PREFIX = 'wst';
public const NS_PREFIX = 'trust';
}
2 changes: 1 addition & 1 deletion src/XML/wst_200512/Issuer.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ final class Issuer extends AbstractEndpointReferenceType
public const NS = C::NS_TRUST_200512;

/** @var string */
public const NS_PREFIX = 'wst';
public const NS_PREFIX = 'trust';

/** The exclusions for the xs:any element */
public const XS_ANY_ELT_EXCLUSIONS = [
Expand Down
2 changes: 1 addition & 1 deletion tests/WSSecurity/XML/wst_200512/ParticipantsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public function testMarshallingEmptyElement(): void
$wstns = C::NS_TRUST_200512;
$participants = new Participants();
$this->assertEquals(
"<wst:Participants xmlns:wst=\"$wstns\"/>",
"<trust:Participants xmlns:trust=\"$wstns\"/>",
strval($participants),
);
$this->assertTrue($participants->isEmptyElement());
Expand Down
2 changes: 1 addition & 1 deletion tests/resources/xml/wst/200512/AllowPostdating.xml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<wst:AllowPostdating xmlns:wst="http://docs.oasis-open.org/ws-sx/ws-trust/200512/" />
<trust:AllowPostdating xmlns:trust="http://docs.oasis-open.org/ws-sx/ws-trust/200512/" />
2 changes: 1 addition & 1 deletion tests/resources/xml/wst/200512/AuthenticationType.xml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<wst:AuthenticationType xmlns:wst="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">urn:x-simplesamlphp:namespace</wst:AuthenticationType>
<trust:AuthenticationType xmlns:trust="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">urn:x-simplesamlphp:namespace</trust:AuthenticationType>
6 changes: 3 additions & 3 deletions tests/resources/xml/wst/200512/Authenticator.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<wst:Authenticator xmlns:wst="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">
<wst:CombinedHash>/CTj03d1DB5e2t7CTo9BEzCf5S9NRzwnBgZRlm32REI=</wst:CombinedHash>
<trust:Authenticator xmlns:trust="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">
<trust:CombinedHash>/CTj03d1DB5e2t7CTo9BEzCf5S9NRzwnBgZRlm32REI=</trust:CombinedHash>
<wsa:MessageID xmlns:wsa="http://www.w3.org/2005/08/addressing" soapenv:mustUnderstand="1" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">uuid:d0ccf3cd-2dce-4c1a-a5d6-be8912ecd7de</wsa:MessageID>
</wst:Authenticator>
</trust:Authenticator>
2 changes: 1 addition & 1 deletion tests/resources/xml/wst/200512/BinaryExchange.xml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<wst:BinaryExchange xmlns:wst="http://docs.oasis-open.org/ws-sx/ws-trust/200512/" xmlns:ssp="urn:x-simplesamlphp:namespace" ValueType="urn:x-simplesamlphp:namespace" EncodingType="urn:x-simplesamlphp:namespace" ssp:attr1="testval1">phpunit</wst:BinaryExchange>
<trust:BinaryExchange xmlns:trust="http://docs.oasis-open.org/ws-sx/ws-trust/200512/" xmlns:ssp="urn:x-simplesamlphp:namespace" ValueType="urn:x-simplesamlphp:namespace" EncodingType="urn:x-simplesamlphp:namespace" ssp:attr1="testval1">phpunit</trust:BinaryExchange>
2 changes: 1 addition & 1 deletion tests/resources/xml/wst/200512/BinarySecret.xml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<wst:BinarySecret xmlns:wst="http://docs.oasis-open.org/ws-sx/ws-trust/200512/" xmlns:ssp="urn:x-simplesamlphp:namespace" Type="http://docs.oasis-open.org/ws-sx/ws-trust/200512/Nonce" ssp:attr1="testval1">/CTj03d1DB5e2t7CTo9BEzCf5S9NRzwnBgZRlm32REI=</wst:BinarySecret>
<trust:BinarySecret xmlns:trust="http://docs.oasis-open.org/ws-sx/ws-trust/200512/" xmlns:ssp="urn:x-simplesamlphp:namespace" Type="http://docs.oasis-open.org/ws-sx/ws-trust/200512/Nonce" ssp:attr1="testval1">/CTj03d1DB5e2t7CTo9BEzCf5S9NRzwnBgZRlm32REI=</trust:BinarySecret>
4 changes: 2 additions & 2 deletions tests/resources/xml/wst/200512/CancelTarget.xml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<wst:CancelTarget xmlns:wst="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">
<trust:CancelTarget xmlns:trust="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">
<wsa:MessageID xmlns:wsa="http://www.w3.org/2005/08/addressing" soapenv:mustUnderstand="1" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">uuid:d0ccf3cd-2dce-4c1a-a5d6-be8912ecd7de</wsa:MessageID>
</wst:CancelTarget>
</trust:CancelTarget>
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<wst:CanonicalizationAlgorithm xmlns:wst="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">urn:x-simplesamlphp:namespace</wst:CanonicalizationAlgorithm>
<trust:CanonicalizationAlgorithm xmlns:trust="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">urn:x-simplesamlphp:namespace</trust:CanonicalizationAlgorithm>
2 changes: 1 addition & 1 deletion tests/resources/xml/wst/200512/Challenge.xml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<wst:Challenge xmlns:wst="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">accepted</wst:Challenge>
<trust:Challenge xmlns:trust="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">accepted</trust:Challenge>
4 changes: 2 additions & 2 deletions tests/resources/xml/wst/200512/Claims.xml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<wst:Claims xmlns:wst="http://docs.oasis-open.org/ws-sx/ws-trust/200512/" xmlns:ssp="urn:x-simplesamlphp:namespace" xmlns:wsa="http://www.w3.org/2005/08/addressing" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" Dialect="urn:x-simplesamlphp:namespace" ssp:attr1="testval1">
<trust:Claims xmlns:trust="http://docs.oasis-open.org/ws-sx/ws-trust/200512/" xmlns:ssp="urn:x-simplesamlphp:namespace" xmlns:wsa="http://www.w3.org/2005/08/addressing" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" Dialect="urn:x-simplesamlphp:namespace" ssp:attr1="testval1">
<wsa:MessageID soapenv:mustUnderstand="1">uuid:d0ccf3cd-2dce-4c1a-a5d6-be8912ecd7de</wsa:MessageID>
</wst:Claims>
</trust:Claims>
2 changes: 1 addition & 1 deletion tests/resources/xml/wst/200512/Code.xml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<wst:Code xmlns:wst="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">http://docs.oasis-open.org/ws-sx/ws-trust/200512/status/invalid</wst:Code>
<trust:Code xmlns:trust="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">http://docs.oasis-open.org/ws-sx/ws-trust/200512/status/invalid</trust:Code>
2 changes: 1 addition & 1 deletion tests/resources/xml/wst/200512/CombinedHash.xml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<wst:CombinedHash xmlns:wst="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">/CTj03d1DB5e2t7CTo9BEzCf5S9NRzwnBgZRlm32REI=</wst:CombinedHash>
<trust:CombinedHash xmlns:trust="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">/CTj03d1DB5e2t7CTo9BEzCf5S9NRzwnBgZRlm32REI=</trust:CombinedHash>
2 changes: 1 addition & 1 deletion tests/resources/xml/wst/200512/ComputedKey.xml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<wst:ComputedKey xmlns:wst="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">http://docs.oasis-open.org/ws-sx/ws-trust/200512/CK/PSHA1</wst:ComputedKey>
<trust:ComputedKey xmlns:trust="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">http://docs.oasis-open.org/ws-sx/ws-trust/200512/CK/PSHA1</trust:ComputedKey>
2 changes: 1 addition & 1 deletion tests/resources/xml/wst/200512/ComputedKeyAlgorithm.xml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<wst:ComputedKeyAlgorithm xmlns:wst="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">urn:x-simplesamlphp:namespace</wst:ComputedKeyAlgorithm>
<trust:ComputedKeyAlgorithm xmlns:trust="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">urn:x-simplesamlphp:namespace</trust:ComputedKeyAlgorithm>
2 changes: 1 addition & 1 deletion tests/resources/xml/wst/200512/Delegatable.xml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<wst:Delegatable xmlns:wst="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">true</wst:Delegatable>
<trust:Delegatable xmlns:trust="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">true</trust:Delegatable>
4 changes: 2 additions & 2 deletions tests/resources/xml/wst/200512/DelegateTo.xml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<wst:DelegateTo xmlns:wst="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">
<trust:DelegateTo xmlns:trust="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">
<wsa:MessageID xmlns:wsa="http://www.w3.org/2005/08/addressing" soapenv:mustUnderstand="1" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">uuid:d0ccf3cd-2dce-4c1a-a5d6-be8912ecd7de</wsa:MessageID>
</wst:DelegateTo>
</trust:DelegateTo>
2 changes: 1 addition & 1 deletion tests/resources/xml/wst/200512/EncryptWith.xml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<wst:EncryptWith xmlns:wst="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">urn:x-simplesamlphp:namespace</wst:EncryptWith>
<trust:EncryptWith xmlns:trust="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">urn:x-simplesamlphp:namespace</trust:EncryptWith>
4 changes: 2 additions & 2 deletions tests/resources/xml/wst/200512/Encryption.xml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<wst:Encryption xmlns:wst="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">
<trust:Encryption xmlns:trust="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">
<wsa:MessageID xmlns:wsa="http://www.w3.org/2005/08/addressing" soapenv:mustUnderstand="1" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">uuid:d0ccf3cd-2dce-4c1a-a5d6-be8912ecd7de</wsa:MessageID>
</wst:Encryption>
</trust:Encryption>
2 changes: 1 addition & 1 deletion tests/resources/xml/wst/200512/EncryptionAlgorithm.xml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<wst:EncryptionAlgorithm xmlns:wst="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">urn:x-simplesamlphp:namespace</wst:EncryptionAlgorithm>
<trust:EncryptionAlgorithm xmlns:trust="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">urn:x-simplesamlphp:namespace</trust:EncryptionAlgorithm>
4 changes: 2 additions & 2 deletions tests/resources/xml/wst/200512/Entropy.xml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<wst:Entropy xmlns:wst="http://docs.oasis-open.org/ws-sx/ws-trust/200512/" xmlns:ssp="urn:x-simplesamlphp:namespace" xmlns:wsa="http://www.w3.org/2005/08/addressing" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" ssp:attr1="testval1">
<trust:Entropy xmlns:trust="http://docs.oasis-open.org/ws-sx/ws-trust/200512/" xmlns:ssp="urn:x-simplesamlphp:namespace" xmlns:wsa="http://www.w3.org/2005/08/addressing" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" ssp:attr1="testval1">
<wsa:MessageID soapenv:mustUnderstand="1">uuid:d0ccf3cd-2dce-4c1a-a5d6-be8912ecd7de</wsa:MessageID>
</wst:Entropy>
</trust:Entropy>
2 changes: 1 addition & 1 deletion tests/resources/xml/wst/200512/Forwardable.xml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<wst:Forwardable xmlns:wst="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">true</wst:Forwardable>
<trust:Forwardable xmlns:trust="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">true</trust:Forwardable>
8 changes: 4 additions & 4 deletions tests/resources/xml/wst/200512/IssuedTokens.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<wst:IssuedTokens xmlns:wst="http://docs.oasis-open.org/ws-sx/ws-trust/200512/" xmlns:ssp="urn:x-simplesamlphp:namespace" xmlns:wsa="http://www.w3.org/2005/08/addressing" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" ssp:attr2="testval2">
<wst:RequestSecurityTokenResponse Context="urn:x-simplesamlphp:namespace" ssp:attr1="testval1">
<trust:IssuedTokens xmlns:trust="http://docs.oasis-open.org/ws-sx/ws-trust/200512/" xmlns:ssp="urn:x-simplesamlphp:namespace" xmlns:wsa="http://www.w3.org/2005/08/addressing" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" ssp:attr2="testval2">
<trust:RequestSecurityTokenResponse Context="urn:x-simplesamlphp:namespace" ssp:attr1="testval1">
<wsa:MessageID soapenv:mustUnderstand="1">uuid:d0ccf3cd-2dce-4c1a-a5d6-be8912ecd7de</wsa:MessageID>
</wst:RequestSecurityTokenResponse>
</wst:IssuedTokens>
</trust:RequestSecurityTokenResponse>
</trust:IssuedTokens>
4 changes: 2 additions & 2 deletions tests/resources/xml/wst/200512/Issuer.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<wst:Issuer xmlns:wst="http://docs.oasis-open.org/ws-sx/ws-trust/200512/" xmlns:ssp="urn:x-simplesamlphp:namespace" ssp:test1="value1">
<trust:Issuer xmlns:trust="http://docs.oasis-open.org/ws-sx/ws-trust/200512/" xmlns:ssp="urn:x-simplesamlphp:namespace" ssp:test1="value1">
<wsa:Address xmlns:wsa="http://www.w3.org/2005/08/addressing" ssp:test2="value2">https://login.microsoftonline.com/login.srf</wsa:Address>
<wsa:ReferenceParameters xmlns:wsa="http://www.w3.org/2005/08/addressing" ssp:test4="value4">
<m:GetPrice xmlns:m="https://www.w3schools.com/prices">
Expand All @@ -11,4 +11,4 @@
</m:GetPrice>
</wsa:Metadata>
<ssp:Chunk>SomeChunk</ssp:Chunk>
</wst:Issuer>
</trust:Issuer>
4 changes: 2 additions & 2 deletions tests/resources/xml/wst/200512/KeyExchangeToken.xml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<wst:KeyExchangeToken xmlns:wst="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">
<trust:KeyExchangeToken xmlns:trust="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">
<wsa:MessageID xmlns:wsa="http://www.w3.org/2005/08/addressing" soapenv:mustUnderstand="1" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">uuid:d0ccf3cd-2dce-4c1a-a5d6-be8912ecd7de</wsa:MessageID>
</wst:KeyExchangeToken>
</trust:KeyExchangeToken>
2 changes: 1 addition & 1 deletion tests/resources/xml/wst/200512/KeySize.xml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<wst:KeySize xmlns:wst="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">4096</wst:KeySize>
<trust:KeySize xmlns:trust="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">4096</trust:KeySize>
2 changes: 1 addition & 1 deletion tests/resources/xml/wst/200512/KeyType.xml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<wst:KeyType xmlns:wst="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">http://docs.oasis-open.org/ws-sx/ws-trust/200512/PublicKey</wst:KeyType>
<trust:KeyType xmlns:trust="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">http://docs.oasis-open.org/ws-sx/ws-trust/200512/PublicKey</trust:KeyType>
2 changes: 1 addition & 1 deletion tests/resources/xml/wst/200512/KeyWrapAlgorithm.xml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<wst:KeyWrapAlgorithm xmlns:wst="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">urn:x-simplesamlphp:namespace</wst:KeyWrapAlgorithm>
<trust:KeyWrapAlgorithm xmlns:trust="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">urn:x-simplesamlphp:namespace</trust:KeyWrapAlgorithm>
4 changes: 2 additions & 2 deletions tests/resources/xml/wst/200512/Lifetime.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<wst:Lifetime xmlns:wst="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">
<trust:Lifetime xmlns:trust="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">
<wsu:Created xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">2001-09-13T08:42:00Z</wsu:Created>
<wsu:Expires xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">2001-10-13T09:00:00Z</wsu:Expires>
</wst:Lifetime>
</trust:Lifetime>
4 changes: 2 additions & 2 deletions tests/resources/xml/wst/200512/OnBehalfOf.xml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<wst:OnBehalfOf xmlns:wst="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">
<trust:OnBehalfOf xmlns:trust="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">
<wsa:MessageID xmlns:wsa="http://www.w3.org/2005/08/addressing" soapenv:mustUnderstand="1" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">uuid:d0ccf3cd-2dce-4c1a-a5d6-be8912ecd7de</wsa:MessageID>
</wst:OnBehalfOf>
</trust:OnBehalfOf>
4 changes: 2 additions & 2 deletions tests/resources/xml/wst/200512/Participant.xml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<wst:Participant xmlns:wst="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">
<trust:Participant xmlns:trust="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">
<wsa:MessageID xmlns:wsa="http://www.w3.org/2005/08/addressing" soapenv:mustUnderstand="1" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">uuid:d0ccf3cd-2dce-4c1a-a5d6-be8912ecd7de</wsa:MessageID>
</wst:Participant>
</trust:Participant>
12 changes: 6 additions & 6 deletions tests/resources/xml/wst/200512/Participants.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<wst:Participants xmlns:wst="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">
<wst:Primary>
<trust:Participants xmlns:trust="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">
<trust:Primary>
<wsa:MessageID xmlns:wsa="http://www.w3.org/2005/08/addressing" soapenv:mustUnderstand="1" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">uuid:d0ccf3cd-2dce-4c1a-a5d6-be8912ecd7de</wsa:MessageID>
</wst:Primary>
<wst:Participant>
</trust:Primary>
<trust:Participant>
<wsa:MessageID xmlns:wsa="http://www.w3.org/2005/08/addressing" soapenv:mustUnderstand="1" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">uuid:d0ccf3cd-2dce-4c1a-a5d6-be8912ecd7de</wsa:MessageID>
</wst:Participant>
</trust:Participant>
<wsa:MessageID xmlns:wsa="http://www.w3.org/2005/08/addressing" soapenv:mustUnderstand="1" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">uuid:d0ccf3cd-2dce-4c1a-a5d6-be8912ecd7de</wsa:MessageID>
</wst:Participants>
</trust:Participants>
4 changes: 2 additions & 2 deletions tests/resources/xml/wst/200512/Primary.xml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<wst:Primary xmlns:wst="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">
<trust:Primary xmlns:trust="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">
<wsa:MessageID xmlns:wsa="http://www.w3.org/2005/08/addressing" soapenv:mustUnderstand="1" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">uuid:d0ccf3cd-2dce-4c1a-a5d6-be8912ecd7de</wsa:MessageID>
</wst:Primary>
</trust:Primary>
4 changes: 2 additions & 2 deletions tests/resources/xml/wst/200512/ProofEncryption.xml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<wst:ProofEncryption xmlns:wst="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">
<trust:ProofEncryption xmlns:trust="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">
<wsa:MessageID xmlns:wsa="http://www.w3.org/2005/08/addressing" soapenv:mustUnderstand="1" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">uuid:d0ccf3cd-2dce-4c1a-a5d6-be8912ecd7de</wsa:MessageID>
</wst:ProofEncryption>
</trust:ProofEncryption>
2 changes: 1 addition & 1 deletion tests/resources/xml/wst/200512/Reason.xml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<wst:Reason xmlns:wst="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">phpunit</wst:Reason>
<trust:Reason xmlns:trust="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">phpunit</trust:Reason>
4 changes: 2 additions & 2 deletions tests/resources/xml/wst/200512/RenewTarget.xml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<wst:RenewTarget xmlns:wst="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">
<trust:RenewTarget xmlns:trust="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">
<wsa:MessageID xmlns:wsa="http://www.w3.org/2005/08/addressing" soapenv:mustUnderstand="1" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">uuid:d0ccf3cd-2dce-4c1a-a5d6-be8912ecd7de</wsa:MessageID>
</wst:RenewTarget>
</trust:RenewTarget>
2 changes: 1 addition & 1 deletion tests/resources/xml/wst/200512/Renewing.xml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<wst:Renewing xmlns:wst="http://docs.oasis-open.org/ws-sx/ws-trust/200512/" Allow="true" OK="false"/>
<trust:Renewing xmlns:trust="http://docs.oasis-open.org/ws-sx/ws-trust/200512/" Allow="true" OK="false"/>
2 changes: 1 addition & 1 deletion tests/resources/xml/wst/200512/RequestKET.xml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<wst:RequestKET xmlns:wst="http://docs.oasis-open.org/ws-sx/ws-trust/200512/" />
<trust:RequestKET xmlns:trust="http://docs.oasis-open.org/ws-sx/ws-trust/200512/" />
4 changes: 2 additions & 2 deletions tests/resources/xml/wst/200512/RequestSecurityToken.xml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<wst:RequestSecurityToken xmlns:wst="http://docs.oasis-open.org/ws-sx/ws-trust/200512/" xmlns:ssp="urn:x-simplesamlphp:namespace" Context="urn:x-simplesamlphp:namespace" ssp:attr1="testval1">
<trust:RequestSecurityToken xmlns:trust="http://docs.oasis-open.org/ws-sx/ws-trust/200512/" xmlns:ssp="urn:x-simplesamlphp:namespace" Context="urn:x-simplesamlphp:namespace" ssp:attr1="testval1">
<wsa:MessageID xmlns:wsa="http://www.w3.org/2005/08/addressing" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" soapenv:mustUnderstand="1">uuid:d0ccf3cd-2dce-4c1a-a5d6-be8912ecd7de</wsa:MessageID>
</wst:RequestSecurityToken>
</trust:RequestSecurityToken>
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<wst:RequestSecurityTokenCollection xmlns:wst="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">
<wst:RequestSecurityToken xmlns:ssp="urn:x-simplesamlphp:namespace" Context="urn:x-simplesamlphp:namespace" ssp:attr1="testval1">
<trust:RequestSecurityTokenCollection xmlns:trust="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">
<trust:RequestSecurityToken xmlns:ssp="urn:x-simplesamlphp:namespace" Context="urn:x-simplesamlphp:namespace" ssp:attr1="testval1">
<wsa:MessageID xmlns:wsa="http://www.w3.org/2005/08/addressing" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" soapenv:mustUnderstand="1">uuid:d0ccf3cd-2dce-4c1a-a5d6-be8912ecd7de</wsa:MessageID>
</wst:RequestSecurityToken>
<wst:RequestSecurityToken xmlns:ssp="urn:x-simplesamlphp:namespace" Context="urn:x-simplesamlphp:namespace" ssp:attr2="testval2">
</trust:RequestSecurityToken>
<trust:RequestSecurityToken xmlns:ssp="urn:x-simplesamlphp:namespace" Context="urn:x-simplesamlphp:namespace" ssp:attr2="testval2">
<wsa:MessageID xmlns:wsa="http://www.w3.org/2005/08/addressing" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" soapenv:mustUnderstand="1">uuid:d0ccf3cd-2dce-4c1a-a5d6-be8912ecd7df</wsa:MessageID>
</wst:RequestSecurityToken>
</wst:RequestSecurityTokenCollection>
</trust:RequestSecurityToken>
</trust:RequestSecurityTokenCollection>
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<wst:RequestSecurityTokenResponse xmlns:wst="http://docs.oasis-open.org/ws-sx/ws-trust/200512/" xmlns:ssp="urn:x-simplesamlphp:namespace" Context="urn:x-simplesamlphp:namespace" ssp:attr1="testval1">
<trust:RequestSecurityTokenResponse xmlns:trust="http://docs.oasis-open.org/ws-sx/ws-trust/200512/" xmlns:ssp="urn:x-simplesamlphp:namespace" Context="urn:x-simplesamlphp:namespace" ssp:attr1="testval1">
<wsa:MessageID xmlns:wsa="http://www.w3.org/2005/08/addressing" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" soapenv:mustUnderstand="1">uuid:d0ccf3cd-2dce-4c1a-a5d6-be8912ecd7de</wsa:MessageID>
</wst:RequestSecurityTokenResponse>
</trust:RequestSecurityTokenResponse>
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<wst:RequestSecurityTokenResponseCollection xmlns:wst="http://docs.oasis-open.org/ws-sx/ws-trust/200512/" xmlns:ssp="urn:x-simplesamlphp:namespace" xmlns:wsa="http://www.w3.org/2005/08/addressing" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" ssp:attr2="testval2">
<wst:RequestSecurityTokenResponse Context="urn:x-simplesamlphp:namespace" ssp:attr1="testval1">
<trust:RequestSecurityTokenResponseCollection xmlns:trust="http://docs.oasis-open.org/ws-sx/ws-trust/200512/" xmlns:ssp="urn:x-simplesamlphp:namespace" xmlns:wsa="http://www.w3.org/2005/08/addressing" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" ssp:attr2="testval2">
<trust:RequestSecurityTokenResponse Context="urn:x-simplesamlphp:namespace" ssp:attr1="testval1">
<wsa:MessageID soapenv:mustUnderstand="1">uuid:d0ccf3cd-2dce-4c1a-a5d6-be8912ecd7de</wsa:MessageID>
</wst:RequestSecurityTokenResponse>
</wst:RequestSecurityTokenResponseCollection>
</trust:RequestSecurityTokenResponse>
</trust:RequestSecurityTokenResponseCollection>
2 changes: 1 addition & 1 deletion tests/resources/xml/wst/200512/RequestType.xml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<wst:RequestType xmlns:wst="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">http://docs.oasis-open.org/ws-sx/ws-trust/200512/Issue</wst:RequestType>
<trust:RequestType xmlns:trust="http://docs.oasis-open.org/ws-sx/ws-trust/200512/">http://docs.oasis-open.org/ws-sx/ws-trust/200512/Issue</trust:RequestType>
Loading

0 comments on commit b26398d

Please sign in to comment.