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.



#Automation


#Applicationintegration
#webMethods
#Integration
 View Only
  • 1.  DSP question

    Posted 04/29/08 06:37 AM

    In developer 6.5 I have written a DSP page which calls a service, I want to show the output of that service from one DSP to another DSP when I invoke the DSP.I have created one flow service and i invoked that service using the tag “%invoke%” and %endinvoke%.But i am not able to get the output.Can you tell the procedure?


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


  • 2.  RE: DSP question

    Posted 04/30/08 08:19 PM

    hi,
    while invoking the service are you passing the parametes correctly and if so .In the other DSP how you are capturing the ouput and in the service you are invoking are you using the savepipeline to check whether the service is called or not

    thanks
    Ashok


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


  • 3.  RE: DSP question

    Posted 05/02/08 08:46 AM

    If you didn’t solve your problem yet, you can do this.
    In DSP1 invoke the service
    %invoke fullyQualifiedNameOfService%
    //Save all the output variables of this service in either html controls or hidden variables in the DSP1 like

    %endInvoke%

    When you invoke a second DSP from this DSP1, all the variables will be posted to that DSP. You can simple use %value ControlInDSP1% (%value name1%) in DSP2 to capture these values.

    Cheers
    Guna


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