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.  Trigger List in IS

    Posted 02/12/10 07:31 AM

    Hi

    I am writing a script which needs to log all the trigger in a IS, is there any service which i can invoke to get the list of triggers for a particular IS ?

    Thanks
    Sid


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


  • 2.  RE: Trigger List in IS

    Posted 02/12/10 09:18 AM

    Check for BrokerAdminClient API in documentation, you should some method which list out all the triggers for you.


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


  • 3.  RE: Trigger List in IS

    Posted 02/12/10 12:06 PM

    import class
    com.wm.app.b2b.server.dispatcher.trigger.TriggerManagementUtil

    and the below code in a java service will give you all triggers in IS

    IDataCursor pipelineCursor = pipeline.getCursor();
    String[] triggerNames = TriggerManagementUtil.getTriggerList();
    IDataUtil.put( pipelineCursor, "triggerNames", triggerNames );
    pipelineCursor.destroy();

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


  • 4.  RE: Trigger List in IS

    Posted 02/15/10 04:55 AM

    Thank You so much for your reply …
    I will try this out and reply …


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


  • 5.  RE: Trigger List in IS

    Posted 02/15/10 05:04 AM

    Thanks for the reply …
    i will try this out and reply back


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