<?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 Rahul, we don't have the in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/Help/m-p/1004385#M31520</link>
    <description>&lt;P&gt;Rahul, we don't have the resources to fix code or teach how to write code, sorry. There are many resources out there for learning about how to write server code and JavaScript and HTML5 code. In particular:&lt;/P&gt;

&lt;UL&gt;
	&lt;LI&gt;&lt;A href="http://diveintohtml5.info" target="_blank"&gt;http://diveintohtml5.info&lt;/A&gt;&lt;/LI&gt;
	&lt;LI&gt;&lt;A href="http://html5rocks.com/en/tutorials" target="_blank"&gt;http://html5rocks.com/en/tutorials&lt;/A&gt;&lt;/LI&gt;
	&lt;LI&gt;&lt;A href="http://webmonky.com/tutorials" target="_blank"&gt;http://webmonky.com/tutorials&lt;/A&gt;&lt;/LI&gt;
	&lt;LI&gt;&lt;A href="http://w3schools.com/html5" target="_blank"&gt;http://w3schools.com/html5&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;

&lt;P&gt;Some useful books are:&lt;/P&gt;

&lt;UL&gt;
	&lt;LI&gt;Pro HTML5 Programming, by Peter Lubbers&lt;/LI&gt;
	&lt;LI&gt;JavaScript: The Good Parts, by Douglas Crockford&lt;/LI&gt;
	&lt;LI&gt;CSS: The Missing Manual, by David McFarland&lt;/LI&gt;
&lt;/UL&gt;</description>
    <pubDate>Fri, 09 Oct 2015 17:31:27 GMT</pubDate>
    <dc:creator>PaulF_IntelCorp</dc:creator>
    <dc:date>2015-10-09T17:31:27Z</dc:date>
    <item>
      <title>Help</title>
      <link>https://community.intel.com/t5/Software-Archive/Help/m-p/1004381#M31516</link>
      <description>&lt;P&gt;Hello. I want to make an ap but im running into a few problems! the app basically allows user to add a marker with nee information to the map and can also display markers added by other users. &amp;nbsp;im in mainland china and cannot use google maps . do i need to upload data to a server or something so that a user can see markers added by other users? thanks for the support&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Oct 2015 00:17:32 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Help/m-p/1004381#M31516</guid>
      <dc:creator>Rahul_T_</dc:creator>
      <dc:date>2015-10-06T00:17:32Z</dc:date>
    </item>
    <item>
      <title>do i need to upload data to a</title>
      <link>https://community.intel.com/t5/Software-Archive/Help/m-p/1004382#M31517</link>
      <description>&lt;BLOCKQUOTE&gt;
	&lt;P&gt;&lt;SPAN style="font-size: 12px; line-height: 20px;"&gt;do i need to upload data to a server or something so that a user can see markers added by other users?&lt;/SPAN&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;&lt;SPAN style="font-size: 12px; line-height: 20px;"&gt;Yes. &amp;nbsp; Do you know how to program this sort of thing? There is not only the backend code for receiving the submitted data and returning the consolidated data to a user, there is also the authorization/authentication for both tasks. If you don't know how to set this sort of thing up, you might be able to use Kinvey or Parse as a backend. &amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Oct 2015 17:50:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Help/m-p/1004382#M31517</guid>
      <dc:creator>Chris_P_Intel</dc:creator>
      <dc:date>2015-10-06T17:50:29Z</dc:date>
    </item>
    <item>
      <title>Ok. Actually I am an absolute</title>
      <link>https://community.intel.com/t5/Software-Archive/Help/m-p/1004383#M31518</link>
      <description>&lt;P&gt;Ok. Actually I am an absolute beginner so no I don not know how to code the backend services&lt;/P&gt;

