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.  How does the scope property work?

    Posted 03/13/02 11:11 AM

    I have heard that pipeline scoping in webMethods can boost performance by limiting the amount of data being passed around to the relevant records. What I don’t know is how this property is supposed to be used. The documentation I have doesn’t seem to mention any examples of the use of this property. Can anyone point me in the right direction?

    Thanks,

    -n.


    #Integration-Server-and-ESB
    #webMethods
    #webMethods-General


  • 2.  RE: How does the scope property work?

    Posted 04/29/02 05:44 PM

    The scope property takes a single string setting that is the “path” of the sub-part of the pipeline that should go to a service.

    For instance if the top level of your pipeline has lots of stuff in it, but all the parameters for myFolder:myService are in the Record myParams, which is in the root of the pipeline, set the scope value to /myParams.

    myService would see only the contents of myParams (not the containing myParams record, so it must be addressing the children of myParams directly).

    This can increase performance because the Flow Engine does some shallow cloning of the pipeline in order to implement some basic pipeline rollback behavior. A shallow clone of a big pipeline that is not used by the called service is a waste.


    #Integration-Server-and-ESB
    #webMethods-General
    #webMethods