<?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 Re: Http Request macro in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Http-Request-macro/m-p/521457#M194842</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rob,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to set both of the drop-downs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Requested Module Security:&amp;nbsp; System Access&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Current Local Security: Allow System Access&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I do that, your code works (and I put back in the quotes).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Stephen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif'; color: black;"&gt;Stephen Redmond is author of &lt;/SPAN&gt;&lt;A href="http://www.packtpub.com/qlikview-developers-cookbook/book?utm_source=mention.com&amp;amp;utm_medium=QVCommunity&amp;amp;utm_campaign=book_mention"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;QlikView for Developer's Cookbook&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif'; color: black;"&gt;He is CTO of &lt;A href="http://www.capventis.com/"&gt;CapricornVentis&lt;/A&gt; a &lt;/SPAN&gt;&lt;A href="http://www.qlik.com/us/explore/experience/free-download?id=/&amp;amp;sourcepartner=CapricornVentis"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;QlikView&lt;/SPAN&gt;&lt;/A&gt; &lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif'; color: black;"&gt;Elite Partner. We are always looking for the right people to &lt;/SPAN&gt;&lt;A href="http://capventis.com/category/careers/"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;join our team&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif'; color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif'; color: black;"&gt;Follow me on Twitter: &lt;/SPAN&gt;&lt;A href="http://twitter.com/stephencredmond"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;@stephencredmond&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 28 Jun 2013 13:38:31 GMT</pubDate>
    <dc:creator>stephencredmond</dc:creator>
    <dc:date>2013-06-28T13:38:31Z</dc:date>
    <item>
      <title>Http Request macro</title>
      <link>https://community.qlik.com/t5/QlikView/Http-Request-macro/m-p/521456#M194841</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When I try to execute this procedure, I've got an "Permission Denied" error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've also set System Access security and "Allow System Access".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="xml" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13724248062729386" jivemacro_uid="_13724248062729386"&gt;&lt;P&gt;Sub HttpRequest&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Set xml = CreateObject("Microsoft.XMLHTTP")&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;xml.Open "POST", "&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://www.http://blabla.com/api/test.php"&gt;http://www.http://blabla.com/api/test.php&lt;/A&gt;&lt;SPAN&gt;", False&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;xml.Send()&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;MsgBox xml.responseText&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;End Sub&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where's the problem?!?!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Jun 2013 13:07:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Http-Request-macro/m-p/521456#M194841</guid>
      <dc:creator />
      <dc:date>2013-06-28T13:07:14Z</dc:date>
    </item>
    <item>
      <title>Re: Http Request macro</title>
      <link>https://community.qlik.com/t5/QlikView/Http-Request-macro/m-p/521457#M194842</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rob,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to set both of the drop-downs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Requested Module Security:&amp;nbsp; System Access&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Current Local Security: Allow System Access&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I do that, your code works (and I put back in the quotes).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Stephen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif'; color: black;"&gt;Stephen Redmond is author of &lt;/SPAN&gt;&lt;A href="http://www.packtpub.com/qlikview-developers-cookbook/book?utm_source=mention.com&amp;amp;utm_medium=QVCommunity&amp;amp;utm_campaign=book_mention"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;QlikView for Developer's Cookbook&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif'; color: black;"&gt;He is CTO of &lt;A href="http://www.capventis.com/"&gt;CapricornVentis&lt;/A&gt; a &lt;/SPAN&gt;&lt;A href="http://www.qlik.com/us/explore/experience/free-download?id=/&amp;amp;sourcepartner=CapricornVentis"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;QlikView&lt;/SPAN&gt;&lt;/A&gt; &lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif'; color: black;"&gt;Elite Partner. We are always looking for the right people to &lt;/SPAN&gt;&lt;A href="http://capventis.com/category/careers/"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;join our team&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif'; color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif'; color: black;"&gt;Follow me on Twitter: &lt;/SPAN&gt;&lt;A href="http://twitter.com/stephencredmond"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;@stephencredmond&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Jun 2013 13:38:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Http-Request-macro/m-p/521457#M194842</guid>
      <dc:creator>stephencredmond</dc:creator>
      <dc:date>2013-06-28T13:38:31Z</dc:date>
    </item>
    <item>
      <title>Re: Http Request macro</title>
      <link>https://community.qlik.com/t5/QlikView/Http-Request-macro/m-p/521458#M194843</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Stephen,&lt;/P&gt;&lt;P&gt;thank you for the quick response.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've set both drop-downs as you say, but the error still remains.&lt;/P&gt;&lt;P&gt;What other tests can I do?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="43350" class="jive-image-thumbnail jive-image" onclick="" alt="Screen Shot 2013-06-28 at 15.45.49.png" src="/legacyfs/online/43350_Screen Shot 2013-06-28 at 15.45.49.png" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Jun 2013 13:51:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Http-Request-macro/m-p/521458#M194843</guid>
      <dc:creator />
      <dc:date>2013-06-28T13:51:07Z</dc:date>
    </item>
    <item>
      <title>Re: Http Request macro</title>
      <link>https://community.qlik.com/t5/QlikView/Http-Request-macro/m-p/521459#M194844</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does it work via CScript?&amp;nbsp; Perhaps there is something else blocking access that is not connected with QlikView.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As I said, it works on my PC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Stephen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Jun 2013 21:57:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Http-Request-macro/m-p/521459#M194844</guid>
      <dc:creator>stephencredmond</dc:creator>
      <dc:date>2013-06-28T21:57:51Z</dc:date>
    </item>
  </channel>
</rss>

