WASdev/sample.jaxws.web

Name: sample.jaxws.web

Owner: WASdev

Description: null

Created: 2017-02-16 11:28:26.0

Updated: 2017-02-16 11:55:25.0

Pushed: 2017-10-24 19:51:52.0

Homepage: null

Size: 252

Language: Java

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

Web Services Sample Build Status

The WebSphere Application Server Liberty Profile jaxws-2.2 feature, included in the extended content for the Liberty Profile, supports the Java API for XML-Based Web Services. With this feature, it is easy to develop web services applications on the Liberty profile.

This sample contains a server definition that includes the jaxws-2.2 feature. It also contains a demo application which demonstrates a number of JAX-WS features supported by the Liberty profile.

This sample can be installed onto runtime versions 8.5.5.0 and later. Instructions

The ServletJDBCEngine sample contains a server definition for basic servlet support, and illustrates a simple datasource definition using an included configuration file. It uses Apache Derby (an open source relational database). Also included is a servlet which gets a connection to the database using the defined datasource, creates a table, inserts some data, retrieves the data, and prints the data out to the browser.

Once the server is running, the application will be available under http://localhost:9131/jaxws.

Running in Eclipse with Maven
  1. Clone this project and import into Eclipse as an 'Existing Maven Project'.
  2. Right-click the project and select Run As > Run on Server.
  3. You should see the following message in the console: Application JAXWSWebSample started in XX.XX seconds.
Running with Maven

This project can be built with Apache Maven. The project uses Liberty Maven Plug-in to automatically download and install Liberty with Java EE 7 Full Platform runtime from the Maven Central. Liberty Maven Plug-in is also used to create, configure, and run the application on the Liberty server.

Use the following steps to run the application with Maven:

  1. Execute full Maven build. This will cause Liberty Maven Plug-in to download and install Liberty profile server.
    n clean install
    
  2. To run the server with the Servlet sample execute:
    n liberty:run-server
    
    In your browser, enter the URL for the application: http://localhost:9131/jaxws (where port 9131 assumes the httpEndpoint provided in the sample server.xml has not been modified). There are 7 scenarios for different JAX-WS features in the left. You can navigate each scenario to experience these features.
Gradle

The sample can be built using Gradle and the Liberty Gradle Plug-in. In the directory where you cloned the repository issue the following command to build and run the project.

$ gradle build

To start the application use the command:

$ gradle libertyStart

To stop the application use the command:

$ gradle libertyStop

The application can be reached at http://localhost:9131/jaxws.

Notice

© Copyright IBM Corporation 2017.

License

nsed under the Apache License, Version 2.0 (the "License");
may not use this file except in compliance with the License.
may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

ss required by applicable law or agreed to in writing, software
ributed under the License is distributed on an "AS IS" BASIS,
OUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
the License for the specific language governing permissions and
tations under the License.

This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.