Hundreds of features to explore
Games made in Construct
Your questions answered
Trusted by schools and universities worldwide
Free education resources to use in the classroom
Students do not need accounts with us
What we believe
We are in this together
World class complete documentation
Official and community submitted guides
Learn and share with other game developers
Upload and play games from the Construct community
Game development stories & opinions
Hi there,
I'm facing strange problem with XML parsing.
Here my XML file genarated from this webservice: http://services.gisgraphy.com/geoloc/search?lat=50.209298&lng=10.245&from=1&to=1
//this is a simplified version for readers: "<results xmlns=""http://gisgraphy.com""> <numFound>1</numFound> <QTime>293</QTime> <result> <name>Poppenlauer</name> <adm1Code>02</adm1Code> <adm1Name>Freistaat Bayern</adm1Name> <asciiName>Poppenlauer</asciiName> <countryCode>DE</countryCode> <gtopo30>257</gtopo30> <timezone>Europe/Berlin</timezone> <lat>50.216670989990234</lat> <lng>10.233329772949219</lng> </result> </results>"[/code:uvtwi4p4] IT WORKS only when i change the xmlns to something else, and i can't see any error in C2 nor in chrome javascript console. Can any one tell me why? Thanks in advance.
Develop games in your browser. Powerful, performant & highly capable.
I think the XML plugin expect your root node to be in the null namespace.
Thanks, Yes indeed, i "solved" the problem by replacing 'xmlns' to 'x' when i receive Ajax response, but i'm really disappointed, spending 2 hours for nothing..
Anyway i must report it, can't work with it in that way...
Cheers.