+

Search Tips   |   Advanced Search

Implement web services applications from existing WSDL files with JAX-RPC

We can develop a web service with an existing WSDL file using JAX-RPC.

IBM WebSphere Application Server supports JAX-WS and JAX-RPC. Using the strategic JAX-WS programming model, development of web services and clients is simplified through support of a standards-based annotations model. Although JAX-RPC and applications are still supported, take advantage of the easy-to-implement JAX-WS programming model to develop new web services applications and clients.best-practices

Locate the WSDL file that defines the web service to implement. We can develop a WSDL or obtain one from an existing web service through email, downloading or a URL.

To develop web services based on JAX-RPC, we can use a bottom-up development approach starting from existing JavaBeans or enterprise beans or we can use a top-down development approach starting with an existing WSDL file. This task describes the steps when using the top-down development approach.

When developing a JAX-RPC web service starting from an existing WSDL file, create the JavaBeans or enterprise bean and artifacts that enable the bean as web services and assemble all artifacts required for the web service, and deploy the application onto the application server.

Considerations when using JavaBeans

JavaBeans exposed as JAX-RPC web services are supported only over an HTTP transport.

Considerations when using enterprise beans

  • The enterprise bean must be a stateless session bean.

  • Enterprise beans exposed as JAX-RPC web services must be packaged in EJB 2.1 or in EJB 3.0 or higher modules.

  • For JAX-RPC web services using EJB 2.1 style endpoints, the Web service method parameters must be one of the supported JAX-RPC types. These requirements are documented in the JAX-RPC specification.
  • JAX-RPC web services using enterprise beans are supported over an HTTP or JMS transport.

It is a best practice to use EJB 2.1 style enterprise beans with JAX-RPC applications. bprac


Tasks

  1. Set up a development environment for web services. We do not have to set up a development environment if we are using Rational Application Developer.
  2. Develop the Java artifacts from a WSDL file. We need to create the deployment descriptor templates and bindings configured to map the service implementation to the JavaBeans or enterprise beans implementation.

  3. Complete the implementation of our web service application.

  4. Configure the webservices.xml deployment descriptor. For JAX-RPC web services, configure the webservices.xml deployment descriptor so that the application server can process the incoming web services requests.
  5. Configure the ibm-webservices-bnd.xmi deployment descriptor. Configure the ibm-webservices-bnd.xml deployment descriptor so that the application server can process the incoming web services requests.
  6. Assemble the artifacts for our web service.

    Use assembly tools provided with the application server to assemble your Java-based web services modules.

    If we have assembled an Enterprise Archive (EAR) file containing enterprise beans modules that contain Web services, use the endptEnabler command-line tool or an assembly tool before deployment to produce a web services endpoint WAR file. This tool is also used to specify whether the web services are exposed using SOAP over Java Message Service (JMS) or SOAP over HTTP.

  7. Deploy the EAR file into the application server. We can now deploy the EAR file configured and enabled for JAX-RPC web services onto the application server.

We have developed a JAX-RPC web service application by starting with an existing WSDL file.


What to do next

After we deploy the EAR file, test the web service to make sure that it works with the application server.


Subtopics


Related:

  • JAX-RPC
  • Web services
  • Set up a development environment for web services
  • Developing Java artifacts for JAX-RPC applications from a WSDL file
  • Developing EJB implementation templates and bindings from a WSDL file for JAX-RPC web services
  • Completing the JavaBeans implementation for JAX-RPC applications
  • Completing the EJB implementation for JAX-RPC applications
  • Configure the webservices.xml deployment descriptor for JAX-RPC web services
  • Configure the ibm-webservices-bnd.xmi deployment descriptor for JAX-RPC web services
  • Assembling web services applications
  • Assembling a WAR file enabled for web services from Java code
  • Assembling a web services-enabled WAR into an EAR file
  • Deploy web services applications onto application servers
  • Testing web services-enabled clients
  • Use HTTP to transport web services
  • Use SOAP over JMS to transport web services
  • Artifacts used to develop web services
  • Web services specifications and APIs