Introduction
Java API for XML Web Services(JAX-WS) is an important part of latest JEE specification (Java EE 5 platform). In this article we will see how to develop JAX-WS based web services using NetBeans 6.1 IDE. This article will not provide any of the theoretical information about JAX-WS.
The following are the few web services articles published in JavaBeat,
Software used
-
NetBeans 6.1
-
Java 5.0/6.0
-
GlassFish V2
Creating a Web project in NetBeans 6.1
To start with first of all we will have to create a web application from the web category. Let us name the project as "MyJaxWSApplication". To create a create a web application we will do the following.
1. Choose File > New Project. Select Web Application from the Web category. Name the project as "MyJaxWSApplication" and click on Next.

2. In Server and Settings select the server that you want to use. Here we are going to use GlassFish.

3. Click Next and Finish.
Now its time to create web service form Java class
The following are the few web services articles published in JavaBeat,
|