hyphen problem

webmasterbeta

New Member
I was hoping someone might be able to help me. I have been trying to use several flash music players that use xml files, although I am able to get them to work on using several domain names to reference file locations perfectly, I am having trouble on one particular domain name which has a hyphen in the name, I maybe barking completely up the wrong tree but I can only think that the hyphen is not liked by the xml itself. I have tried using the %2d in place of the hyphen but it made no difference. In the example below the first track doesn't play but the second track would do (assume that the mp3 files have been placed in the correct folders). I would like to be able to access the files on the host that is accessed through the domain with the hypenated name. Any help on this matter would be most appreciated....

<?xml version="1.0" encoding="UTF-8"?>
<xml>


<track>
<path>http://www.example-test.com/testarea/track01.mp3</path>
<title>water</title>
</track>

<track>
<path>http://www.example.com/testarea/track02.mp3</path>
<title>goober</title>
</track>


</xml>
 
Back
Top