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

JBEAP-15215,WFLY-11209: Add expected warnings for jaxws-* quickstart when running the Java client #313

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 12 additions & 0 deletions jaxws-addressing/README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,18 @@ This is a known Eclipse issue. For more information, see Eclipse Bugzilla - http
----
Hello World!
----
+
[NOTE]
====
You will also see the following warnings in the *Problems* tab.
[source]
----
log4j:WARN No appenders could be found for logger (org.apache.cxf.common.logging.LogUtils).
log4j:WARN Please initialize the log4j system properly.
log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info.
----
You can ignore these warnings.
====

. To undeploy the project, right-click on the *{artifactId}* parent project and choose *Run As* –> *Maven build*. Enter `wildfly:undeploy` for the *Goals* and click *Run*.

Expand Down
12 changes: 12 additions & 0 deletions jaxws-ejb/README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,18 @@ For this quickstart, follow the special instructions to link:{useEclipseDeployJa
----
EJB3Bean returning: ejbClient calling
----
+
[NOTE]
====
You will also see the following warnings in the *Problems* tab.
[source]
----
log4j:WARN No appenders could be found for logger (org.apache.cxf.common.logging.LogUtils).
log4j:WARN Please initialize the log4j system properly.
log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info.
----
You can ignore these warnings.
====

. To undeploy the project, right-click on the *{artifactId}* parent project and choose *Run As* –> *Maven build*. Enter `wildfly:undeploy` for the *Goals* and click *Run*.

Expand Down
12 changes: 12 additions & 0 deletions jaxws-pojo/README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,18 @@ For this quickstart, follow the special instructions to link:{useEclipseDeployJa
----
JSEBean pojo: pojoClient calling
----
+
[NOTE]
====
You will also see the following warnings in the *Problems* tab.
[source]
----
log4j:WARN No appenders could be found for logger (org.apache.cxf.common.logging.LogUtils).
log4j:WARN Please initialize the log4j system properly.
log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info.
----
You can ignore these warnings.
====

. To undeploy the project, right-click on the *{artifactId}* parent project and choose *Run As* –> *Maven build*. Enter `wildfly:undeploy` for the *Goals* and click *Run*.

Expand Down
15 changes: 14 additions & 1 deletion jaxws-retail/README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -123,12 +123,25 @@ WFLYSRV0010: Deployed "{artifactId}-service.war"

** To access the application, right-click on the *{artifactId}-client* project and choose *Run As* –> *Java Application*.
** Choose the *Client* class and click *OK*.
** Review the output in the console window. You should see the following message:
** You should see the following message in the *Console* tab:
+
[source,options="nowrap"]
----
Jay Boss's discount is 10.00
----
+
[NOTE]
====
You will also see the following warnings in the *Problems* tab.
[source]
----
log4j:WARN No appenders could be found for logger (org.apache.cxf.common.logging.LogUtils).
log4j:WARN Please initialize the log4j system properly.
log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info.
----
You can ignore these warnings.
====

. To undeploy the project, right-click on the *{artifactId}-service* project and choose *Run As* –> *Maven build*. Enter `wildfly:undeploy` for the *Goals* and click *Run*.

// Debug the Application
Expand Down