<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Awsome. Thanks in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/Http-requests-working-in-emulator-but-not-in-quot-Intel-App/m-p/1074104#M59240</link>
    <description>&lt;P&gt;Awsome. Thanks&lt;/P&gt;

&lt;P&gt;Searched a lot found a sloution here.&lt;/P&gt;</description>
    <pubDate>Sun, 03 Jul 2016 15:49:53 GMT</pubDate>
    <dc:creator>yuvaraj_m_</dc:creator>
    <dc:date>2016-07-03T15:49:53Z</dc:date>
    <item>
      <title>Http requests working in emulator but not in "Intel App Preview" app</title>
      <link>https://community.intel.com/t5/Software-Archive/Http-requests-working-in-emulator-but-not-in-quot-Intel-App/m-p/1074096#M59232</link>
      <description>&lt;P&gt;For those reading this thread, frameworks (such as Cocos2D) that rely on using XHR with file:// URLS, and treat a non-200 status and/or a non-OK statusText as an error may not work in App Preview due to some XHR override code that is included as part of App Preview. This special handling XHR code code built into App Preview can be disabled by adding the "data-noxhrfix" property to the &amp;lt;head&amp;gt; tag in your app, for example:&lt;/P&gt;

&lt;PRE class="brush:xml;"&gt;&amp;lt;!DOCTYPE html&amp;gt; &amp;lt;!--HTML5 doctype--&amp;gt;
&amp;lt;html&amp;gt;
	&amp;lt;head data-noxhrfix&amp;gt;
	&amp;lt;meta charset="UTF-8"&amp;gt;
...&lt;/PRE&gt;

&lt;P&gt;The override should only apply when the status is 0 and the responseURL is not empty. The override mechanism is part of App Preview in order to workaround an Android issue relating to file:// URLs that are not located in the Android assets directory.&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;3491 RELEASE UPDATE:&lt;/STRONG&gt;&amp;nbsp;There is a known bug with the Simulate tab and the use of this signaling feature. It appears to be a bug in the Simulate open-source tool and can be caused by adding any "data-*" attribute to the &amp;lt;head&amp;gt; tag. Please see this forum post for additional details &amp;gt;&amp;nbsp;https://software.intel.com/en-us/forums/intel-xdk/topic/626468#comment-1880244 &amp;lt;&lt;/P&gt;

&lt;P&gt;--Paul F. (Intel)&lt;/P&gt;

&lt;P&gt;- - - - original post - - - -&lt;/P&gt;

&lt;P&gt;Hi,&lt;BR /&gt;
	&lt;BR /&gt;
	There should be a simple explanation for this different behavior on my Android cellphone, but I don't know it.&lt;/P&gt;

&lt;P&gt;I have built an SDK for my test (HTML5) app which has, at its essence, the following Http request/response code:&lt;/P&gt;

&lt;PRE class="brush:jscript;"&gt;function executeRequest(req, callback) {

var xhr = new XMLHttpRequest();
xhr.open('GET', 'http://ipinfo.io/json', true);//hard-coded test
xhr.send();
console.log('executeRequest: sent() request');

xhr.onload = function(e) {
            console.log('executeRequest: onload: statusText: '+this.status);
            if ((this.status == 200) || (this.status == 201) || (this.status == 204)) {
                var error = null;
                if(this.response != '') {
                    response.body = this.response;
                    //response.headers = resp.headers;??
                    response.statusCode = 200;
                    context.response = response;
                    callback(error, response, context);
                }
                else {
                    var error = {
                         message: this.status + ': ' + this.response,
                         code: this.status
                     };
                     response.statusCode = this.status;
                    context.response = response;
                    callback(error, response, context);
                }
            }
};

}&lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;When I run this in the XDK Emulator, it works fine - getting a response that is logged at "&lt;SPAN style="font-size: 13.008px; line-height: 19.512px;"&gt;console.log('executeRequest: onload: statusText:..."&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 13.008px; line-height: 19.512px;"&gt;When I push the code to the server and run it in my Android (NOT USB-CONNECTED) phone in "Intel App Preview", it does not get to the "onload" function. WiFi is on and my phone is (WiFi) connected to my router.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="line-height: 19.512px;"&gt;What's different about running it in this mode? Is there something simple that I am missing?&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="line-height: 19.512px;"&gt;Is there an example/library somewhere that works?&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="line-height: 19.512px;"&gt;Regards&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="line-height: 19.512px;"&gt;Colin Goldberg&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Aug 2016 19:03:42 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Http-requests-working-in-emulator-but-not-in-quot-Intel-App/m-p/1074096#M59232</guid>
      <dc:creator>Colin_G_</dc:creator>
      <dc:date>2016-08-05T19:03:42Z</dc:date>
    </item>
    <item>
      <title>Colin,</title>
      <link>https://community.intel.com/t5/Software-Archive/Http-requests-working-in-emulator-but-not-in-quot-Intel-App/m-p/1074097#M59233</link>
      <description>&lt;P&gt;Colin,&lt;/P&gt;

