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.


#TechXchangePresenter
 View Only
  • 1.  Utility to enable/disable

    Posted Thu January 23, 2014 05:51 AM

    Hi All,

    I have requirement to create utility which will allow user to enable/disable the selected scheduler, polling notification & triggers. Request you to suggest which is the best way to achieve this task:

    1. Creation of flow service using wMroot package services
    2. A java service
    3. DSP method
    4. CAF method

    Please share ideas and sample code. Thanks in advance.
    Regards,
    Mohit K


    #Integration-Server-and-ESB
    #webMethods


  • 2.  RE: Utility to enable/disable

    Posted Thu January 23, 2014 01:44 PM

    You can find public service under:
    WmART/pub.art.notification
    WmART/pub.art.listener
    WmPublic/pub.scheduler

    you shouldn’t use WMRoot services directly without SAG permission.
    how to build UI, is really your choice.


    #Integration-Server-and-ESB
    #webMethods


  • 3.  RE: Utility to enable/disable

    Posted Fri January 24, 2014 01:48 AM

    Hi Tong,

    Thanks for your response.

    Could you please let me understand that when we should make use of CAF concepts and in which cases we do use DSPs. Kindly reply.

    Regards,
    Mohit K


    #webMethods
    #Integration-Server-and-ESB


  • 4.  RE: Utility to enable/disable

    Posted Fri January 24, 2014 06:55 AM

    @Mohit:
    DSP: A dynamic server page (DSP) is a document embedded with a dozen special codes (tags) that instruct the webMethods Integration Server to perform certain actions when an HTTP (or HTTPS) client requests the document. They are HTML based, they can be used to build complex user interfaces that includes any valid construct (e.g., forms, cascading style sheets, JavaScript) recognized by the client’s browser. [Ref: DSP user Guide].

    CAF: Composite Application Framework development enables you to create Web applications and portlet application projects for use with My webMethods Server. A Web application is an application that a user accesses over the Web on either the Internet or an intranet.

    When DSP? : When you have little to do in UI, minimalist approach. Maintenance/development of DSP is tough as not validator available, like HTML.
    When CAF: When you need to come up with a full fledged web application or a complex UI with multiple conditional UI elements.

    Hope this helps.


    #Integration-Server-and-ESB
    #webMethods


  • 5.  RE: Utility to enable/disable

    Posted Fri January 24, 2014 10:37 AM

    Mohit,

    For all the things you mentioned above are admin tasks that can be logic via a flow service (which uses WmART services for enabling/disabling adapter connections/listeners) and you can create a .dsp page (UI) for invoking it as HTML links

    HTH,
    RMG


    #webMethods
    #Integration-Server-and-ESB


  • 6.  RE: Utility to enable/disable

    Posted Thu January 30, 2014 02:40 AM

    Thank you to all !!

    ~mohit


    #webMethods
    #Integration-Server-and-ESB


  • 7.  RE: Utility to enable/disable

    Posted Thu January 30, 2014 11:57 AM