I have a C# metro application on Windows 8.1 with a webview pointing to a my server application on a HTTP url. I need to call back into the C# application from the Javascript code in the webview.
I tried to use WebView.ScriptNotify and to call window.external.notify
This works on Windows 8 but apparently, in Windows 8.1, the documentation states that the URI in the WebView calling window.external.notify must use
HTTPS but my application has a HTTP uri.
Is there a way to call the C# code from the Javascript in the webview other than using window.external.notify?
If not, is there a way to use HTTP uris with window.external.notify in Windows 8.1?