&lt;P&gt;Maybe you are using jQuery 1? There is an issue with jQuery 1 and Cordova apps. Both jQuery 1 and jQuery 2 will work in the emulator, but only jQuery 2 will work on device. If you are using App Designer, you are using jQuery 1. See FAQ:&amp;nbsp;&lt;/P&gt;

&lt;DIV&gt;
	&lt;P&gt;&lt;A href="https://software.intel.com/en-us/xdk/faqs/app-designer#ajax-jquery-one-fail" target="_blank"&gt;https://software.intel.com/en-us/xdk/faqs/app-designer#ajax-jquery-one-fail&lt;/A&gt;&lt;/P&gt;
&lt;/DIV&gt;

&lt;P&gt;Pamela&lt;/P&gt;</description>
      <pubDate>Wed, 25 May 2016 21:31:46 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Http-requests-working-in-emulator-but-not-in-quot-Intel-App/m-p/1074097#M59233</guid>
      <dc:creator>Pamela_H_Intel</dc:creator>
      <dc:date>2016-05-25T21:31:46Z</dc:date>
    </item>
    <item>
      <title>Okay - you aren't using</title>
      <link>https://community.intel.com/t5/Software-Archive/Http-requests-working-in-emulator-but-not-in-quot-Intel-App/m-p/1074098#M59234</link>
      <description>&lt;P&gt;Okay - you aren't using jQuery. But the FAQ may point you in the right direction.&lt;/P&gt;</description>
      <pubDate>Wed, 25 May 2016 23:58:55 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Http-requests-working-in-emulator-but-not-in-quot-Intel-App/m-p/1074098#M59234</guid>
      <dc:creator>Pamela_H_Intel</dc:creator>
      <dc:date>2016-05-25T23:58:55Z</dc:date>
    </item>
    <item>
      <title>Hi, Colin:</title>
      <link>https://community.intel.com/t5/Software-Archive/Http-requests-working-in-emulator-but-not-in-quot-Intel-App/m-p/1074099#M59235</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;Colin:&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;Some HTML5/JavaScript program that will work in emulator but may not work on real device. The difference of emulator and App Preview is that the emulate tab bases on the Chromium desktop browser; but the App preview essentially a weinre (Web Inspector remote) console provides quick view of web app in native WebView on that device.&lt;/P&gt;

&lt;P&gt;To understand more about the difference between running your app in a WebView and running it in a browser, please see &lt;A href="http://blogs.intel.com/evangelists/2014/09/02/html5-web-app-webview-app/"&gt;When is an HTML5 Web App a WebView App&lt;/A&gt;?&lt;/P&gt;

