Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ioggstream/jboss-helloworld-ws
A simple webapp from jboss-eap-quickstarts, for teaching Jenkins Pipelines.
https://github.com/ioggstream/jboss-helloworld-ws
Last synced: 25 days ago
JSON representation
A simple webapp from jboss-eap-quickstarts, for teaching Jenkins Pipelines.
- Host: GitHub
- URL: https://github.com/ioggstream/jboss-helloworld-ws
- Owner: ioggstream
- Created: 2015-08-05T15:37:27.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-08-06T15:59:08.000Z (over 9 years ago)
- Last Synced: 2024-10-15T03:43:02.874Z (2 months ago)
- Language: Java
- Size: 180 KB
- Stars: 0
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
helloworld-ws: Hello World JAX-WS Web Service
==================================================
Author: Lee Newson
Level: Beginner
Technologies: JAX-WS
Summary: The `helloworld-ws` quickstart demonstrates a simple Hello World application, bundled and deployed as a WAR, that uses *JAX-WS* to say Hello.
Target Product: JBoss EAP
Source:What is it?
-----------The `helloworld-ws` quickstart demonstrates the use of *JAX-WS* in Red Hat JBoss Enterprise Application Platform as a simple Hello World application.
System requirements
-------------------The application this project produces is designed to be run on Red Hat JBoss Enterprise Application Platform 7 or later.
All you need to build this project is Java 8.0 (Java SDK 1.8) or later, Maven 3.0 or later.
Configure Maven
---------------If you have not yet done so, you must [Configure Maven](https://github.com/jboss-developer/jboss-developer-shared-resources/blob/master/guides/CONFIGURE_MAVEN_JBOSS_EAP7.md#configure-maven-to-build-and-deploy-the-quickstarts) before testing the quickstarts.
Use of EAP_HOME
---------------In the following instructions, replace `EAP_HOME` with the actual path to your JBoss EAP installation. The installation path is described in detail here: [Use of EAP_HOME and JBOSS_HOME Variables](https://github.com/jboss-developer/jboss-developer-shared-resources/blob/master/guides/USE_OF_EAP_HOME.md#use-of-eap_home-and-jboss_home-variables).
Start the JBoss EAP Server
----------------------1. Open a command prompt and navigate to the root of the JBoss EAP directory.
2. The following shows the command line to start the server:For Linux: EAP_HOME/bin/standalone.sh
For Windows: EAP_HOME\bin\standalone.batBuild and Deploy the Quickstart
-------------------------1. Make sure you have started the JBoss EAP server as described above.
2. Open a command prompt and navigate to the root directory of this quickstart.
3. Type this command to build and deploy the archive:mvn clean install wildfly:deploy
4. This will deploy `target/jboss-helloworld-ws.war` to the running instance of the server.
5. Review the server log to see useful information about the deployed web service endpoint.JBWS024061: Adding service endpoint metadata: id=org.jboss.as.quickstarts.wshelloworld.HelloWorldServiceImpl
address=http://localhost:8080/jboss-helloworld-ws/HelloWorldService
implementor=org.jboss.as.quickstarts.wshelloworld.HelloWorldServiceImpl
serviceName={http://www.jboss.org/eap/quickstarts/wshelloworld/HelloWorld}HelloWorldService
portName={http://www.jboss.org/eap/quickstarts/wshelloworld/HelloWorld}HelloWorld
annotationWsdlLocation=null
wsdlLocationOverride=null
mtomEnabled=falseAccess the application
---------------------You can verify that the Web Service is running and deployed correctly by accessing the following URL: . This URL will display the deployed WSDL endpoint for the Web Service.
Undeploy the Archive
--------------------1. Make sure you have started the JBoss EAP server as described above.
2. Open a command prompt and navigate to the root directory of this quickstart.
3. When you are finished testing, type this command to undeploy the archive:mvn wildfly:undeploy
Run the Client Tests using Arquillian
-------------------------This quickstart provides Arquillian tests. By default, these tests are configured to be skipped as Arquillian tests require the use of a container.
1. Make sure you have started the JBoss EAP server as described above.
2. Open a command prompt and navigate to the root directory of this quickstart.
3. Type the following command to run the test goal with the following profile activated:mvn clean test -Parq-wildfly-remote
Investigate the Console Output
----------------------------The following expected output should appear. The output shows what was said to the Web Service by the client and the responses it received.
-------------------------------------------------------
T E S T S
-------------------------------------------------------
Running org.jboss.as.quickstarts.wshelloworld.ClientArqTest
[Client] Requesting the WebService to say Hello.
[WebService] Hello World!
[Client] Requesting the WebService to say Hello to John.
[WebService] Hello John!
[Client] Requesting the WebService to say Hello to John, Mary and Mark.
[WebService] Hello John, Mary & Mark!
Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.988 secRun the Quickstart in Red Hat JBoss Developer Studio or Eclipse
-------------------------------------
You can also start the server and deploy the quickstarts or run the Arquillian tests from Eclipse using JBoss tools. For general information about how to import a quickstart, add a JBoss EAP server, and build and deploy a quickstart, see [Use JBoss Developer Studio or Eclipse to Run the Quickstarts](https://github.com/jboss-developer/jboss-developer-shared-resources/blob/master/guides/USE_JBDS.md#use-jboss-developer-studio-or-eclipse-to-run-the-quickstarts)Debug the Application
------------------------------------If you want to debug the source code of any library in the project, run the following command to pull the source into your local repository. The IDE should then detect it.
mvn dependency:sources