I’ve got some embedded (read: local) html files with forms loaded in a UIWebView in my app. The form action attempts to call a script I’ve got on a server. I know the script is working because it has been tested on a local machine and inputs values into the database as needed.
However, when I have the local form on the app attempt to do this, the url for the script is called (and even the webViewDidLoad delegate method is called) BUT, values are NOT inserted into the database. Is it possible for local html files to submit to scripts on the web? Or are they limited to the local filesystem because they are present there?
What you have described is possible.
Are you sure you are returning YES when shouldStartLoadWithRequest: is called?