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 can do it... in XSL

    Posted 04/07/06 11:12 AM

    Hi,
    I need help.

    I have a page that “generate” the following code:

    <SEGMENTS>
    <SEGMENT NAME="webcluster">
    <RESULTPAGE>
    <QUERYTRANSFORMS>
    <QUERYTRANSFORM ACTION="NOP" MSG="A=0,B=0,C=0,D=0.20">

    etc, etc, etc.

    how can I program in a XSL page to take the value of “C” and “D”?

    tnx


    #API-Management
    #webMethods
    #Tamino


  • 2.  RE: How can do it... in XSL

    Posted 04/07/06 05:48 PM

    I know little about XSLT.

    However, XML was intended to prevent the use of formatted data such as the MSG attribute. Could you not produce QUERYTRANSORM as:

    
    <QUERYTRANSFORM ACTION="NOP">
    <MSG NAME="A" VALUE="0"/>
    <MSG NAME="B" VALUE="0"/>
    <MSG NAME="C" VALUE="0"/>
    <MSG NAME="D" VALUE="0.20"/>
    </QUERYTRANSFORM>

    #Tamino
    #API-Management
    #webMethods