Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
xml
xml
<Policy id="foo"     validate="false"
    signedAssertions="false"
    >
    <Rule type="MessageFlow" checkReplay="true" expires="60"/>
    <Rule type="ClientCertAuth" errorFatal="true"/>
    <Rule type="XMLSigning" errorFatal="true"/>
    <Rule type="SimpleSigning" errorFatal="true"/>
</Policy>

...

  • validate (boolean) (defaults to false)
    • Enables or disables schema validation of XML when parsing messages at runtime. Includes all SAML and SOAP messages.
    signedAssertions (boolean) (defaults to false)
    • When true, assertions MUST be digitally signed, regardless of any other signatures used to authenticate them. Typically needed only for advanced auditing or assertion forwarding use cases.

Child Elements

  • <TransportOption> (zero or more)
    • A "hole" in the transport independence of the system allowing implementation-specific options to be passed into the actual SOAP client transport. Only for experts.

...