Product: OpenFusion JacORB
Version: ALL
Description:
Using the ssl supported and required properties in the Jacorb.properties file
Resolution:
Within the Jacorb.properties file the client/server.supported_options specify as to whether SSL is supported by the client or the server.
The client/server.required_options specify as to whether SSL communication is a requirement for the client or server.
If you wish to have SSL available on both sides then use the following settings:
jacorb.security.support_ssl=on
jacorb.security.ssl.client.supported_options=20
jacorb.security.ssl.client.required_options=0
jacorb.security.ssl.server.supported_options=20
jacorb.security.ssl.server.required_options=0
If you wish to force the client and server to use SSL then use the following settings:
jacorb.security.support_ssl=on
jacorb.security.ssl.client.supported_options=20
jacorb.security.ssl.client.required_options=20
jacorb.security.ssl.server.supported_options=20
jacorb.security.ssl.server.required_options=20
These settings are further explained in Chapter 10.2 "Configuring SSL properties" in the Jacorb_ProgrammingGuide.pdf
#KnowledgeDocs
#OpenFusion