You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-user@axis.apache.org by Taras Lukiyanets <ta...@hpi.uni-potsdam.de> on 2006/08/15 12:30:44 UTC

Fw: Web Service calling the other service

Hi everyone!

I need to implement the following scenario. Suppose that there are 2 services:
Service A - SelectSupplier: 
    InParam - SupplierID
    OutParam - SupplierName
Service B - GetProductPrice
    InParam - SupplierName, ProductName
    OutParam - ProductPrice

The task is to write the service that provides composition of above 2 services, eg.

Service - Composition
    InParam - SupplierID, ProductName
    OutParam - ProductPrice

It should sequentially call services A and B and get the desired 
Is it possible to implement such sequentional service call using Axis? Is there some information on that?

Thanks in advance,
Taras