Open henkkelder opened 9 years ago
Current implementation of PushPlugin does not work with Windows Mobile 8.1
The cullpit is line 160 in PushPlugin.cs which currently is:
cView.Browser.InvokeScript("execScript", callback + "(" + callbackResult + ")");
For the plugin to work with WP81 this line has to be modified to:
cView.Browser.InvokeScript("eval", callback + "(" + callbackResult + ")");
Thank you very much. It works! I can view the URI from the WNS...
Current implementation of PushPlugin does not work with Windows Mobile 8.1
The cullpit is line 160 in PushPlugin.cs which currently is:
cView.Browser.InvokeScript("execScript", callback + "(" + callbackResult + ")");
For the plugin to work with WP81 this line has to be modified to:
cView.Browser.InvokeScript("eval", callback + "(" + callbackResult + ")");