diff --git a/getting_started/topics/secure-jboss-app/install-client-adapter.adoc b/getting_started/topics/secure-jboss-app/install-client-adapter.adoc index f1cc1b05c1..28b4dd0c6e 100644 --- a/getting_started/topics/secure-jboss-app/install-client-adapter.adoc +++ b/getting_started/topics/secure-jboss-app/install-client-adapter.adoc @@ -16,20 +16,36 @@ Unzip this file into the root directory of your {{book.appserver.name}} distribu Next perform the following actions: -.Linux/Unix +.WildFly 10 and Linux/Unix [source] ---- $ cd bin $ ./jboss-cli.sh --file=adapter-install-offline.cli ---- -.Windows +.WildFly 10 and Windows [source] ---- > cd bin > jboss-cli.bat --file=adapter-install-offline.cli ---- +{% if book.community %} +.Wildfly 11 and Linux/Unix +[source] +---- +$ cd bin +$ ./jboss-cli.sh --file=adapter-elytron-install-offline.cli +---- + +.Wildfly 11 and Windows +[source] +---- +> cd bin +> jboss-cli.bat --file=adapter-elytron-install-offline.cli +---- +{% endif %} + This script will make the appropriate edits to the _.../standalone/configuration/standalone.xml_ file of your app server distribution. Finally, boot the application server. diff --git a/securing_apps/topics/oidc/java/jboss-adapter.adoc b/securing_apps/topics/oidc/java/jboss-adapter.adoc index 7b4ce16f51..355df53f29 100644 --- a/securing_apps/topics/oidc/java/jboss-adapter.adoc +++ b/securing_apps/topics/oidc/java/jboss-adapter.adoc @@ -27,7 +27,7 @@ Both methods are described in this section. Adapters are available as a separate archive depending on what server version you are using. {% if book.community %} -Install on Wildfly 9 or 10: +Install on Wildfly 9, 10 or 11: [source, subs="attributes"] ---- @@ -91,6 +91,15 @@ to configure the adapter subsystem. To configure the adapter subsystem if the server is not running execute: +{% if book.community %} +.Wildfly 11 +[source] +---- +$ ./bin/jboss-cli.sh --file=adapter-elytron-install-offline.cli +---- +{% endif %} + +.Any other server but Wildfly 11 [source] ---- $ ./bin/jboss-cli.sh --file=adapter-install-offline.cli @@ -100,6 +109,15 @@ NOTE: The offline script is not available for JBoss EAP 6 Alternatively, if the server is running execute: +{% if book.community %} +.Wildfly 11 +[source] +---- +$ ./bin/jboss-cli.sh --file=adapter-elytron-install.cli +---- +{% endif %} + +.Any other server but Wildfly 11 [source] ---- $ ./bin/jboss-cli.sh --file=adapter-install.cli diff --git a/securing_apps/topics/saml/java/jboss-adapter/jboss_adapter_installation.adoc b/securing_apps/topics/saml/java/jboss-adapter/jboss_adapter_installation.adoc index 3e9fbd5e1c..2639ac8192 100644 --- a/securing_apps/topics/saml/java/jboss-adapter/jboss_adapter_installation.adoc +++ b/securing_apps/topics/saml/java/jboss-adapter/jboss_adapter_installation.adoc @@ -5,7 +5,7 @@ Each adapter is a separate download on the {{book.project.name}} download site. {% if book.community %} -Install on Wildfly 9 or 10, or JBoss EAP 7: +Install on Wildfly 9 or 10, 11 or JBoss EAP 7: [source] ---- @@ -52,6 +52,15 @@ After adding the modules, you must then enable the {{book.project.name}} SAML Su There is a CLI script that will help you modify your server configuration. Start the server and run the script from the server's bin directory: +{% if book.community %} +.Wildfly 11 +[source] +---- +$ ./bin/jboss-cli.sh --file=adapter-elytron-install-saml.cli +---- +{% endif %} + +.Any other server but Wildfly 11 [source] ----