Skip to content

XML / XSL

Discussions on XML and related technologies

This category can be followed from the open social web via the handle xml-xsl@forum.codeproject.com

2.6k Topics 6.8k Posts
  • 0 Votes
    1 Posts
    1 Views
    No one has replied
  • 0 Votes
    5 Posts
    2 Views
    A
    The problem was with the root node element which i changed. I kept the root name as ArrayOfEnvironmentConfigurations and the problem was solved. Thanks for replying.
  • Display a image in picturebox

    xml tutorial
    7
    0 Votes
    7 Posts
    4 Views
    K
    Thanks dude.....:) I got it :) Thank u very much
  • Multiple group using Muenchian Method [modified]

    xml question
    3
    0 Votes
    3 Posts
    4 Views
    O
    Thanks..Really helpful ;)
  • Problem with MSXML6 + namespace + XPath

    xml c++ database data-structures performance
    2
    0 Votes
    2 Posts
    3 Views
    S
    You have to tell MSXML what namespace prefixes your XPath expressions use. When parsing XML, the parser remmebers the namespace URIs, NOT the prefixes used in the documents. That means that your code has to define the prefix to URI mappings used in your XPaths. Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p CodeProject MVP for 2010 - who'd'a thunk it!
  • 0 Votes
    2 Posts
    3 Views
    L
    kpuneeth7 wrote: I am a beginner in xml. Then you should study some of the tutorials here and on MSDN on the use of XML. From the remainder of your question it appears that you are asking for a complete image viewer solution. If you have no idea how to start on this problem then you have a lot of studying still to complete. txtspeak is the realm of 9 year old children, not developers. Christian Graus
  • xsd to entity [modified]

    database xml
    2
    0 Votes
    2 Posts
    4 Views
    N
    Do you have a question? :confused: I know the language. I've read a book. - _Madmatt
  • How to delete duplicate nodes from XML throgh C#?

    question csharp xml help tutorial
    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • Problem with loading a xml to DataSet

    help question xml
    2
    0 Votes
    2 Posts
    2 Views
    D
    Maybe this is what you want ? string Str = "228006611Idle"; System.IO.StringReader sr = new System.IO.StringReader(Str); XmlDataDocument Doc = new XmlDataDocument(); Doc.DataSet.ReadXml(sr); DataSet datasetResult = Doc.DataSet; if (datasetResult.Tables.Count == 0) return;
  • XSL import another XSL on Client-Side.

    xml question csharp javascript regex
    4
    0 Votes
    4 Posts
    3 Views
    D
    I'm glad I could help.
  • Importing COM dll from unix

    c++ com json help
    6
    0 Votes
    6 Posts
    3 Views
    S
    Ummm - well, what are you trying to do with it? XPath is useful for querying an XML document, but does nothing for the performance of the raw parser. Think about how you're going to get information in and out of the XML file, then make your technology decisions based on those specific requirements. Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p CodeProject MVP for 2010 - who'd'a thunk it!
  • XSL help

    xml question announcement csharp
    2
    0 Votes
    2 Posts
    2 Views
    S
    XML is not a prgramming language - it's more a data format. So…why are you using XML and what are you trying to achieve? Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p CodeProject MVP for 2010 - who'd'a thunk it!
  • Using MSXML2.ServerXMLHTTP.4.0 and ASP

    help html wpf com sysadmin
    1
    0 Votes
    1 Posts
    2 Views
    No one has replied
  • Newbie question - can't figure out xsl

    xml question html css help
    3
    0 Votes
    3 Posts
    4 Views
    L
    Did you bother to preview this before you posted it, or read it afterwards? I assume not as it is unreadable. Please edit the content and place between <pre></pre> tags using the "code block" button at the top of the edit window. MVP 2010 - are they mad?
  • SAOP Question

    question csharp wcf xml
    2
    0 Votes
    2 Posts
    4 Views
    S
    Hi, I'm not sure if I understood your problem. You want to implement a webservice with C#. For the first steps have a look here: Your first C# Web Service[^] Or if you want to use WCF take a look here: Writing your first WCF Service[^] SOAP is just the protocol used to call a webservice. Fortunately this protocol is transparent for you, since the .NET framework manages everything for you (serialization, deserialization, transport etc.) Regards Sebastian It's not a bug, it's a feature! Check out my CodeProject article Permission-by-aspect. Me in Softwareland.
  • CSS...

    css xml question
    7
    0 Votes
    7 Posts
    5 Views
    J
    thanks alot sir... J A Nasir K
  • XML Database

    database postgresql algorithms xml
    3
    0 Votes
    3 Posts
    2 Views
    S
    Rather than use a database (which might well not be a good match for hierarchical XML data), you could consider using XQuery[^]? Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p CodeProject MVP for 2010 - who'd'a thunk it!
  • Can I store media within an XML file?

    database xml tutorial question
    5
    0 Votes
    5 Posts
    3 Views
    E
    Hi Again I managed to get it working...both the conversion to XML and back to it's original file. Thanks for the help...much appreciated!
  • parsing problem

    xml json help
    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • .net XMLSerializer - multiple namespace problem

    csharp xml help
    3
    0 Votes
    3 Posts
    3 Views
    A
    Thanks for that, my limited knowledge of XML is the problem here. I have found a way to render the XML as I had intended though. This might be useful to someone else at some point... Declare an XmlSerializerNamespaces object within the class to be serialized. <XmlNamespaceDeclarations()> _ Public xmlns As XmlSerializerNamespaces Then add the namespaces to this collection instead of attaching it to the serializer directly. This has the desired effect of declaring the namespace where it is used. xmlns = New XmlSerializerNamespaces() xmlns.Add("oai_dc", "http://www.openarchives.org/OAI/2.0/oai\_dc/") xmlns.Add("dc", "http://purl.org/dc/elements/1.1/") xmlns.Add("xsi", "http://www.w3.org/2001/XMLSchema-instance") Andrew