&lt;P&gt;Hope it could help you.&lt;/P&gt;</description>
      <pubDate>Thu, 26 May 2016 03:43:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Http-requests-working-in-emulator-but-not-in-quot-Intel-App/m-p/1074099#M59235</guid>
      <dc:creator>Zhen_Z_Intel</dc:creator>
      <dc:date>2016-05-26T03:43:50Z</dc:date>
    </item>
    <item>
      <title>Colin -- use the Debug tab</title>
      <link>https://community.intel.com/t5/Software-Archive/Http-requests-working-in-emulator-but-not-in-quot-Intel-App/m-p/1074100#M59236</link>
      <description>&lt;P&gt;Colin -- use the Debug tab for the best environment to debug this issue. If that doesn't work, they try using remote CDT (see this page for info on how to use remote CDT &amp;gt;&amp;nbsp;https://software.intel.com/en-us/xdk/docs/intel-xdk-debug-and-test-overview#RemoteChromeDevTools &amp;lt;)&lt;/P&gt;</description>
      <pubDate>Thu, 26 May 2016 04:37:05 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Http-requests-working-in-emulator-but-not-in-quot-Intel-App/m-p/1074100#M59236</guid>
      <dc:creator>PaulF_IntelCorp</dc:creator>
      <dc:date>2016-05-26T04:37:05Z</dc:date>
    </item>
    <item>
      <title>Try to add the following to</title>
      <link>https://community.intel.com/t5/Software-Archive/Http-requests-working-in-emulator-but-not-in-quot-Intel-App/m-p/1074101#M59237</link>
      <description>&lt;P&gt;Try to add the following to the index.html file:&lt;/P&gt;

&lt;PRE class="brush:xml;"&gt;&amp;lt;!DOCTYPE html&amp;gt;
&amp;lt;!--HTML5 doctype--&amp;gt;
&amp;lt;html&amp;gt;
	&amp;lt;head data-noxhrfix&amp;gt;
    &amp;lt;meta charset="UTF-8"&amp;gt;&lt;/PRE&gt;

&lt;P&gt;AppPreview somewhat hacks the http requests, with the data-noxhrfix, I solved all the problems.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 May 2016 11:47:11 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Http-requests-working-in-emulator-but-not-in-quot-Intel-App/m-p/1074101#M59237</guid>
      <dc:creator>Andrea_C_</dc:creator>
      <dc:date>2016-05-26T11:47:11Z</dc:date>
    </item>
    <item>
      <title>Thanks, Andrea. That worked!</title>
      <link>https://community.intel.com/t5/Software-Archive/Http-requests-working-in-emulator-but-not-in-quot-Intel-App/m-p/1074102#M59238</link>
      <description>&lt;P&gt;Thanks, Andrea. That worked!&lt;/P&gt;

&lt;P&gt;I would never have guessed it.&lt;/P&gt;

&lt;P&gt;As this is a VERY basic capability, I would hope that information about this is prominently displayed somewhere (beside the forum), to help others who will surely be faced with the same problem. I would also like to understand it more, and to have more certainty that this same problem will not resurface if I change something.&lt;/P&gt;

&lt;P&gt;Thanks for all the responses - it seems that there was a real need to solve this pronto.&lt;/P&gt;

&lt;P&gt;Regards&lt;/P&gt;

&lt;P&gt;Colin Goldberg&lt;/P&gt;</description>
      <pubDate>Thu, 26 May 2016 15:30:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Http-requests-working-in-emulator-but-not-in-quot-Intel-App/m-p/1074102#M59238</guid>
      <dc:creator>Colin_G_</dc:creator>
      <dc:date>2016-05-26T15:30:27Z</dc:date>
    </item>
    <item>
      <title>Colin -- I was unaware of</title>
      <link>https://community.intel.com/t5/Software-Archive/Http-requests-working-in-emulator-but-not-in-quot-Intel-App/m-p/1074103#M59239</link>
      <description>&lt;P&gt;Colin -- I was unaware of this issue. I've filed a high priority bug fix request regarding this problem.&lt;/P&gt;</description>
      <pubDate>Thu, 26 May 2016 16:42:22 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Http-requests-working-in-emulator-but-not-in-quot-Intel-App/m-p/1074103#M59239</guid>
      <dc:creator>PaulF_IntelCorp</dc:creator>
      <dc:date>2016-05-26T16:42:22Z</dc:date>
    </item>
    <item>
      <title>Awsome. Thanks</title>
      <link>https://community.intel.com/t5/Software-Archive/Http-requests-working-in-emulator-but-not-in-quot-Intel-App/m-p/1074104#M59240</link>
      <description>&lt;P&gt;Awsome. Thanks&lt;/P&gt;

