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.  IS is thread or process

    Posted 10/01/11 11:52 AM

    Hi All i got some questions For you can you help me…?

    1.IS is thread or process.

    2.how we can delete session logs

    3.what is difference between No transaction and local transaction i know the documentation difference but i need some scenario differences


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


  • 2.  RE: IS is thread or process

    Posted 10/10/11 08:07 PM

    Hello,

    1. Refer to ‘webMethods Logging Guide’

    2. For instance you have 10 records that you are looping on to insert/update one at a time .Then you can use No transaction(which does implicit commit) to commit each record upon insert or update.
      Else if you are using LocalTransaction then you you can do explicit commit by issuing startTransaction (before the loop or try),insert records and commit transaction(after the loop) . And in your catch block you can do rollback transaction on failure.By doing this you are explicitly managing your transaction i.e. commit on all or nothing.

    Thank you,
    Anil


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