&lt;P&gt;I found a walk around, using baidu lbs cloud api instead.&lt;BR /&gt;
	For now, I already have a location, and a way to collect the location data from cloud. Can you help to implement the code?&lt;BR /&gt;
	I ned to use the HTTP GET method.&lt;BR /&gt;
	I tried this&amp;nbsp;&lt;BR /&gt;
	​&lt;/P&gt;

&lt;PRE class="brush:jscript;"&gt;&amp;lt;body&amp;gt;
&amp;lt;form id="myForm"&amp;gt;
  &amp;lt;label for="myName"&amp;gt;Send me your name:&amp;lt;/label&amp;gt;
  &amp;lt;input type="button" value="Send Me!" onclick="httpGet()"&amp;gt;
&amp;lt;/form&amp;gt;
    &amp;lt;p&amp;gt;Hello, Intel XDK!&amp;lt;/p&amp;gt;
&amp;lt;script&amp;gt;
    
var theUrl = 'http://api.map.baidu.com/geodata/v3/poi/list' + '?' + 'geotable_id=122134' + '&amp;amp;' + 'ak=GzieZbcFuthYfO2XP3rH0U0k';  
    function httpGet(theUrl)
{
    var xmlHttp = new XMLHttpRequest();
    xmlHttp.open( "GET", theUrl, false ); // false for synchronous request
    xmlHttp.send( null );
    return xmlHttp.responseText;
}
    &amp;lt;/script&amp;gt;&lt;/PRE&gt;

&lt;P&gt;but nothing happens. I checked the link. The method works well using a http requester tool&lt;BR /&gt;
	results:&lt;/P&gt;

&lt;P&gt;GET &lt;A href="http://api.map.baidu.com/geodata/v3/poi/list" target="_blank"&gt;http://api.map.baidu.com/geodata/v3/poi/list&lt;/A&gt;? geotable_id=122134&amp;amp;ak=GzieZbcFuthYfO2XP3rH0U0k&lt;/P&gt;

&lt;P&gt;&amp;nbsp;-- response --&lt;BR /&gt;
	200 OK&lt;BR /&gt;
	Cache-Control: &amp;nbsp;max-age=86400&lt;BR /&gt;
	Content-Encoding: &amp;nbsp;gzip&lt;BR /&gt;
	Content-Length: &amp;nbsp;262&lt;BR /&gt;
	Content-Type: &amp;nbsp;text/javascript; charset=UTF-8&lt;BR /&gt;
	Date: &amp;nbsp;Wed, 07 Oct 2015 03:22:59 GMT&lt;BR /&gt;
	Error-Code: &amp;nbsp;0&lt;BR /&gt;
	Expires: &amp;nbsp;Thu, 08 Oct 2015 03:22:59 GMT&lt;BR /&gt;
	Http_x_bd_logid: &amp;nbsp;4088454063&lt;BR /&gt;
	Http_x_bd_logid64: &amp;nbsp;17671372987513246706&lt;BR /&gt;
	Http_x_bd_product: &amp;nbsp;map&lt;BR /&gt;
	Http_x_bd_subsys: &amp;nbsp;apimap&lt;BR /&gt;
	Hulu-Id: &amp;nbsp;0&lt;BR /&gt;
	Server: &amp;nbsp;Apache&lt;BR /&gt;
	Vary: &amp;nbsp;Accept-Encoding&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;{"status":0,"size":1,"total":1,"pois":[{"title":"xx","location":[113.340488,23.192065],"city":"\u5e7f\u5dde\u5e02","create_time":"2015-10-07 09:22:34","geotable_id":122134,"address":"\u5e7f\u4e1c\u7701\u5e7f\u5dde\u5e02\u767d\u4e91\u533a\u6843\u674e\u8def","province":"\u5e7f\u4e1c\u7701","district":"\u767d\u4e91\u533a","city_id":257,"id":1456828858}],"message":"\u6210\u529f"}&lt;/STRONG&gt;&lt;/P&gt;