&lt;P&gt;Searched a lot found a sloution here.&lt;/P&gt;</description>
      <pubDate>Sun, 03 Jul 2016 15:49:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Http-requests-working-in-emulator-but-not-in-quot-Intel-App/m-p/1074104#M59240</guid>
      <dc:creator>yuvaraj_m_</dc:creator>
      <dc:date>2016-07-03T15:49:53Z</dc:date>
    </item>
    <item>
      <title>Quote:Andrea C. wrote:</title>
      <link>https://community.intel.com/t5/Software-Archive/Http-requests-working-in-emulator-but-not-in-quot-Intel-App/m-p/1074105#M59241</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;Andrea C. wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;Try to add the following to the index.html file:&lt;/P&gt;

&lt;PRE class="brush:xml;"&gt;&amp;lt;!DOCTYPE html&amp;gt;
&amp;lt;!--HTML5 doctype--&amp;gt;
&amp;lt;html&amp;gt;
	&amp;lt;head data-noxhrfix&amp;gt;
    &amp;lt;meta charset="UTF-8"&amp;gt;&lt;/PRE&gt;

&lt;P&gt;AppPreview somewhat hacks the http requests, with the data-noxhrfix, I solved all the problems.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;Worked like charm&lt;/P&gt;</description>
      <pubDate>Sun, 03 Jul 2016 15:51:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Http-requests-working-in-emulator-but-not-in-quot-Intel-App/m-p/1074105#M59241</guid>
      <dc:creator>yuvaraj_m_</dc:creator>
      <dc:date>2016-07-03T15:51:18Z</dc:date>
    </item>
    <item>
      <title>I am currently experiencing a</title>
      <link>https://community.intel.com/t5/Software-Archive/Http-requests-working-in-emulator-but-not-in-quot-Intel-App/m-p/1074106#M59242</link>
      <description>&lt;P&gt;I am currently experiencing a similar issue. AJAX Http requests in the emulator work as expected, but under the debug tab I receive an error:&lt;/P&gt;

&lt;P&gt;net::ERR_CONNECTION_REFUSED&lt;/P&gt;

&lt;P&gt;General:&lt;/P&gt;

&lt;OL class="children expanded" style="min-width: 0px; min-height: 0px; box-sizing: border-box; list-style-type: none; padding-left: 12px; color: rgb(34, 34, 34); font-family: &amp;quot;Segoe UI&amp;quot;, Tahoma, sans-serif; font-size: 12px; line-height: normal; widows: auto;"&gt;
	&lt;LI style="min-width: 0px; min-height: 0px; box-sizing: border-box; margin-top: 1px; text-overflow: ellipsis; white-space: nowrap; overflow: hidden;"&gt;
		&lt;DIV class="header-name" style="min-width: 0px; min-height: 0px; box-sizing: border-box; color: rgb(84, 84, 84); display: inline-block; margin-right: 0.5em; font-weight: bold; vertical-align: top; white-space: pre-wrap;"&gt;Request URL:&lt;/DIV&gt;

		&lt;DIV class="header-value source-code" style="min-width: 0px; min-height: 0px; box-sizing: border-box; font-family: Consolas, &amp;quot;Lucida Console&amp;quot;, monospace; white-space: pre-wrap; display: inline; margin-right: 1em; word-break: break-all; margin-top: 1px;"&gt;&lt;A href="http://localhost:54420/oauth/token" target="_blank"&gt;http://localhost:54420/oauth/token&lt;/A&gt;&lt;/DIV&gt;
	&lt;/LI&gt;
&lt;/OL&gt;

