Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SWITCHYARD-2522 IllegalThreadStateException running bpel-jms-binding on... #430

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 9 additions & 6 deletions bpel-jms-binding/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ EAP

2. Create an application user:

${AS}/bin/add-user.sh --user guest --password guestp.1 --realm ApplicationRealm --group guest
${AS}/bin/add-user.sh

realm=ApplicationRealm user=guest password=guestp.1 group=guest

3. Build and deploy the quickstart

Expand All @@ -35,21 +37,22 @@ EAP

Wildfly
----------
1. Start JBoss AS 7 in standalone-full mode:
1. Start Wildfly in standalone-full mode:

${AS}/bin/standalone.sh --server-config=standalone-full.xml
${WILDFLY}/bin/standalone.sh --server-config=standalone-full.xml

2. Create an application user:

${AS}/bin/add-user.sh --user guest --password guestp.1 --realm ApplicationRealm --group guest
${WILDFLY}/bin/add-user.sh
realm=ApplicationRealm user=guest password=guestp.1 group=guest

3. Build and deploy the quickstart

mvn install -Pwildfly -Pdeploy

4. Execute HornetQClient. See the "Expected Output" heading for the expected results.

mvn exec:java
mvn exec:java -Pwildfly

5. Undeploy the quickstart:

Expand Down Expand Up @@ -92,4 +95,4 @@ REPLY:
<sayHelloResponse xmlns="http://www.jboss.org/bpel/examples">
<tns:result xmlns:tns="http://www.jboss.org/bpel/examples">Hello Skippy</tns:result>
</sayHelloResponse>
```
```