Windows phone 8 web browser control load local json - xaml

I have a windows phone 8 Html5 app. It require to load a local json by create Http request (ajax) but it seem web browser control block local request. How can I fix that problem?

Related

ASP .Net Core 5 web application crashes in Fully-kiosk app

For the first time, I'm using fully-kiosk on a PROVX Android, version 9
I set up the website that I want to open when the user starts up the device but the page crashes.
The website is an ASP .Net Core 5 web application, published in Azure and it works perfectly on any other device and browsers (Google Chrome, Mozilla Firefox, Microsoft Edge...). I don't get any error messages from the browser.
I wanted to know which browser uses the PROVX to load the setup website, so maybe I will adapt the application to load up correctly.

ASP.Net Core 2.0 IIS Express SSL Client Certificate Prompt on Static Files

Environment/Frameworks:
Windows7
asp.net core 2.0 application running in IIS Express in VS2017
IE11, Edge, Chrome
Background:
I have and Asp.net Core 2.0 MVC application that I want to run in such a way that I get prompted to pick a client certificate in order to access the application. In my local computer for testing purposes, I have created a sample fake self-signed certificate as per this article http://dcdevs.blogspot.com/2017/06/iis-express-client-certificates.html, and I have configured my asp.net core 2 application in VS2017 by going to project Properties -> Degub Tab, and checking Enable SSL, then copying the generated URL to the App URL text box.
On the Startup.cs or Program.cs I have NOT added any settings to required SSL, which means to my understanding that IIS Express is serving as proxy to require https then forwarding the requests to Kestrel in a regular http request as per this post ASP.NET Core + IIS + SSL
All in all, when I run the application I get prompted to select a certificate, then I am able to read the certificate and extract information out of it inside a controller. The application comes up, and I can see everything on the Home page with its banner image, but I cannot see the images that are retrieved from a javascript file and then placed on the page with DOM manipulation. This happens in IE11, and Edge, but Chrome just works fine.
Problem:
When I load a page I get prompted to select a certificate and then the page opens, but any javascript that make subsequent requests to load images (static files) hosted on the same application under wwwroot also gets prompted. When I hit F12 and monitor the network calls, this request to static files appear as Aborted in EI11 and Pending in Edge. If I open a new tab and copy the image url, I get prompted for a certificate the first time. If I navigate to different links on the application which invoke other controller's actions the pages just display fine, the main banner image of the site still displays fine. It is just the calls to static files (e.g. images) that cause the prompt for certificate to appear again. As I described above I don't have this problems when I run the application in Chrome.

An app can't load remote web content in the local context

I m trying to integrate Bing Maps V8 SDK in a Windows Phone JavaScript app.
I m following the current sample: http://www.bing.com/api/maps/sdk/mapcontrol/isdk#loadMapSync+HTML
In the HTML page, when it comes to <script type='text/javascript' src='http://www.bing.com/api/maps/mapcontrol'></script>, I get the following error at app runtime: An app can't load remote web content in the local context
I understand what it means but I can't download the JavaScript file locally because this file also refers to other js files, etc. The problem remains the same. For the same reason, I m also unable to make an XHR request.
Thanks
Here are examples of how to load the Bing Maps control into a mobile app.
https://code.msdn.microsoft.com/Cross-Platform-Bing-Maps-e96600d5#content
https://jkebeck.wordpress.com/2013/06/22/cross-platform-development-with-bing-maps-and-phonegap/
http://soulsolutions.com.au/bing-maps-on-iphone-with-phone-gapapache-cordova/
http://soulsolutions.com.au/showing-gps-position-on-bing-maps-with-phonegapapache-cordova/

JavaScript redirect in web context of HTML & JS store app

I'm having an issue with an which sits behind an enterprise authentication system. The app is an HTML5 web app which is loaded remotely through an iframe. This works fine, until the authentication system is integrated; this uses a javascript redirect which WinJS refuses to follow and logs an error APPHOST9624.
Is there a way around this?

ASIHTTP request returning NULL response in ios 6

I am developing an app in ios which is ARC enabled. Inside this, I have a functionality of image uploading into the server using the .net web services. The web services send a json string which containing status of the request i.e., success/failure. And I am using ASI HTTP request for hitting the services and sbjson for parsing the response.
My case, if i am running this image uploading functionality in ios6 device, the response which I am receiving from the .net web services is showing as null randomly[once in 10 or 15 times]. But, in server side log files shows that it is succeeded like that and the image uploading is also done in the server.
But, this functionality is working fine in ios5.
Can any one help us?
Thanks in Advance.