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.  JDBC Adapter question

    Posted 08/27/04 05:58 AM

    I have a problem here …

    I have an adapter service name “Vw” to get data from oracle data base. When I run this adapter it came with the result below:

    |dataOutput
    |results
    |results[0]
    |Name bbbbb
    |Date dd/mm/yyyy
    |Order mmmmm
    |results[1]
    |Name aaaaa
    |Date dd/mm/yyyy
    |Order jjjjjj
    |results[2]
    |Name kkkkk
    |Date dd/mm/yyyy
    |Order ggggggg

    With this results, I want to made a dynamic sever page for client whit
    this html script below :

    <html>
    <head></head>
    <body>

    <table>
    <tr>
    <td>Name</td>
    <td>Date</td>
    <td>Order</td>

    </tr>
    %invoke D106Exercises.Exercises8:Vw%
    %onerror%
    %value encode(xml) errorMessage%

    %loop Vw%

    <tr>
    <td>%value Name%</td>
    <td>%vakue Date%</td>
    <td>%value Order%</td>

    </tr>

    %endloop%
    %endinvoke%

    </table>

    </body>
    </html>

    The Invoke was run (I Thought) but the loop was not run perfectly.
    How can I lopp this data list from data base.
    I only use an adapter service only, is it corect?

    This is very urgent …, help me please…

    thanks,


    #Integration-Server-and-ESB
    #webMethods
    #Adapters-and-E-Standards