我们的部门将有一个前端流程来调用Web服务来检索数据。
检索到的数据将采用Web服务中的集合形式。
我想知道的是,一旦调用了service方法,该方法是否可以启动对另一个Web服务的单独调用(使用集合中检索到的数据),而前端应用程序没有任何参与打电话给其他网络服务?
我认为前端应用程序 可能会调用其他Web服务发布spotcheckcollection数据,而不是单独调用Web服务,如上所述。
例如,这是代码......
// Web service method
public SpotCheckCollection GetSpotCheckInventory(int locationID, int extractID)
{
SpotCheckCollection spotCheckCollection = null;
try
{
// Front-end calls this method putting the data in the spotCheckCollection variable.
spotCheckCollection = SpotCheckCollectionGateway.GetData(locationID, extractID);
// Can a separate web service call go here pushing the spotCheckCollection data to that web service instead of the front end application doing it?
// TODO: Call Velocitor web service to push the data to them from the JWALK call.
return null; // TODO: Remove after I set up call to Velocitor.
}