<?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 Parsing JSON Data  ( IOS Device ) in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/Parsing-JSON-Data-IOS-Device/m-p/1107399#M70883</link>
    <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="color: rgb(33, 33, 33); font-family: arial, sans-serif; font-size: 16px; line-height: 24px; white-space: pre-wrap;"&gt;Parsing JSON data with javascript ( ajax request or getJSON ) works in emulator but does not working in ios device&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="color: rgb(33, 33, 33); font-family: arial, sans-serif; font-size: 16px; line-height: 24px; white-space: pre-wrap;"&gt;Example :&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;var url= "http://maps.googleapis.com/maps/api/geocode/json?address=1600+Amphitheatre+Parkway,+Mountain+View,+CA&amp;amp;sensor=true";&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;&amp;nbsp; &amp;nbsp;$.ajax({&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; type: 'GET',&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; url: url,&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; async: false,&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; contentType: "application/json;charset=UTF-8",&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; dataType: 'json',&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; success: function(data) {&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;alert(data);&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;&amp;nbsp; &amp;nbsp; },&lt;/SPAN&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; error: function(e) {&lt;/SPAN&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; alert("error ");&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; });&lt;/P&gt;</description>
    <pubDate>Fri, 11 Mar 2016 16:26:47 GMT</pubDate>
    <dc:creator>Mohamed_Ali_B_</dc:creator>
    <dc:date>2016-03-11T16:26:47Z</dc:date>
    <item>
      <title>Parsing JSON Data  ( IOS Device )</title>
      <link>https://community.intel.com/t5/Software-Archive/Parsing-JSON-Data-IOS-Device/m-p/1107399#M70883</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="color: rgb(33, 33, 33); font-family: arial, sans-serif; font-size: 16px; line-height: 24px; white-space: pre-wrap;"&gt;Parsing JSON data with javascript ( ajax request or getJSON ) works in emulator but does not working in ios device&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="color: rgb(33, 33, 33); font-family: arial, sans-serif; font-size: 16px; line-height: 24px; white-space: pre-wrap;"&gt;Example :&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;var url= "http://maps.googleapis.com/maps/api/geocode/json?address=1600+Amphitheatre+Parkway,+Mountain+View,+CA&amp;amp;sensor=true";&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;&amp;nbsp; &amp;nbsp;$.ajax({&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; type: 'GET',&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; url: url,&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; async: false,&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; contentType: "application/json;charset=UTF-8",&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; dataType: 'json',&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; success: function(data) {&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;alert(data);&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;&amp;nbsp; &amp;nbsp; },&lt;/SPAN&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; error: function(e) {&lt;/SPAN&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; alert("error ");&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; });&lt;/P&gt;</description>
      <pubDate>Fri, 11 Mar 2016 16:26:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Parsing-JSON-Data-IOS-Device/m-p/1107399#M70883</guid>
      <dc:creator>Mohamed_Ali_B_</dc:creator>
      <dc:date>2016-03-11T16:26:47Z</dc:date>
    </item>
    <item>
      <title>We are having issue with iOS</title>
      <link>https://community.intel.com/t5/Software-Archive/Parsing-JSON-Data-IOS-Device/m-p/1107400#M70884</link>
      <description>&lt;P&gt;We are having issue with iOS build and engineering is looking at it. Please follow this thread, we will post as soon as it is fixed.&lt;/P&gt;

&lt;P&gt;&lt;A href="https://software.intel.com/en-us/forums/intel-xdk/topic/611793" target="_blank"&gt;https://software.intel.com/en-us/forums/intel-xdk/topic/611793&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Mar 2016 17:37:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Parsing-JSON-Data-IOS-Device/m-p/1107400#M70884</guid>
      <dc:creator>Swati_S_Intel1</dc:creator>
      <dc:date>2016-03-11T17:37:27Z</dc:date>
    </item>
    <item>
      <title>The issue has been fixed now.</title>
      <link>https://community.intel.com/t5/Software-Archive/Parsing-JSON-Data-IOS-Device/m-p/1107401#M70885</link>
      <description>&lt;P&gt;The issue has been fixed now.&lt;/P&gt;</description>
      <pubDate>Fri, 11 Mar 2016 23:05:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Parsing-JSON-Data-IOS-Device/m-p/1107401#M70885</guid>
      <dc:creator>Swati_S_Intel1</dc:creator>
      <dc:date>2016-03-11T23:05:47Z</dc:date>
    </item>
  </channel>
</rss>

