vote up 2 vote down star

I'm writing server-side programs in PHP for an iPhone app. And I have no iPhone. :P

The iPhone app requests XML files from the site whenever a user runs the iPhone app. You may visit http://www.appvee.com/iphone/ads or http://www.appvee.com/iphone/latest for the XML files.

And a message box will show up with the following error messages: "Web Site Error Conversion of data failed. The file is not UTF-8, or in the encoding specified in XML header if XML. " alt text

Maybe I must add header("Content-type: text/xml"); at the beginning of the PHP files? I didn't add this line and it worked well before.

Any help is greatly appreciated.

flag

5 Answers

vote up 2 vote down check

I agree with ceejayoz, looks like this is a special characters issue.

I would suggest using the htmlentities method to encode the data in the xml file.

link|flag
vote up 2 vote down

It might be the unescaped special character (looks like it's supposed to be a curly apostrophe) in the 'latest' XML. (in the line that goes "Find out information about what[THIS IS THE CHARACTER]s around you and how...")

Does adding an XML content type header resolve the issue? You ask it if's necessary but give no indication if it helps or not.

link|flag
vote up 0 vote down

Thank you very much, ceejayoz and chills42. Yes, that special character caused the problem.

link|flag
vote up 0 vote down

Box, are u writing appliction for ippone now ?

link|flag
Yes, only server side programming because I have no iPhone. The server will returns XML files or special HTML files like appvee.com/iphone/app/wordpress – boxoft Oct 10 '08 at 12:01
vote up 0 vote down

Hi all, I am iphone developer and I am using php to get my xml from data base. I am facing one problem that one of my xml tag have a lines that contains some special characters like çã or & like that and I am not able to parse them. Is there some thing related with xml type it is already utf-8 and standalone = yes. Is there something specific which i need to tell my php programmer that could help me to parse the same character without any problem. I dont have any idea about php. so please be specific so that i could show this post to my php programmer and he will understand. If i save the same xml locally than i dont face any problem getting those special characters but i am trying to parse the xml by passing URL at that time I am not able to get the special characters. please help me. my id is narender.mudgal@gmail.com

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.