[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

xsl

Subject: xsl
From: "Indira Hoti" <IHoti@xxxxxxxxxxxxxxx>
Date: Wed, 3 May 2006 15:47:07 +0100
indira hoti
Hi all,



I haven't got much experience with XML and I just came across a code,
like the one below, which uses 'soap: Envelope' to encapsulate data.

My problem is in getting the xsl file to display that info. At the
moment with the xsl code below I can extract some information, but its
dsisplayed in one string or line, rather than assigned to a html table
cell. Any suggestions would be appreciated. Thanks J



Regards,

Indira



-----------xml-------------------------------------------------

<?xml version="1.0" encoding="utf-8"?>

<?xml-stylesheet type="text/xsl" href="response.xsl"?>



<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"

               xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

               xmlns:xsd="http://www.w3.org/2001/XMLSchema">

  <soap:Body>

    <IdResponse

              xmlns="http://kkkk.com/DDiii">

    <IdResult>



  <UserId>hello</UserId>

  <Username>there</Username>



     </IdResult>

    </IdResponse>

  </soap:Body>

</soap:Envelope>

-----------------------------------------------------------------



--------------------xsl------------------------------------------

<?xml version='1.0'?>

<xsl:stylesheet

  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"

  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

  xmlns="http://directdebit.com/DDLog"

  xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"

  version="1.0">



  <xsl:template match="soap:Envelope/soap:Body/IdResponse/IdResult">

  <HTML>

   <BODY>

   <table BORDER="0" align="center" width="750px" height="70px"
bgcolor="#ffffff">

    <TR >

     <TD colspan="5"  width="47%" height="20px">

      <span > User Id: </span>

       <xsl:value-of
select="LogonAndGetLogByAuthenticationIdResponse/LogonAndGetLogByAuthent
icationIdResult/UserId"/>

     </TD>

    </TR>

    <TR >

     <TD colspan="5"  width="47%" height="20px">

      <span> User name: </span>

      <xsl:value-of
select="LogonAndGetLogByAuthenticationIdResponse/LogonAndGetLogByAuthent
icationIdResult/Username "/>

</TD>

     </TR>

     </table>

  </BODY>

 </HTML>

</xsl:template>

</xsl:stylesheet>



------output I get----------------------------



hellothere

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.