I have XML with attributes which contaings special characters 
 and 
 -- sample XML is in attach. For reading I use this simple code:
PROC Main
CLS
oDoc := TXmlDocument():new()
oDoc:read(MemoRead("c:\tmp\pp.xml"))
x1 := oDoc:findFirst ("Stavke")
? s1 := x1:aAttributes["naziv"]
x2 := oDoc:findNext ()
? s2 := x2:aAttributes["naziv"]
x3 := oDoc:findNext ()
? s3 := x3:aAttributes["naziv"]
RETURN
Result change every time I start this program???

Does anyone know what the problem is?
Thanks in advance, NB