SOAP is an XML-based protocol for exchanging information in a distributed environment. Basic SOAP describes the SOAP envelope, i.e., what parts may be contained in a SOAP message, and the SOAP processing model, i.e., how a SOAP message is transferred from the sender to the receiver.
Comparing to CORBA, SOAP can be seen as CORBA's interoperability protocol IIOP. The role of IDL is played by Web Service Description Language (WSDL). It is an XML language for describing operations supported by services and how to invoke them.
The purpose of this assignment is to implement and deploy your own simple Web service that provides a search for files. You will write a WSDL description of the service, the actual server, and a client for the service. Apache Axis is to be used as the Web service implementation.
The goals of this assignment are to
The service to implement contains an index (read from a file) associating filenames with corresponding keywords. The service provides an operation to query filenames matching a provided keyword. The service is also supplied with a maximum count of
filenames to be returned and an indication of whether to use partial or exact matching.
A completed assignment consists of the following parts: