Results 1 to 9 of 9

Thread: can you check this small xml doc please?

  1. #1
    Join Date
    Oct 2006
    Posts
    8
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default can you check this small xml doc please?

    Hi.

    I couldnt find an xml category on this forum, so i hope I am posting in the right place. Can anyone tell me what is wrong with this xml document? It won't work.

    <?xml version="1.0” encoding=“UTF-8” ?>
    <CDs>
    <Artist name=“Robbie Williams”>
    <Album name=“Intensive Care”>
    <Price>16.49</Price>
    <ReleaseDate>24/10/05</ReleaseDate>
    </Album>
    </Artist>
    <Artist name=“Eminem”>
    <Album name=“Curtain Call”>
    <Price>12.99</Price>
    <ReleaseDate>09/12/05</ReleaseDate>
    </Album>
    <Album name=“The Eminem Show”>
    <Price>9.99</Price>
    <ReleaseDate>02/07/04</ReleaseDate>
    </Album>
    </Artist>
    <Artist name=“Arctic Monkeys”>
    <Album name=“What Ever People Say”>
    <Price>9.99</Price>
    <ReleaseDate>14/02/06</ReleaseDate>
    </Album>
    </Artist>
    </CDs>

    Thanks.

  2. #2
    Join Date
    Oct 2006
    Posts
    8
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Ok hopefully the indents will work this time

    <?xml version="1.0” encoding=“UTF-8” ?>
    <CDs>
    <Artist name=“Robbie Williams”>
    <Album name=“Intensive Care”>
    <Price>16.49</Price>
    <ReleaseDate>24/10/05</ReleaseDate>
    </Album>
    </Artist>
    <Artist name=“Eminem”>
    <Album name=“Curtain Call”>
    <Price>12.99</Price>
    <ReleaseDate>09/12/05</ReleaseDate>
    </Album>
    <Album name=“The Eminem Show”>
    <Price>9.99</Price>
    <ReleaseDate>02/07/04</ReleaseDate>
    </Album>
    </Artist>
    <Artist name=“Arctic Monkeys”>
    <Album name=“What Ever People Say”>
    <Price>9.99</Price>
    <ReleaseDate>14/02/06</ReleaseDate>
    </Album>
    </Artist>
    </CDs>

  3. #3
    Join Date
    Oct 2006
    Posts
    8
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    ok NOW i hope it works with indents

    <?xml version="1.0” encoding=“UTF-8” ?>
    <CDs>
    . <Artist name=“Robbie Williams”>
    . <Album name=“Intensive Care”>
    . <Price>16.49</Price>
    . <ReleaseDate>24/10/05</ReleaseDate>
    . </Album>
    . </Artist>
    . <Artist name=“Eminem”>
    . <Album name=“Curtain Call”>
    . <Price>12.99</Price>
    . <ReleaseDate>09/12/05</ReleaseDate>
    . </Album>
    . <Album name=“The Eminem Show”>
    . <Price>9.99</Price>
    . <ReleaseDate>02/07/04</ReleaseDate>
    . </Album>
    . </Artist>
    . <Artist name=“Arctic Monkeys”>
    . <Album name=“What Ever People Say”>
    . <Price>9.99</Price>
    . <ReleaseDate>14/02/06</ReleaseDate>
    . </Album>
    . </Artist>
    </CDs>

  4. #4
    Join Date
    Oct 2006
    Posts
    8
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    FFS. ok hopefully this works. The dots represent the spaces

    .<?xml version="1.0” encoding=“UTF-8” ?>
    .<CDs>
    .....<Artist name=“Robbie Williams”>
    ..........<Album name=“Intensive Care”>
    ...............<Price>16.49</Price>
    ...............<ReleaseDate>24/10/05</ReleaseDate>
    ..........</Album>
    .....</Artist>
    .....<Artist name=“Eminem”>
    ..........<Album name=“Curtain Call”>
    ...............<Price>12.99</Price>
    ...............<ReleaseDate>09/12/05</ReleaseDate>
    ..........</Album>
    ..........<Album name=“The Eminem Show”>
    ...............<Price>9.99</Price>
    ...............<ReleaseDate>02/07/04</ReleaseDate>
    ..........</Album>
    .....</Artist>
    .....<Artist name=“Arctic Monkeys”>
    ..........<Album name=“What Ever People Say”>
    ...............<Price>9.99</Price>
    ...............<ReleaseDate>14/02/06</ReleaseDate>
    ..........</Album>
    .....</Artist>
    .</CDs>

  5. #5
    Join Date
    Dec 2006
    Posts
    14
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    What message do you get? WHat are you trying to do with it?

  6. #6
    Join Date
    Dec 2006
    Posts
    14
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    also do you have a link to the file?

  7. #7
    Join Date
    Jun 2006
    Location
    Acton Ontario Canada.
    Posts
    677
    Thanks
    0
    Thanked 1 Time in 1 Post

    Default

    Nothing You have Done Changes the Code At All.

    Adding The Periods would most likely break it.

    You XML isnt well formed if its not displaying.

    Descibe your problem.
    - Ryan "Boxxertrumps" Trumpa
    Come back once it validates: HTML, CSS, JS.

  8. #8
    Join Date
    Oct 2006
    Posts
    8
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    first of all i am trying to learn xml basics. What the xml document does should be straight forward for humans to understand.

    It is a listing of music CDs.

    An artist has an album
    An album has a price and a release date.

    I tried to run it in IE but it doesnt work.

  9. #9
    Join Date
    Dec 2004
    Location
    UK
    Posts
    2,358
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Quote Originally Posted by arkitect101 View Post
    <?xml version="1.0” encoding=“UTF-8” ?>
    You are using left and right double-quotation marks (U+201C [“] and U+201D [”]), rather than "straight" quotation marks (U+0034 ["]). By all means use the former as well as left and right single-quotation marks (U+2018 [‘] and U+2019 [’]) in character data, but not in markup.

    To maintain formatting, use the &#91;code&#93;...&#91;/code&#93;, &#91;html&#93;...&#91;/html&#93;, or &#91;php&#93;...&#91;/php&#93; vB code delimiters:

    Code:
    <?xml version="1.0" encoding="utf-8" ?>
    <CDs>
        <Artist name="Robbie Williams">
            <Album name="Intensive Care">
                <Price>16.49</Price>
                <ReleaseDate>24/10/05</ReleaseDate>
            </Album>
        </Artist>
        <Artist name="Eminem">
            <Album name="Curtain Call">
                <Price>12.99</Price>
                <ReleaseDate>09/12/05</ReleaseDate>
            </Album>
            <Album name="The Eminem Show">
                <Price>9.99</Price>
                <ReleaseDate>02/07/04</ReleaseDate>
            </Album>
        </Artist>
        <Artist name="Arctic Monkeys">
            <Album name="What Ever People Say">
                <Price>9.99</Price>
                <ReleaseDate>14/02/06</ReleaseDate>
            </Album>
        </Artist>
    </CDs>
    Mike

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •