The basis for any Kobil AST configuration in Airlock IAM is the connection to the SSMS. The plugin Kobil SSMS Client has trhee main properties:
- Portal Lib Config
- Trust Store
- Key Store
These are 3 files that can be exported from the SSMS installation. The Portal Lib Config is an XML file that contains the connection information.
Make sure that you use authenticated communication with the SSMS server, to avoid interference with other applications communicating with the server. This is achieved by configuring the "Portal Services" on the SSMS and adding the libPortalAstId and portalSharedSecret Properties in the XML file.asdfasdf
A PortalLib configuration XML will look similar to this example:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <portalLib> <deviceEventInterval_ms>0</deviceEventInterval_ms> <libPortalAstId>myIAM</libPortalAstId> <portalSharedSecret>123456</portalSharedSecret> <properties> <entry> <key>com.sun.xml.ws.connect.timeout</key> <value xsi:type="xs:int" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">20000</value> </entry> <entry> <key>com.sun.xml.ws.request.timeout</key> <value xsi:type="xs:int" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">20000</value> </entry> <entry> <key>javax.xml.ws.session.maintain</key> <value xsi:type="xs:boolean" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">true</value> </entry> </properties> <ssmsNode> <internalUrl>https://kobilssms.local:8443/ssms-gui</internalUrl> <ssmsNodeType>MGT</ssmsNodeType> </ssmsNode> <keystorePassword>123456</keystorePassword> <truststorePassword>123456</truststorePassword> <usingExternalLoadBalancer>false</usingExternalLoadBalancer> </portalLib>