Oracle® Fusion Middleware Administrator's Guide for E-Business Suite Adapter for Oracle Enterprise Content Management 11g Release 1 (11.1.1) Part Number E15865-01 |
|
|
View PDF |
Use the AXF_PROPERTIES table to define properties for AXF integration for E-Business Suite.
Table 4-7 Column Description for AXF_PROPERTIES Table
Column | Description |
---|---|
PROPNAME |
Specifies properties to be used. Properties include:
|
PROPVALUE |
Specifies the property's value. |
This example table shows the default properties values.
Table 4-8 Example AXF_PROPERTIES Table
PROPNAME | PROPVALUE |
---|---|
SecureMode |
OFF |
AXFWalletPath |
file:<walletpath> |
AXFWalletPwd |
walletpassword |
AXF_VERSION |
2 |
AXF_SOAP_POLICY |
USER_NAME_TOKEN |
AXF_SOAP_SECURITY |
FALSE |
AXF_SOAP_USER |
AXF |
Follow these steps to configure SOAP security, in which the application sends the SOAP user and password in the header for authentication.
Enable SOAP security by specifying TRUE
for the AXF_SOAP_SECURITY property in the AXF_PROPERTIES Table.
Set the AXF_SOAP_POLICY property to USER_NAME_TOKEN
.
Store the SOAP password in the database vault by executing the following command as APPS schema:
execute fnd_vault.put('AXF','<AXF_SOAP_USER>','<SOAP_PASSWORD');
Where <AXF_SOAP_USER> is the SOAP user id used in the SOAP header for authentication, and <SOAP_PASSWORD> is the SOAP password.
Verify the previous command with this statement:
select fnd_vault.get ('AXF','<AXF_SOAP_USER>') from dual;