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 to convert a document list to string list

    Posted 06/02/10 05:54 AM

    i have a documentlist which contains different documents.

    ex:
    final tolist contains
    tolist[0]…some values
    tolist[1] …some values
    tolist[2]…some other values(another document)…

    etc…

    i need all the values inside a document with string lists.

    can any one help me plz…


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


  • 2.  RE: how to convert a document list to string list

    Posted 06/03/10 06:40 AM

    Set the indices or go through list and append services in public package ….


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


  • 3.  RE: how to convert a document list to string list

    Posted 06/03/10 03:56 PM

    If you could provide a little more detail about the structure of your source document and your requirements, we could probably provide some better feedback.

    There are different methods of mapping a source list to a target list. For example, you can simply use a MAP step and allow the IS to perform implicit looping. You can also use a LOOP step and specify the Input Array and Output Array. You can use the append services or indices within a LOOP as suggested above (not recommended for larger lists). Finally, you could also do all your looping and mapping within a Java service.

    Which option is best for you would depend on your requirements.

    • Percio

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


  • 4.  RE: how to convert a document list to string list

    Posted 06/04/10 09:47 AM

    Initialize a StringList

    use Loop step and give your documentList in InputArray and give StringList in output array, use documentToXmlString and map output of this service to defined StringList.

    come out of loop and map this stringList to a document whcih contains StringList under it.


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


  • 5.  RE: how to convert a document list to string list

    Posted 08/08/10 09:31 PM

    my developer is not working for java services, however i’ve installed JDK 1.5 and tomcat(apache),so whats the procedure to wth it???


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


  • 6.  RE: how to convert a document list to string list

    Posted 08/09/10 06:28 AM

    Hi ,

    Did you provide classpath details for key element “watt.server.compile” in the settings—> extended from Admin console.


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


  • 7.  RE: how to convert a document list to string list

    Posted 08/09/10 11:39 AM

    I am adding one more check point.

    Verify the version of the JVM in server.bat file ? Is it JDK_1.5 or not.
    you have installed the JDK 1.5, if both are not pointing to same version,
    will not compile the Java services


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


  • 8.  RE: how to convert a document list to string list

    Posted 08/09/10 11:58 AM