IBM webMethods Hybrid Integration

IBM webMethods Hybrid Integration

Join this online group to communicate across IBM product users and experts by sharing advice and best practices with peers and staying up to date regarding product enhancements.

 View Only
Expand all | Collapse all

Passing input to a flow service from DSP page using %invoke% tag

  • 1.  Passing input to a flow service from DSP page using %invoke% tag

    Posted Thu July 25, 2019 01:03 PM

    Hi,

    I have a scenario where i have to loop over string array output of a service and call second service inside the loop and pass the array iteration value to the second service. Second service is getting called but entire string array is getting passed to second service but not the iteration value. Below if my code. Please help.

    %invoke Initialization.services:getColumnNamesForTable%

    %loop columnNames%

    indexValue=%value columnNames%

    %invoke Initialization.services:selectColumnValuesFromMasterTables%

    %loop columnValues%

    %endloop% %endinvoke% %endloop% %endinvoke%

    Thanks,
    Kavitha

    %value columnNames%
    %value columnValues%

    #Integration-Server-and-ESB
    #Flow-and-Java-services
    #webMethods


  • 2.  RE: Passing input to a flow service from DSP page using %invoke% tag

    Posted Thu August 15, 2019 02:09 PM

    DSP can’t take output of one service and pass the results to another service on the same DSP.

    try to create a flow service to call and loop, DSP should only call this service and display the results.


    #Integration-Server-and-ESB
    #Flow-and-Java-services
    #webMethods