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
  • 1.  Comments in flow services

    Posted Mon May 16, 2011 03:21 PM

    Hi…

    Is there anyway to get the comments in a flow service?

    I need to list all services in a package and get their comments.

    Any ideias???

    Thanks.


    #Integration-Server-and-ESB
    #webMethods


  • 2.  RE: Comments in flow services

    Posted Thu May 19, 2011 04:18 PM

    PackageDoc or WmDoc have been available as free implementations for listing services and their comments. Haven’t looked for them on Empower yet.


    #webMethods
    #Integration-Server-and-ESB


  • 3.  RE: Comments in flow services

    Posted Mon May 23, 2011 12:25 PM

    I have searched for it and was not able to find it.

    Anyoune can help?


    #webMethods
    #Integration-Server-and-ESB


  • 4.  RE: Comments in flow services

    Posted Mon June 20, 2011 05:24 PM

    WmDoc - I have installed this package in the environment and just wanted to check whether it has any performance impact if we deploy. Just want to know whether it creates html on-fly or it stores as static page once package deployed. I am not able to see any documentation on this package. Please do let me know if any one have details about the same.


    #Integration-Server-and-ESB
    #webMethods


  • 5.  RE: Comments in flow services

    Posted Wed July 27, 2011 04:40 PM

    Where can i see an example or tutorial of how to use WMDOC?
    thx


    #webMethods
    #Integration-Server-and-ESB


  • 6.  RE: Comments in flow services

    Posted Wed September 28, 2011 03:01 PM

    whit this Java Services i get teh comments of a service/document/node/element in the IS

    String Elemento = null;
    NSNode node = null;
    Namespace ns = Namespace.current();
    String comment = null;
    IData[] nodos = null;
    
    IDataCursor pipelineCursor = pipeline.getCursor();
    String elemento = IDataUtil.getString(pipelineCursor, "elemento");
    if (elemento == null) {
    throw new ServiceException("No se ingreso la variable elemento");
    }
    Elemento = elemento;
    pipelineCursor.destroy();
    
    node = ns.getNode(Elemento);
    if (node == null) {
    throw new ServiceException("Namespace del Elemento desconocido: " + elemento);
    }
    
    comment = node.getComment();
    
    IDataCursor pipelineCursor_1 = pipeline.getCursor();
    IDataUtil.put( pipelineCursor_1, "comment", comment );
    pipelineCursor_1.destroy();

    #webMethods
    #Integration-Server-and-ESB