+

Search Tips   |   Advanced Search

Web services

Web services are self-contained, modular applications that we can describe, publish, locate, and invoke over a network.

The application server supports web services developed and implemented based on the Web Services for Java EE specification. The application server supports the JAX-WS programming model and JAX-RPC. The JAX-WS is a strategic programming model that simplifies application development through support of a standard, annotation-based model to develop web services applications and clients.

A typical web services scenario is a business application requesting a service from another existing application. The request is processed through a given web address using SOAP messages over a HTTP, Java Message Service (JMS) transport or invoked directly as EJB. The service receives the request, processes it, and returns a response. Examples of a simple web service include weather reports or getting stock quotes. The method call is synchronous, that is, the method waits until the result is available. Transaction web services, supporting quotes, business-to-business (B2B) or business-to-client (B2C) operations include airline reservations and purchase orders.

Web services can include the actual service or the client that accesses the service.

Web services are web applications that help improve the flexibility of the business processes by integrating with applications that otherwise do not communicate. The inner-library loan program at the local library is a good example of the web services concept and its evolution. The web service concept existed even before the term; the concept became widely accepted with the creation of the Internet. Before the Internet was created, you visited the library, searched the collections and checked out the books. If we did not find the book we wanted, the librarian ran a search for you by computer or phone and located the book at a nearby library. The librarian ordered the book for you and you picked it up after it was delivered to the local library. By incorporating web services applications, we can streamline your library visit.

Now, we can search the local library collection and other local libraries at the same time. When other libraries provide the library with a web service to search their collection (the service might have been provided through Universal Description Discovery and Integration (UDDI), the results yield their resources. We might use another web service application to check out and send the book to the home. Using web services applications saves time and provides a convenience for you, as well as freeing the librarian to do other business tasks.

Web services reflect the service-oriented architecture (SOA) approach to programming. This approach is based on the idea of building applications by discovering and implementing network-available services, or by invoking the available applications to accomplish a task. Web services deliver interoperability, for example, web services applications provide components created in different programming languages to work together as if they were created using the same language. Web services rely on existing transport technologies, such as HTTP, and standard data encoding techniques, such as XML, for invoking the implementation.

The key components of web services include:

For a more detailed scenario, see the web services scenario overview information to learn more about the story of a fictional online garden supply retailer named Plants by WebSphere , and how this retailer incorporated the web services concept.

For a complete list of the supported standards and specifications, see the web services specifications and API documentation.


Subtopics


Related concepts

  • Service-oriented architecture
  • Overview: Online garden retailer web services scenarios


    Related tasks

  • Use the UDDI registry
  • Enable web services through the service integration bus
  • Use WS-Notification for publish and subscribe messaging for web services

  • Web services specifications and APIs