&lt;P&gt;I need to get this response json in xdi so that I can use the value of location to plot it on a map&lt;BR /&gt;
	Thanks for the support&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Oct 2015 03:45:57 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Help/m-p/1004383#M31518</guid>
      <dc:creator>Rahul_T_</dc:creator>
      <dc:date>2015-10-07T03:45:57Z</dc:date>
    </item>
    <item>
      <title>I modified the code</title>
      <link>https://community.intel.com/t5/Software-Archive/Help/m-p/1004384#M31519</link>
      <description>&lt;P&gt;I modified the code&lt;BR /&gt;
	&lt;BR /&gt;
	&amp;nbsp;&lt;/P&gt;

&lt;P&gt;function get(){ &amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; var url = 'http://api.map.baidu.com/geodata/v3/poi/list?geotable_id=122134&amp;amp;ak=GzieZbcFuthYfO2XP3rH0U0k'; &amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var xmlhttp = new XMLHttpRequest();&lt;/P&gt;

&lt;P&gt;xmlhttp.onreadystatechange = function() {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; if (xmlhttp.readyState == 4 &amp;amp;&amp;amp; xmlhttp.status == 200) {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var myArr = JSON.parse(xmlhttp.response);&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; alert(myArr);&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; }&lt;BR /&gt;
	}&lt;BR /&gt;
	xmlhttp.open("GET", url, true);&lt;BR /&gt;
	&lt;BR /&gt;
	xmlhttp.send();&lt;/P&gt;

&lt;P&gt;&lt;BR /&gt;
	}&lt;/P&gt;

&lt;P&gt;However i keep getting cross-origin request blocked.&lt;/P&gt;

&lt;P&gt;I am trying to implement&amp;nbsp;xmlhttp.setRequestHeader("Access-Control-Allow-Origin", "*"); &amp;nbsp; &amp;nbsp; &amp;nbsp;, but I do no know how to&lt;/P&gt;</description>
      <pubDate>Wed, 07 Oct 2015 14:17:36 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Help/m-p/1004384#M31519</guid>
      <dc:creator>Rahul_T_</dc:creator>
      <dc:date>2015-10-07T14:17:36Z</dc:date>
    </item>
    <item>
      <title>Rahul, we don't have the</title>
      <link>https://community.intel.com/t5/Software-Archive/Help/m-p/1004385#M31520</link>
      <description>&lt;P&gt;Rahul, we don't have the resources to fix code or teach how to write code, sorry. There are many resources out there for learning about how to write server code and JavaScript and HTML5 code. In particular:&lt;/P&gt;

&lt;UL&gt;
	&lt;LI&gt;&lt;A href="http://diveintohtml5.info" target="_blank"&gt;http://diveintohtml5.info&lt;/A&gt;&lt;/LI&gt;
	&lt;LI&gt;&lt;A href="http://html5rocks.com/en/tutorials" target="_blank"&gt;http://html5rocks.com/en/tutorials&lt;/A&gt;&lt;/LI&gt;
	&lt;LI&gt;&lt;A href="http://webmonky.com/tutorials" target="_blank"&gt;http://webmonky.com/tutorials&lt;/A&gt;&lt;/LI&gt;
	&lt;LI&gt;&lt;A href="http://w3schools.com/html5" target="_blank"&gt;http://w3schools.com/html5&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;

&lt;P&gt;Some useful books are:&lt;/P&gt;

&lt;UL&gt;
	&lt;LI&gt;Pro HTML5 Programming, by Peter Lubbers&lt;/LI&gt;
	&lt;LI&gt;JavaScript: The Good Parts, by Douglas Crockford&lt;/LI&gt;
	&lt;LI&gt;CSS: The Missing Manual, by David McFarland&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Fri, 09 Oct 2015 17:31:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Help/m-p/1004385#M31520</guid>
      <dc:creator>PaulF_IntelCorp</dc:creator>
      <dc:date>2015-10-09T17:31:27Z</dc:date>
    </item>
  </channel>
</rss>

