Skip to content

Commit 9a3d80c

Browse files
committed
SWITCHYARD-2573 cannot deploy demos/security-propagation on WildFly
1 parent d1cd03f commit 9a3d80c

File tree

4 files changed

+49
-2
lines changed

4 files changed

+49
-2
lines changed

demos/security-propagation/Readme.md

+34
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ protected via annotations is also called, and the security context is propagated
1212
Running the quickstart
1313
======================
1414

15+
EAP
16+
----------
17+
1518
1. Create an application user:
1619

1720
${AS}/bin/add-user.sh --user kermit --password the-frog-1 --realm ApplicationRealm --group friend
@@ -35,6 +38,37 @@ Running the quickstart
3538
cd ../ejb ; mvn clean -Pdeploy
3639

3740

41+
Wildfly
42+
----------
43+
44+
45+
1. Create an application user:
46+
47+
${WILDFLY}/bin/add-user.sh
48+
49+
realm=ApplicationRealm Username=kermit Password=the-frog-1 group=friend
50+
51+
2. Start Wildfly in standalone mode :
52+
53+
${WILDFLY}/bin/standalone.sh
54+
55+
3. Build and deploy the demo :
56+
57+
cd ejb ; mvn install -Pdeploy -Pwildfly
58+
cd ../basic ; mvn install -Pdeploy -Pwildfly
59+
4. Execute the test. (See "Options" section below.)
60+
61+
5. Check the server console for output from the service.
62+
63+
6. Undeploy the application, then the ejb
64+
65+
mvn clean -Pdeploy -Pwildfly
66+
cd ../ejb ; mvn clean -Pdeploy -Pwildfly
67+
68+
Warning --> Wildfly 8.0.0 When the application is undeployed, it is required to restart the server to get all the undeployment changes done.
69+
70+
71+
3872
Options
3973
=======
4074

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
if (outcome != success) of /subsystem=undertow/server=default-server/https-listener=https/:read-resource
2+
/core-service=management/security-realm=https:add()
3+
/core-service=management/security-realm=https/server-identity=ssl:add(keystore-path=${jboss.home.dir}/quickstarts/demos/security-propagation/basic/connector.jks, keystore-password=changeit)
4+
/subsystem=undertow/server=default-server/https-listener=https:add(socket-binding=https, security-realm=https)
5+
end-if

demos/security-propagation/basic/pom.xml

+6-2
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@
3535
<maven.compiler.target>1.6</maven.compiler.target>
3636
<maven.compiler.source>1.6</maven.compiler.source>
3737
<version.wildfly.maven>1.0.2.Final</version.wildfly.maven>
38+
<config.file>config.cli</config.file>
39+
<unconfig.file>unconfig.cli</unconfig.file>
3840
</properties>
3941
<dependencies>
4042
<dependency>
@@ -108,7 +110,7 @@
108110
<configuration>
109111
<beforeDeployment>
110112
<scripts>
111-
<script>config.cli</script>
113+
<script>${config.file}</script>
112114
</scripts>
113115
</beforeDeployment>
114116
<filename>${project.build.finalName}.jar</filename>
@@ -124,7 +126,7 @@
124126
<configuration>
125127
<afterDeployment>
126128
<scripts>
127-
<script>unconfig.cli</script>
129+
<script>${unconfig.file}</script>
128130
</scripts>
129131
</afterDeployment>
130132
<filename>${project.build.finalName}.jar</filename>
@@ -156,6 +158,8 @@
156158
<id>wildfly</id>
157159
<properties>
158160
<wildfly.port>9990</wildfly.port>
161+
<config.file>config_wildfly.cli</config.file>
162+
<unconfig.file>unconfig_wildfly.cli</unconfig.file>
159163
</properties>
160164
</profile>
161165
</profiles>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
if (outcome == success) of /subsystem=undertow/server=default-server/https-listener=https/:read-resource
2+
/subsystem=undertow/server=default-server/https-listener=https/:remove
3+
/core-service=management/security-realm=https/:remove
4+
end-if

0 commit comments

Comments
 (0)