XML 토큰
XML 토큰은 SAML(Security Assertion Markup Language) 및 XrML(eXtensible rights Markup Language)의 잘 알려진 두 개의 형식으로 제공됩니다.
WebSphere® Application Server 버전 6 이상에서 자신의 구현에 연결할 수 있습니다. XML 기반 보안 토큰에서 <wsse:Security> 헤더의 확장 가능성을 사용 하여 이러한 보안 토큰을 헤더에 직접 삽입할 수 있습니다. 어설션 요소를 <wsse:Security> 헤더 안에 배치시켜서 웹 서비스를 사용하여 SAML 어설션이 웹 서비스 보안 메시지에 첨부됩니다. 다음 예는 SAML 어설션 토큰을 갖는 웹 서비스 보안 메시지를 보여줍니다.
<S:Envelope xmlns:S="...">
<S:Header>
<wsse:Security xmlns:wsse="...">
<saml:Assertion
MajorVersion="1"
MinorVersion="0"
AssertionID="SecurityToken-ef375268"
Issuer="elliotw1"
IssueInstant="2002-07-23T11:32:05.6228146-07:00"
xmlns:saml="urn:oasis:names:tc:SAML:1.0:assertion">
...
</saml:Assertion>
</wsse:Security>
</S:Header>
<S:Body>
...
</S:Body>
</S:Envelope>
지원되는 표준 및 스펙의 전체 목록은 웹 서비스 스펙 및 API 문서를 읽으십시오.