473,382 Members | 1,749 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,382 software developers and data experts.

remove blank (xmlns="") from elements

markmcgookin
648 Expert 512MB
Hi,

I am creating an MXL doc using XSLT but for some reason it is churning out elements like this

Expand|Select|Wrap|Line Numbers
  1. <DateTimeLastSaved xmlns="" />
  2. <UserName xmlns="" />
when I delete xmlns="" it works fine, but if I leave it in there are issues reading/saving the file. Is there any way to remove this xmlns="" in the xslt?

Cheers,

Mark
Dec 10 '07 #1
4 17827
jkmyoung
2,057 Expert 2GB
When you are creating the elements, you need to have the same namespace as the parent elements (xmlns = XMLNameSpace) . Add the parent's namespace to those elements when you are creating it.

eg probably something like

xmlns="www.yahoo.com"
Dec 10 '07 #2
markmcgookin
648 Expert 512MB
Hi there,

I noticed that people were able to solve this problem here, I just hope that re-using this thread will get me a responce here.... I have the same problem, where my xslt is producing elements but all with xmlns="" in them, and when I remove it manually my code works fine, but just using the raw output my code falls over... would anyone be able to help me?

Thanks very much for any help folks,

Really appreciated.

Mark (Code Below)

Expand|Select|Wrap|Line Numbers
  1.  
  2. <?xml version="1.0" encoding="UTF-8" ?>
  3. <xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  4.     <xsl:param name="fileName"></xsl:param>
  5.     <xsl:param name="schemaName"></xsl:param>
  6.     <xsl:output method="xml" indent="yes" omit-xml-declaration="no" />
  7.  
  8.     <!-- Template that read the root node -->
  9.     <xsl:template match="/">
  10.  
  11.         <xsl:variable name="myNS">
  12.             <xsl:text>http://tempuri.org/</xsl:text>
  13.             <xsl:value-of select="$schemaName"/>
  14.             <xsl:text>.xsd</xsl:text>
  15.         </xsl:variable>
  16.  
  17.         <xsl:element name="AnswerList" namespace="{$myNS}">
  18.             <!-- NB: Done like this because the template match doesnt work -->
  19.             <!-- May be an issue with the xml that was generated from the QTi -->
  20.             <xsl:element name="DateTimeLastSaved" />
  21.             <xsl:element name="UserName"/>
  22.  
  23.  
  24.             <xsl:for-each select="child::node()">
  25.  
  26.                 <xsl:for-each select="child::node()">
  27.                     <xsl:apply-templates select="DSDetailView/DetailView" />
  28.                     <xsl:for-each select="child::node()">
  29.                         <xsl:apply-templates select="DSDetailView/DetailView" />
  30.                         <xsl:choose>
  31.                             <!-- If it's called Item -->
  32.                             <xsl:when test="name()='Item'">
  33.                                 <xsl:choose>
  34.                                     <!-- If it's a textbox -->
  35.                                     <xsl:when test="@Type='Resco.Controls.DetailView.ItemTextBox'">
  36.                                         <xsl:for-each select="child::node()">
  37.                                             <xsl:choose>
  38.                                                 <!-- If it stored Data i.e. not a lable -->
  39.                                                 <xsl:when test="@Name='DataMember'">
  40.  
  41.                                                     <xsl:variable name="temp">
  42.                                                         <xsl:value-of select="@Value"/>
  43.                                                     </xsl:variable>
  44.  
  45.                                                     <!-- Create a string object in the schema -->
  46.                                                     <xsl:element name="{$temp}">
  47.                                                     </xsl:element>
  48.                                                     <!-- End of create a string object in the schema -->
  49.  
  50.                                                 </xsl:when>
  51.                                             </xsl:choose>
  52.                                         </xsl:for-each>
  53.                                     </xsl:when>
  54.  
  55.                                     <!-- If it's a radio button thing -->
  56.                                     <xsl:when test="@Type='ALPS_Demo.ItemRadioButton, ALPS_Demo'">
  57.                                         <!-- Create an int object in the schema -->
  58.                                         <xsl:for-each select="child::node()">
  59.                                             <xsl:choose>
  60.                                                 <!-- If it stored Data i.e. not a lable -->
  61.                                                 <xsl:when test="@Name='DataMember'">
  62.  
  63.                                                     <xsl:variable name="temp">
  64.                                                         <xsl:value-of select="@Value"/>
  65.                                                     </xsl:variable>
  66.  
  67.                                                     <!-- Create an Int object in the schema -->
  68.                                                     <xsl:element name="{$temp}">
  69.                                                         <xsl:text>-1</xsl:text>
  70.                                                     </xsl:element>
  71.                                                     <!-- Create an Int object in the schema -->
  72.  
  73.                                                 </xsl:when>
  74.                                             </xsl:choose>
  75.                                         </xsl:for-each>
  76.                                     </xsl:when>
  77.                                 </xsl:choose>
  78.                             </xsl:when>
  79.                         </xsl:choose>
  80.                     </xsl:for-each>
  81.                 </xsl:for-each>
  82.             </xsl:for-each>
  83.  
  84.         <!-- Generic Answerlist footer code -->
  85.         </xsl:element>
  86.         <!-- Generic Answerlist footer code -->
  87.  
  88.  
  89.         </xsl:template>
  90. </xsl:stylesheet>
  91.  
  92.  
  93.  
