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
  • "Empty" XML Document

    xml database wpf wcf question
    1
    0 Votes
    1 Posts
    3 Views
    No one has replied
  • 0 Votes
    1 Posts
    3 Views
    No one has replied
  • Using SSL with XML POST

    question sysadmin security cryptography xml
    1
    0 Votes
    1 Posts
    3 Views
    No one has replied
  • Beginner XSL problem

    xml question regex help learning
    3
    0 Votes
    3 Posts
    13 Views
    T
    thx (there was no space in oryginal ;) but correct version of test shoud look like xsl:when test="name='myName'"
  • Writing XML to file with tabs etc

    question c++ html xml
    8
    0 Votes
    8 Posts
    21 Views
    R
    The problem you are facing is true if you read the xml in a text editor. But any xml editor should automatically reorganize the display of your data in the "neat" way. I am assuming this is your objective. Unless you wish to read it in a simple text editor and yet have it formatted. In which case.... hmmmm... too much effort, when there are so manty xml editors and tools available. Including IE which will display your XML in the "neat" way.
  • XML Uses

    question csharp xml
    7
    0 Votes
    7 Posts
    27 Views
    M
    The problem is when you are working with a speed-demanding DB system, when the client workstations need almost real time feedback from the DB. If i want to conduct a search inside each XML string (if you treat it as a stream) for each row in a DB table, and you also have to unzip it first, the overall system performance is heavly reduced. For transfers, no problem. I agree with you. Best Regards
  • Getting started with XML

    html tools xml tutorial question
    9
    0 Votes
    9 Posts
    34 Views
    C
    Thanks, Christopher. Looks like the quick & dirty way is just a fast MFC dialog based app and a little string processing. Appreciate the link! Chistopher Duncan Author - The Career Programmer: Guerilla Tactics for an Imperfect World (Apress)
  • Database Problem

    help database
    1
    0 Votes
    1 Posts
    3 Views
    No one has replied
  • selected value in select box using xsl,xml

    xml
    7
    0 Votes
    7 Posts
    20 Views
    L
    Usually these questions come together Drop downs, Combo/Selection boxes and Hyperlinks - so let's just do them all here and now! :-D Creating a hyper link in XSL(T) - note all the replies with alternate ways of doing it :eek: Creating a select box and selecting one or more items Extracting an item from a delimited list
  • Updating an XML file from VC6.0

    html com xml tutorial question
    8
    0 Votes
    8 Posts
    30 Views
    A
    Read here for possible information on formatting needs: Format XML/XSL for Documentation
  • Passing Strings encoded BASE64 in XML

    question xml help
    2
    0 Votes
    2 Posts
    7 Views
    A
    Passing binary or base64 information around may be easiest if you use SOAP - here is information on building a SOAP tool in VC: C++ SOAP client for MS SOAP Toolkit 1.0 For more basic non-VC :zzz: introductory base64 information try this XML and Binary Data article and MXSML based class module to perform Base64 encoding and decoding and Class object for Base64 conversion with .NET
  • 0 Votes
    1 Posts
    3 Views
    No one has replied
  • Repeating elements in a sequence.

    question
    1
    0 Votes
    1 Posts
    4 Views
    No one has replied
  • dynamic display of image from XML source

    question html hardware xml help
    3
    0 Votes
    3 Posts
    10 Views
    J
    .. I stumbled upon the following today I hope it helps. http://support.microsoft.com/default.aspx?scid=kb;en-us;Q254388 You shoudl be able to convert it to something useable. Al. Alice thought that running very fast for a long time would get you to somewhere else. " A very slow kind of country!" said the queen. "Now, here , you see, it takes all the running you can do, to keep in the same place".
  • XML

    question database xml
    7
    0 Votes
    7 Posts
    25 Views
    M
    Hi Alex Thank you for reply.I'll do it. :) Mazy **"If I go crazy then will you still Call me Superman If I’m alive and well, will you be There holding my hand I’ll keep you by my side with My superhuman might Kryptonite"**Kryptonite-3 Doors Down
  • SQLXML Schemas

    database visual-studio sysadmin xml tutorial
    2
    0 Votes
    2 Posts
    6 Views
    J
    I thikn I saw something about that in the Extreme XML column on the MSDN site. Alice thought that running very fast for a long time would get you to somewhere else. " A very slow kind of country!" said the queen. "Now, here , you see, it takes all the running you can do, to keep in the same place".
  • XML update

    html xml help question announcement
    2
    0 Votes
    2 Posts
    9 Views
    J
    SAX. Alice thought that running very fast for a long time would get you to somewhere else. " A very slow kind of country!" said the queen. "Now, here , you see, it takes all the running you can do, to keep in the same place".
  • retrieve data with types from XML

    xml html database help
    1
    0 Votes
    1 Posts
    3 Views
    No one has replied
  • XMLNS issues with XSL transformation.

    html xml question csharp wpf
    3
    0 Votes
    3 Posts
    7 Views
    D
    Thanks a ton for the response! I was beginning to think nobody knew... Anyways, the exclude-result-prefixes works great to get rid of the extra xmlns:MHC="..." in my <html> tag. I need to keep the XML declaration for valid XHTML however, but thanks for the help anyways. So, any ideas on the empty xmlns="" attribute that pops up in those elements? Rather weird... Thanks again, it's really reat to have someone who knows this stuff! -Domenic Denicola- [CPUA 0x1337] MadHamster Creations "I was born human. But this was an accident of fate - a condition merely of time and place. I believe it's something we have the power to change..."
  • Compare XML files

    xml question
    3
    0 Votes
    3 Posts
    15 Views
    S
    in order to know if they are different (without counting) you can compare the xml-strings: in VB: dim domFile1 as new DomDocument dim domFile2 as new DomDocument domFile1.load "C:\file1.xml" domFile2.load "C:\file2.xml" If domFile1.xml = domFile2.xml Then .... what do you need? Sebastian