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
  • XPath following-sibling

    question xml
    1
    0 Votes
    1 Posts
    5 Views
    No one has replied
  • 0 Votes
    3 Posts
    14 Views
    C
    Appreciate the feedback. As in many projects, some things are being decided by other people. I'm just trying to get a handle on what to expect. If it has to be done this way, it has to be done this way :). Past projects have exchanged data between devices using binary. This has disadvantages - byte swapping issues, messages tied to data structures, etc. Charlie Gilley You're going to tell me what I want to know, or I'm going to beat you to death in your own house. "Where liberty dwells, there is my country." B. Franklin, 1783 “They who can give up essential liberty to obtain a little temporary safety deserve neither liberty nor safety.” BF, 1759
  • Merging 2 consecutive List items in XSLT

    xml html com
    1
    0 Votes
    1 Posts
    4 Views
    No one has replied
  • displaying xml file on wpf

    csharp wpf xml
    2
    0 Votes
    2 Posts
    11 Views
    L
    adinarayana09580 wrote: please send me code for this See point 2[^]. Use the best guess
  • Checking for valid xml file.

    xml database
    3
    0 Votes
    3 Posts
    13 Views
    M
    Does such a thing require adding a new namespace? Mark
  • Parsing HTML

    html com xml json help
    4
    0 Votes
    4 Posts
    18 Views
    Richard DeemingR
    No need to make that call to R'lyeh yet; the HAP makes parsing an HTML document simple: HtmlDocument doc = new HtmlDocument(); doc.Load(@"path\to\your\file.htm"); foreach(HtmlNode link in doc.DocumentElement.SelectNodes("//a[@href"]) { string url = link["href"].Value; Fhtagn(url); } "These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
  • XML data representation

    question com data-structures xml discussion
    2
    0 Votes
    2 Posts
    8 Views
    K
    I actually view XML documents as a datatable, and in fact you can store a datatable to XML format by the ToXML command.
  • Dataset.GetXml() problem

    xml help
    2
    0 Votes
    2 Posts
    8 Views
    C
    i also have the same problem
  • running xml

    xml
    3
    0 Votes
    3 Posts
    15 Views
    A
    XSLT and Eclipse - Tutorial XML development with Eclipse[^] Nobody is Perfect i.e.100% --AP
  • 0 Votes
    1 Posts
    5 Views
    No one has replied
  • Layout question

    question css xml
    2
    0 Votes
    2 Posts
    9 Views
    Z
    Do you mean like this?
  • sharing data by using xml

    sysadmin xml question announcement
    3
    0 Votes
    3 Posts
    15 Views
    E
    Thanks!
  • 0 Votes
    4 Posts
    18 Views
    L
    In that case I would suggest you spend some time learning the structure of XML and DTD files before proceeding further. One of these days I'm going to think of a really clever signature.
  • Help with XSLT

    xml database business help question
    2
    0 Votes
    2 Posts
    12 Views
    M
    Turns out "copy-of" was working, it was FMPro that is stripping the angle bracket tags out of the file on import. BAD Filemaker!
  • XML , XSL and JavaScript

    xml javascript
    3
    0 Votes
    3 Posts
    11 Views
    R
    Actually i want to do like this as you mention in your answer but i am loadind XML values in javascript and this script is in XSL. If i write above code in javascript file then i can not load xml values because these values dynamically loaded at the time of HTML generation.
  • XSL Output

    xml question
    1
    0 Votes
    1 Posts
    4 Views
    No one has replied
  • How to know last autoincrement id in xml file

    sysadmin xml tutorial
    2
    0 Votes
    2 Posts
    11 Views
    C
    I write in c#, but you should be able to use the xpath to get the last unique orderid from your xml. static void Main(string[] args) { XmlDocument doc = new XmlDocument(); doc.Load(@"c:\temp\cateringorders.xml"); string query = "(//orderid[not(orderid=preceding-sibling::orderid)])[last()]"; XmlNodeList nodes = doc.SelectNodes(query); foreach (XmlNode node in nodes) { Console.WriteLine(node.InnerText); } Console.WriteLine("Finished"); }
  • A way to view and edit a xml file in the web browser

    xml
    3
    0 Votes
    3 Posts
    13 Views
    G
    Marc Clifton has a good article here where he parses the schema, and produces a dialog based form showing the message content. Well worth a look. Ger
  • 0 Votes
    1 Posts
    3 Views
    No one has replied
  • best current book with strong coverage of XSLT ?

    xml performance question learning
    3
    0 Votes
    3 Posts
    13 Views
    B
    Many thanks ! I don't know how I missed noticing that one, since Apress books have generally been very useful to me, and I thought I had searched their site. best, Bill It keeps me humble to think there's more bacteria in my gut than neurons in my brain, and that twenty trillion neutrinos pass through one hand a second, and that the average mattress contains 20 million bedbugs each of whom shits once per hour.