tags:

views:

67

answers:

1

I have an application where the html/javascript code executes fine in a standalone browser safari, but when the ajax calls are executed in PhoneGap, they all fail with the Network Error 101.

I am requesting XML documents

A: 

Yes.

BUT, it does not gracefully handle certificate errors with the HTTPS protocol. I ended up writing my own code to establish the initial connection with the server and ignore the cert errors

here is the code http://blog.clearlyinnovative.com/post/1012434483/phonegap-and-iphone-development

Aaron Saunders