Skip to content

Commit 6af3f4c

Browse files
committed
added documentation for JRF provided Trust Service Identity asserter to the README
1 parent 5e65256 commit 6af3f4c

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ Many organizations are using WebLogic Server, with or without other Oracle Fusio
1616
- [Model Names](#model-names)
1717
- [Model Semantics](#model-semantics)
1818
- [Modeling Security Providers](site/security_providers.md)
19+
- [JRF Trust Service Identity Asserter](site/security_providers.md#trust-service-identity-asserter)
1920
- [Custom Security Providers](site/security_providers.md#custom-security-providers)
2021
- [Variable Injection](site/variable_injection.md)
2122
- [Model Filters](site/tool_filters.md)

site/security_providers.md

+16
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,22 @@ topology:
9090
DefaultIdentityAsserter:
9191
9292
```
93+
#### Trust Service Identity Asserter
94+
95+
**NOTE:** The Trust Identity Asserter Security Provider is installed by JRF in 12c versions and newer.
96+
97+
The JRF installed Trust Identity Asserter does not supply a schema file by default. Before you can configure this asserter with WLST offline or WDT offline, you must first build the schema file using the `prepareCustomProvider` script.
98+
99+
Here is an example of how to prepare and install a schema file from its MBean Jar File (MJF):
100+
101+
```bash
102+
export CONFIG_JVM_ARGS=-DSchemaTypeSystemName=TrustServiceIdentityAsserter
103+
104+
ORACLE_HOME/oracle_common/common/bin/prepareCustomProvider.sh -mjf=ORACLE_HOME/oracle_common/modules/oracle.jps/jps-wls-trustprovider.jar -out ORACLE_HOME/oracle_common/lib/schematypes/jps-wls-trustprovider.schema.jar
105+
106+
```
107+
For FMW versions 12.1.2 and 12.1.3, replace `oracle.jps` in the example path above with:
108+
oracle.jps_12.1.2, or oracle.jps_12.1.3, respectively.
93109

94110
#### Custom Security Providers
95111

0 commit comments

Comments
 (0)