I'm on the way to upgrade a windows 8 application to 8.1. A new feature should be a checkout process using a WebView. In some cases the server responds a HTTP 302 Code and the webview is redirected to an url with a custom protocol (e.g. customer://checkout) which I can not handle. Tried these events to catch the redirect.
NavigationStarting NavigationFailed FrameNavigationStarting UnviewableContentIdentified
So the next try was to seperate the WebView from its http client and load the content using the NavigateToString method with the html I get from my own HttpClient. As there are form data I have to submit using a post request and there's no way to use a InvokeScriptNotify / ScriptNotify, this way might also not work.
Does anyone have an idea how to handel a redirect or recognize a submit of form data without ScriptNotify?
Thanks in advance.