Skip to content

I have to make XML and XLST stylesheet. Do I need any particular software for this?

I am required to create my own schemas in XML. Kindly suggest if I will be able to do this at home or if I need any software?

2 Comments

  1. alco19357 wrote:

    Notepad will work fine! Any further help, I can help, just send me an email. Im pretty good with XML, here’s a simple thing I did for someone else on YAHOO ANSWERS about XML.
    —————-
    Absolutely NOT. It’s easy. On a scale of 1-10, 10 being the easiest, I rate it 10! I learned it in less than a day, of only practicing. I learned XML from W3Schools.com. XSLT is harder.

    XML:

    Make up your own tags.

    Start up notepad or something like that.

    now you always need to start an xml file with the following code:

    <?xml version="1.0" encoding="ISO-8859-1"?>

    Now you can start writing. For organization, skip a line after the: <?xml version="1.0" encoding="ISO-8859-1"?>

    Start your tags. Unlike html, in xml, you can write your own tags. Instead of having the <html> tag, I am going to use <xml>, as the main tag. But you can use anything you’d like.

    <?xml version="1.0" encoding="ISO-8859-1"?>

    <xml>

    </xml>

    Now we will write our body. The xml tags are like the html tags in html, just the whole cover up. We need new tags for our main body. I will use the following as a body tag "body".

    <?xml version="1.0" encoding="ISO-8859-1"?>

    <xml>
    <body>

    </body>

    <body>

    </body>
    </xml>

    We will write two different body things for this example. Now we have a body, which we will add a title. So our title tag will be called "title". And we’ll add a blog, so our blog tag will be "blog".

    <?xml version="1.0" encoding="ISO-8859-1"?>

    <xml>
    <body>
    <title></title>
    <blog></blog>
    </body>

    <body>
    <title></title>
    <blog></blog>
    </body>
    </xml>

    Now we can start adding text to the title and blog. Add the text in between the >< of both tag sets. I made an example.

    <?xml version="1.0" encoding="ISO-8859-1"?>

    <xml>
    <body>
    <title>This is My First</title>
    <blog>This is the blog part!</blog>
    </body>

    <body>
    <title>I made XML LIVE!</title>
    <blog>XML NOW LIVES IN ME!</blog>
    </body>
    </xml>

    For starters, you can use CSS to view the xml file.

    But now save the file as: myxml.xml, MAKE SURE YOU ADD THE .xml part.

    Sunday, January 3, 2010 at 7:23 am | Permalink
  2. tsra1983 wrote:

    XML is just the language, you can do it on your notepad program if you want to.

    I suggest starting by typing C:/Del_tre and saving it as a .bat file, no don’t do that it will delete everything, how about just typing out some XML code instead.

    Sunday, January 3, 2010 at 7:23 am | Permalink

Post a Comment

Your email is never published nor shared.