我们有一条规则可以向我们的依赖第三方之一发布与以下内容完全匹配的属性(显然我做了一些更改):
<Attribute Name="http://example.com/#Something" NameFormat="urn:oasis:names:tc:SAML:2.0:attrname-format:unspecified">
<AttributeValue xsi:type="xsd:string">http://example.com</AttributeValue>
</Attribute>
我在声明规则语言中看不到任何可以让我进行上述操作的内容 - 获取Attribute Name
部件很容易,获取值AttributeValue
很容易,但是添加NameFormat
和获取类型AttributeValue
似乎并没有出现.
例如,这个:
=> issue(Type = "http://example.com/#Something",
Value = "http://example.com",
ValueType = "string");
可以带我们到这里:
<Attribute Name="http://example.com/#Something">
<AttributeValue a:type="tn:string" xmlns:tn=" http://www.w3.org/2001/XMLSchema" xmlns:a="http://www.w3.org/2001/XMLSchema-instance">http://something.com</AttributeValue>
</Attribute>
我们也尝试http://www.w3.org/2001/XMLSchema#string
了ValueType
相当相似的结果。我没有看到任何可以添加 的内容NameFormat
,而且添加的信息肯定AttributeValue
比我们需要的要多得多。
有没有办法只发出持续的索赔?这些值没有任何变化;我希望能够将 XML 放在某个地方并将其集成到整个 SAML 消息中。