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.  Passthru timeouts?

    Posted 07/22/03 02:50 PM

    I am obtaining a large document from Tamino, and passing it to a rather complex stylesheet.

    The problem is that I’m getting what appears to be the default result from the stylesheet back (no data from the query).

    However, if I use a much simpler stylesheet, I get that data back correctly, so it isn’t the query. Looking at the logs, Tomcat says the transformation was accomplished (taking about 1.5-2 seconds – which worries me again, because the results is coming bakc faster than that).

    So, I’m not seeing any errors in the logs, but not getting back correct results. Any ideas?

    Windows 2000 Professional
    Tomcat 4.1.24
    Apache 2.0.43
    jk2 passthru


    #API-Management
    #webMethods
    #Tamino


  • 2.  RE: Passthru timeouts?

    Posted 07/23/03 10:26 AM

    After some discussion we resolved this problem by changing the xpath in Joel’s stylesheet. He was using xquery to return xml to passthru, so the result was wrapped in tags “ino:response” and “xq:result”. The stylesheet xpath was changed from (e.g.):
    select=“/inc:IncidentReport/jdd:Incident”
    to:
    select=“/ino:response/xq:result/inc:IncidentReport/jdd:Incident”.
    In addition we defined namespace “xq” as
    xmlns:xq=“http://namespaces.softwareag.com/tamino/XQuery/result” and namespace “ino” as
    xmlns:ino=“http://namespaces.softwareag.com/tamino/response2”.

    HTH


    #Tamino
    #API-Management
    #webMethods