0

When I am using the websphere console, and navigate to the Secure Administration -> SSO I have a checkbox called: 'Require SSL'. How do I enable/disable this using jacl/jython ?

I have even used the command assistance from the console. But when I checked the logs, I can see almost every other command being issues apart from this setting.

meso_2600
  • 1,940
  • 5
  • 25
  • 50

1 Answers1

1

Using Jython:

AdminTask.configureSingleSignon('-requiresSSL true')

Other available options for the configureSingleSignon command:

-enable [true|false]
-domainName [String]
-interoperable [true|false]
-attributePropagation [true|false]

Reference: SecurityConfigurationCommands command group for the AdminTask object.

Haxiel
  • 683
  • 7
  • 28