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
  • how to insert image data(bytes) into XML File

    help xml tutorial
    2
    0 Votes
    2 Posts
    0 Views
    L
    krish_rana16 wrote: Needed yr help. Only because you refuse to study the subject yourself. There is an enormous amount of information available on the internet and probably even articles on this site that discuss and provide example code for doing just that. Lazy people who won't do their own work do not frequently find help here on CodeProject. In case you don't realize it, studying and reading documentation is part of a developers work. ;) led mike
  • Formating XML

    database csharp xml question
    5
    0 Votes
    5 Posts
    0 Views
    N
    I Googled this issue earlier and that site came up. Just thought I'd take the easy way out hoping someone has tried the exact same thing as myself. Thanks for responses led mike!
  • XML to HTML Conversion in .Net

    csharp html xml
    2
    0 Votes
    2 Posts
    0 Views
    L
    Sure why not[^] led mike
  • How do we hide public properties when using a XMLweb service?

    question sales
    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • How to decode from XML file.....

    xml tutorial
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • RDLC (Report) using XSD Dataset

    database xml help question announcement
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Can I use the index on XSL to get the record

    question database xml
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Getting maximum id

    csharp xml html com question
    5
    0 Votes
    5 Posts
    0 Views
    L
    N a v a n e e t h wrote: It works well. But is there any other alternative for doing this ? As I will have many nodes, this method may be performance costly. "Premature optimization is the root of all evil (or at least most of it) in programming."[^] Source: Donald Knuth, "Computer Programming as an Art" 1974 Turing Award lecture led mike
  • How to get the exact node info - XML parsing question

    help xml json tutorial question
    2
    0 Votes
    2 Posts
    0 Views
    N
    You can try XPath[^], which is easy and efficient. All C# applications should call Application.Quit(); in the beginning to avoid any .NET problems.- Unclyclopedia My Website | Ask smart questions
  • Firefox & XML

    xml csharp javascript html css
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • XML Schema to XML File

    xml database help question
    3
    0 Votes
    3 Posts
    0 Views
    T
    Hi led mike! Thank you for reply. I have found the solution at MSDN. It's working fine for my XSD. Regards. "Save water,It's precious" :) "Don't forget to vote" ;) ;P ;)
  • DataSet to XML & from XML to Databse

    csharp database xml help question
    3
    0 Votes
    3 Posts
    0 Views
    realJSOPR
    You can try this: DataSet ds = GetMyDataset(); // imaginary function - substitute your dataset retrieval code here XmlTextWriter xmlFile = new XmlTextWriter (@"C:\TEST.XML", null); XmlDataDocument xmlDoc = new XmlDataDocument(ds); xmlDoc.WriteContentTo(xmlFile); xmlFile.Close(); The code above should take a dataset and write it to a XML file. "Why don't you tie a kerosene-soaked rag around your ankles so the ants won't climb up and eat your candy ass..." - Dale Earnhardt, 1997 ----- "...the staggering layers of obscenity in your statement make it a work of art on so many levels." - Jason Jystad, 10/26/2001
  • Has Anyone ever worked on Veda Advantage? Need Some help.

    help xml question
    7
    0 Votes
    7 Posts
    0 Views
    G
    led mike wrote: So you don't know where to start but you are finished and the code was perfect. Code was perfect but at other side the service was not working. :rolleyes: , But When it was not working, I have asked, So we thought there might be a problem at our side, we may be wrong at some point and it was very first time, So I have thought we might be going wrong, That's why I have asked 'Exact and Correct Way'. But I wasn't sure I was asking for Correct Code!! :cool: I have asked only for those who have worked on it... I think u haven't Yet :rolleyes: Anyway Thanks for Taking Interest :-\ , That's Positive. Believe Yourself™ :-\™
  • Assistance Required

    xml html regex help
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Converting XML Elements to Strings

    data-structures xml help question
    3
    0 Votes
    3 Posts
    0 Views
    J
    as answered before to your question : the XmlNode.InnerXml property is probably what you are looking for.
  • HexaDecimal Error in XML Files

    help visual-studio com xml question
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Converting XML Elements to Strings

    data-structures xml help question
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • How many nodes start slowing performance?

    xml performance help question
    2
    0 Votes
    2 Posts
    0 Views
    L
    7 performance slowdown of what? Oh right performance yeah I know exactly what you mean. :rolleyes: led mike
  • Help for Xindice Database

    database c++ apache sysadmin xml
    10
    0 Votes
    10 Posts
    0 Views
    P
    Led Mike, Thank you for all your support :) I got C++ Interfec of Xindice XML-RPC Thanks Prasanth
  • embedding file into an XML file

    xml question
    4
    0 Votes
    4 Posts
    0 Views
    L
    Ayman Mashal wrote: how can i do that ? Do some research on XML and MIME or XML and Base64 Encoding led mike