Which I need to produce

Expand|Select|Wrap|Line Numbers
  1. <AnswerList xmlns="http://tempuri.org/ALPS_Assessmentv1p1_RESCO_Schema.xsd">
  2.     <DateTimeLastSaved />
  3.     <UserName />
  4.     <Ans_1189068258258 />
  5.     <Ans_1188555751625_MC0>-1</Ans_1188555751625_MC0>
  6.     <Ans_1188555751625_MC1>-1</Ans_1188555751625_MC1>
  7.     <Ans_1188555751625_MC2>-1</Ans_1188555751625_MC2>
  8.     <Ans_1188555751625_MC3>-1</Ans_1188555751625_MC3>
  9. </AnswerList>
  10.  
But is producing

Expand|Select|Wrap|Line Numbers
  1. <AnswerList xmlns="http://tempuri.org/ALPS_Assessmentv1p1_RESCO_Schema.xsd">
  2.     <DateTimeLastSaved xmlns="" />
  3.     <UserName xmlns="" />
  4.     <Ans_1189068258258 xmlns="" />
  5.     <Ans_1188555751625_MC0 xmlns="">-1</Ans_1188555751625_MC0>
  6.     <Ans_1188555751625_MC1 xmlns="">-1</Ans_1188555751625_MC1>
  7.     <Ans_1188555751625_MC2 xmlns="">-1</Ans_1188555751625_MC2>
  8.     <Ans_1188555751625_MC3 xmlns="">-1</Ans_1188555751625_MC3>
  9. </AnswerList>
  10.  
Dec 12 '07 #3
jkmyoung
2,057 Expert 2GB
Wherever you have an <xsl:element> tag, be sure to use the namespace attribute.
Expand|Select|Wrap|Line Numbers
  1. <xsl:element name="DateTimeLastSaved" namespace="{$myNS}"/>
  2. <xsl:element name="UserName" namespace="{$myNS}"/>
  3.  
Dec 12 '07 #4
awesome.. it worked..
Sep 29 '10 #5

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

Similar topics

1
by: Zhenya Sigal via .NET 247 | last post by:
I have the following code: XmlElement parent= m_xmlDoc.CreateElement("parent", "http://tempuri.org/myns"); parent.InnerXml = "<child1>text</child1><child2>text</child2>"; ...
3
by: Keith Hill | last post by:
I am creating an XmlDocument in code and then using XmlTextWriter via doc.WriteTo(xwriter) to output the result to a text box. I have a root element that defines a default namespace. However, the...
5
by: NeilL | last post by:
In the XML document I'm trying to create I do the following elem = _doc.CreateElement("Author"); elem.InnerText = "something"; parentElem.AppendChild(elem); Thiw works properly however the...
3
by: Jim Hsu | last post by:
when I use the XmlWebSerivce to response the xmlelement to Web Service client. the ASP.net plumbing work ( the XmlSerializer in WebServices ) will serialize the XML if we can control the wrapper...
3
by: ano | last post by:
Hi, Anyone knows how to get "xmlns" value from XML file? For example, how to check that this xml file has a xmlns or not? Or how to read the xmlns value? <bookstore...
0
by: R. Ian Lee | last post by:
I've built an XSLT file that transforms data to SpreadsheetML format. The XSLT uses a <xsl:call-template/to build each worksheet. For some reason, when I transform the file, it is inserting...
0
by: SolaFide | last post by:
I have an XML doc that looks something like this: <?xml version="1.0" encoding="utf-8"?> <elem1> <elem2 xmlns="http://someurl.com"> <elem3> <item>some stuff here</item> ...
2
by: Lee | last post by:
Hello guys, I am new to XML and working on a XSLT to transforn yahoo shopping search result to html. my problem is the return XML contain xmlns in root element, here is the sample xml: <?xml...
4
by: BorisBoshond | last post by:
Hi all, Hope someone is able and willing to help me with following problem. I received a xsd file from another company, our company i supposed to return xml based on that xsd. Problem is that I...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...

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.