&lt;P&gt;Request Headers:&lt;/P&gt;

&lt;OL class="children expanded" style="min-width: 0px; min-height: 0px; box-sizing: border-box; list-style-type: none; padding-left: 12px; color: rgb(34, 34, 34); font-family: &amp;quot;Segoe UI&amp;quot;, Tahoma, sans-serif; font-size: 12px; line-height: normal; widows: auto;"&gt;
	&lt;LI style="min-width: 0px; min-height: 0px; box-sizing: border-box; margin-top: 1px; text-overflow: ellipsis; white-space: nowrap; overflow: hidden;"&gt;
		&lt;DIV class="header-name" style="min-width: 0px; min-height: 0px; box-sizing: border-box; color: rgb(84, 84, 84); display: inline-block; margin-right: 0.5em; font-weight: bold; vertical-align: top; white-space: pre-wrap;"&gt;Content-Type:&lt;/DIV&gt;

		&lt;DIV class="header-value source-code" style="min-width: 0px; min-height: 0px; box-sizing: border-box; font-family: Consolas, &amp;quot;Lucida Console&amp;quot;, monospace; white-space: pre-wrap; display: inline; margin-right: 1em; word-break: break-all; margin-top: 1px;"&gt;application/x-www-form-urlencoded&lt;/DIV&gt;
	&lt;/LI&gt;
	&lt;LI style="min-width: 0px; min-height: 0px; box-sizing: border-box; margin-top: 1px; text-overflow: ellipsis; white-space: nowrap; overflow: hidden;"&gt;
		&lt;DIV class="header-name" style="min-width: 0px; min-height: 0px; box-sizing: border-box; color: rgb(84, 84, 84); display: inline-block; margin-right: 0.5em; font-weight: bold; vertical-align: top; white-space: pre-wrap;"&gt;Origin:&lt;/DIV&gt;

		&lt;DIV class="header-value source-code" style="min-width: 0px; min-height: 0px; box-sizing: border-box; font-family: Consolas, &amp;quot;Lucida Console&amp;quot;, monospace; white-space: pre-wrap; display: inline; margin-right: 1em; word-break: break-all; margin-top: 1px;"&gt;file://&lt;/DIV&gt;
	&lt;/LI&gt;
	&lt;LI style="min-width: 0px; min-height: 0px; box-sizing: border-box; margin-top: 1px; text-overflow: ellipsis; white-space: nowrap; overflow: hidden;"&gt;
		&lt;DIV class="header-name" style="min-width: 0px; min-height: 0px; box-sizing: border-box; color: rgb(84, 84, 84); display: inline-block; margin-right: 0.5em; font-weight: bold; vertical-align: top; white-space: pre-wrap;"&gt;User-Agent:&lt;/DIV&gt;

		&lt;DIV class="header-value source-code" style="min-width: 0px; min-height: 0px; box-sizing: border-box; font-family: Consolas, &amp;quot;Lucida Console&amp;quot;, monospace; white-space: pre-wrap; display: inline; margin-right: 1em; word-break: break-all; margin-top: 1px;"&gt;Mozilla/5.0 (Linux; Android 5.1.1; SM-G900T Build/LMY47X) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Crosswalk/16.45.421.19 Mobile Safari/537.36&lt;/DIV&gt;
	&lt;/LI&gt;
	&lt;LI style="min-width: 0px; min-height: 0px; box-sizing: border-box; margin-top: 1px; text-overflow: ellipsis; white-space: nowrap; overflow: hidden;"&gt;&amp;nbsp;&lt;/LI&gt;
	&lt;LI style="min-width: 0px; min-height: 0px; box-sizing: border-box; margin-top: 1px; text-overflow: ellipsis; white-space: nowrap; overflow: hidden;"&gt;&amp;nbsp;&lt;/LI&gt;
	&lt;LI style="min-width: 0px; min-height: 0px; box-sizing: border-box; margin-top: 1px; text-overflow: ellipsis; white-space: nowrap; overflow: hidden;"&gt;&amp;nbsp;&lt;/LI&gt;
	&lt;LI style="min-width: 0px; min-height: 0px; box-sizing: border-box; margin-top: 1px; text-overflow: ellipsis; white-space: nowrap; overflow: hidden;"&gt;&amp;nbsp;&lt;/LI&gt;
