Hey to all,
I build my application to Xcode and open it on my Ipad. App42 connected properly but Appwarp gave me an error "Connection Error: 5". Then I serached a bit and found that link http://stackoverflow.com/questions/31216758/how-can-i-add-nsapptransportsecurity-to-my-info-plist-file which says that Apple does not allow unsecured server connections. The I workaround the problem by editing info.plist
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key><true/>
</dict>
which now allow unsecured connections. But both these guys on the thread and Apple clearly state that "But this is not recommended at all. The server should have the SSL certificates and so that there is no privacy leaks."
Then I found this thread http://forum.shephertz.com/?qa=6785/can-i-use-https-ssl-with-app42-appwarp&show=6785#q6785 which says you can enable ssl for Appwarp. But I couldnt find enableSSL(true) on my code.
Appwarp doesnt have SSL while App42 has? If it has, how can I enable it? And if I enable SSL for Appwarp, are there any performance issues for my multiplayer game that I need to know.
Thanks.