473,811 Members | 3,444 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Transforming XML using XSLT in .Net

9 New Member
I have a problem in accessing the values while transforming an XML using XSLT
Expand|Select|Wrap|Line Numbers
  1. BODY {     FONT: x-small 'Verdana'; MARGIN-RIGHT: 1.5em } .c {     CURSOR: hand } .b {     FONT-WEIGHT: bold; COLOR: red; FONT-FAMILY: 'Courier New'; TEXT-DECORATION: none } .e {     MARGIN-LEFT: 1em; TEXT-INDENT: -1em; MARGIN-RIGHT: 1em } .k {     MARGIN-LEFT: 1em; TEXT-INDENT: -1em; MARGIN-RIGHT: 1em } .t {     COLOR: #990000 } .xt {     COLOR: #990099 } .ns {     COLOR: red } .dt {     COLOR: green } .m {     COLOR: blue } .tx {     FONT-WEIGHT: bold } .db {     MARGIN-TOP: 0px; PADDING-LEFT: 0.3em; MARGIN-BOTTOM: 0px; FONT: small Courier; MARGIN-LEFT: 1em; BORDER-LEFT: #cccccc 1px solid; TEXT-INDENT: 0px } .di {     FONT: small Courier } .d {     COLOR: blue } .pi {     COLOR: blue } .cb {     MARGIN-TOP: 0px; PADDING-LEFT: 0.3em; MARGIN-BOTTOM: 0px; FONT: small Courier; MARGIN-LEFT: 1em; COLOR: #888888; TEXT-INDENT: 0px } .ci {     FONT: small Courier; COLOR: #888888 } PRE {     DISPLAY: inline; MARGIN: 0px }  <?xml version="1.0" encoding="utf-8"  ?> 
  2.    <EmployeeInfo xmlns:xsi="]http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  3.      <EmployeeAddress xsi:nil="true" xmlns="http://xml.netquote.com/employee/types" /> 
  4.  
  5.     <IsEmployee xmlns="http://xml.netquote.com/employee/types">false</IsEmploye>  
  6.  
  7.     <NumberOfUsers  xmlns="http://xml.netquote.com/employee/types">0</NumberOfUsers> 
  8.  
  9.     <EmployeeType xsi:nil="true" xmlns="http://xml.netquote.com/employee/types" /> 
  10.  
  11.     <EmployeeNumber  xmlns="http://xml.netquote.com/employee/types">1119100010000</EmployeeNumber>
  12. </EmployeeInfo>
  13.  
MY XSLT
Expand|Select|Wrap|Line Numbers
  1. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
  2.                 xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xml.netquote.com/employee/types" 
  3. >
  4.     <xsl:output method="xml" indent="yes"/>
  5.  
  6.   <xsl:template match="/">
  7.     <html>
  8.       <body>
  9.         <h1>Employee Listing</h1>
  10.         <table border="1">
  11.           <tr>
  12.             <th>EmployeeAddress</th>
  13.             <th>IsEmployee</th>
  14.             <th>NumberOfUsers</th>
  15.             <th>EmployeeNumber</th>
  16.           </tr>
  17.             <xsl:for-each select="EmployeeInfo">
  18.               <tr>
  19.                 <td>
  20.                   <xsl:value-of select="EmployeeAddress"/>
  21.                 </td>
  22.                 <td>
  23.                   <xsl:value-of select="IsEmployee"/>
  24.                 </td>
  25.                 <td>
  26.                   <xsl:value-of select="NumberOfUsers"/>
  27.                 </td>
  28.                 <td>
  29.                   <xsl:value-of select="EmployeeNumber"/>
  30.                 </td>
  31.               </tr>
  32.             </xsl:for-each>          
  33.         </table>
  34.       </body>
  35.     </html>
  36. </xsl:template>
  37. </xsl:stylesheet>
Here when i transform i am not getting any values in the browser. When i get the values i need to assign it to dataset.

Thankyou
Jan 28 '09 #1
0 1745

Sign in to post your reply or Sign up for a free account.

Similar topics

5
2182
by: Jody Greening | last post by:
Transforming with XSLT, Grouping elements until difference found. I am seeking some help with the following problem, I am fairly new at XSLT transformations, and my problem may lie in looking at it from a traditional programming point of view. I have did quite a bit of searching but have found no answers to my particular problem... please read below XML for the problem I am having.
4
1935
by: Showjumper | last post by:
I am using the NITF DTD for my xml files and i need to use 2 xsl files to do the transform: one for the <body.head> and the second for the <body.content>. I've got this so far for transforming using 1 xsl file: Dim doc As New XmlDocument doc.LoadXml(xmlText) Dim xslDoc As New XslTransform xslDoc.Load(xslpath) Dim sw As New StringWriter xslDoc.Transform(doc, Nothing, sw, Nothing)
3
4879
by: Sergio Otoya | last post by:
Hi all, I need to transform an xml document, using xsl to a HTML output. I can do this successfully using the XslTransform class as below: Dim oTrans As New XslTransform oTrans.Load(sXSLPath) oTrans.Transform(sXMLPath, "c:\trans.htm")
5
4506
by: Jiho Han | last post by:
I do a transform of an xml document into another xml using XslTransform. In my xsl file, I specify using <xsl:output encoding="utf-8"/>. However, when my transform is done, the resulting xml is in utf-16. What gives? Anyone?
4
2029
by: Cathie | last post by:
Hi All, I am trying to get my style sheet to work. It works fine in IE but I can't get it to work in .net. Below is the function I use for transforming, where advancedOptionsFile is the path to the file containing an XML document required by the transformation, and xmlSimplified is the XML document to trasform. ---------------------------------------------------------------------------- -------------------------------
5
1431
by: nospam | last post by:
I'm trying to transform an xml file that contains empty short elements like the following: <element attrib="abc"/> using the XmlTransform class. But I cannot seem to preserve the short format as everytime it get's converted to the longer format of: <element attrib="abc"></element>
0
1255
by: Scott | last post by:
The following blog gives a neat example of how to transform directly into a node: http://blogs.msdn.com/xmlteam/ However, the code doesn't seem to work as it is presented in the blog. I have put together the following three test cases to show this. The first two work correctly, the last one doesn't. BTW...the last one is codes according to the blog entry.
2
13668
by: Jon | last post by:
I am getting the following message when I try to transform an xml file that specifies a DTD. I know how to allow DTDs when using an xmlreader, but not when using the xsl transform. Can someone enlighten me, please. System.Xml.XmlException was unhandled Message="For security reasons DTD is prohibited in this XML document. To enable DTD processing set the ProhibitDtd property on XmlReaderSettings to false and pass the settings into...
1
3464
by: CAM123 | last post by:
I have added: <br><xsl:value-of select="Line" /></br> to my XSLT stylesheet to get a line per repeating block. When I view the output as XML it looks perfect - one line per block. However when I output the file to a text file, all the data is wrapping and at the end of each block I am getting the text part of the header included but not all of it. The text that appears is: <br xmlns:msxsl="urn:schemas-microsoft-com:xslt"...
0
9727
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9605
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10647
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10386
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10398
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9204
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7669
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5554
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
3
3017
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.