&lt;/OL&gt;

&lt;P&gt;Form Data:&lt;/P&gt;

&lt;OL class="children expanded" style="min-width: 0px; min-height: 0px; box-sizing: border-box; list-style-type: none; padding-left: 12px; color: rgb(34, 34, 34); font-family: &amp;quot;Segoe UI&amp;quot;, Tahoma, sans-serif; font-size: 12px; line-height: normal; widows: auto;"&gt;
	&lt;LI style="min-width: 0px; min-height: 0px; box-sizing: border-box; margin-top: 1px; text-overflow: ellipsis; white-space: nowrap; overflow: hidden;"&gt;
		&lt;DIV class="header-name" style="min-width: 0px; min-height: 0px; box-sizing: border-box; color: rgb(84, 84, 84); display: inline-block; margin-right: 0.5em; font-weight: bold; vertical-align: top; white-space: pre-wrap;"&gt;username:&lt;/DIV&gt;

		&lt;DIV class="header-value source-code" style="min-width: 0px; min-height: 0px; box-sizing: border-box; font-family: Consolas, &amp;quot;Lucida Console&amp;quot;, monospace; white-space: pre-wrap; display: inline; margin-right: 1em; word-break: break-all; margin-top: 1px;"&gt;MyUsername&lt;/DIV&gt;
	&lt;/LI&gt;
	&lt;LI style="min-width: 0px; min-height: 0px; box-sizing: border-box; margin-top: 1px; text-overflow: ellipsis; white-space: nowrap; overflow: hidden;"&gt;
		&lt;DIV class="header-name" style="min-width: 0px; min-height: 0px; box-sizing: border-box; color: rgb(84, 84, 84); display: inline-block; margin-right: 0.5em; font-weight: bold; vertical-align: top; white-space: pre-wrap;"&gt;password:&lt;/DIV&gt;

		&lt;DIV class="header-value source-code" style="min-width: 0px; min-height: 0px; box-sizing: border-box; font-family: Consolas, &amp;quot;Lucida Console&amp;quot;, monospace; white-space: pre-wrap; display: inline; margin-right: 1em; word-break: break-all; margin-top: 1px;"&gt;MySuperP@ssword!&lt;/DIV&gt;
	&lt;/LI&gt;
	&lt;LI style="min-width: 0px; min-height: 0px; box-sizing: border-box; margin-top: 1px; text-overflow: ellipsis; white-space: nowrap; overflow: hidden;"&gt;
		&lt;DIV class="header-name" style="min-width: 0px; min-height: 0px; box-sizing: border-box; color: rgb(84, 84, 84); display: inline-block; margin-right: 0.5em; font-weight: bold; vertical-align: top; white-space: pre-wrap;"&gt;grant_type:&lt;/DIV&gt;

		&lt;DIV class="header-value source-code" style="min-width: 0px; min-height: 0px; box-sizing: border-box; font-family: Consolas, &amp;quot;Lucida Console&amp;quot;, monospace; white-space: pre-wrap; display: inline; margin-right: 1em; word-break: break-all; margin-top: 1px;"&gt;password&lt;/DIV&gt;
	&lt;/LI&gt;
&lt;/OL&gt;

&lt;P&gt;&amp;nbsp;It appears the request never reaches my local server. Again, this works perfectly fine from my Emulate tab. The included fix above did not solve this issue for me.&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jul 2016 14:19:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Http-requests-working-in-emulator-but-not-in-quot-Intel-App/m-p/1074106#M59242</guid>
      <dc:creator>Daniel_B_12</dc:creator>
      <dc:date>2016-07-25T14:19:00Z</dc:date>
    </item>
  </channel>
</rss>

