HTTP request safe?
I am sending http request to my server using ASIHTTPRequest library but I don't know if it obfuscates the request data. Also on the sever side, I am creating an XML file and response back to the device using php. What is the safe way to form an XML docu开发者_运维问答ment and send back to the device?
The only safe way to connect to a webserver is by using SSL/https.
I would recommend SSL and/or XML Signatures
Anything sent over just http is sent in clear text. Anyone can see your traffic on any part of the route from you to the destination. This is why facebook/twitter and a number of sites have switched to an https preferred model.
精彩评论