<?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: PROC HTTP SSL ISSUE in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/PROC-HTTP-SSL-ISSUE/m-p/768621#M81020</link>
    <description>&lt;P&gt;Use the SSLPARMS statement to set this like so:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="sas"&gt;proc http 
	method="POST"
	url="http://blahblah"
	ct="blah/json"
	in=json_in
	out=resp; 
	SSLPARMS "SSLREQCERT"="ALLOW";
run;&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;See &lt;A href="https://go.documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/proc/n154smey890g2xn1l6wljfyjcemh.htm" target="_self"&gt;documentation on this here&lt;/A&gt;.&lt;/P&gt;</description>
    <pubDate>Mon, 20 Sep 2021 17:37:42 GMT</pubDate>
    <dc:creator>ChrisHemedinger</dc:creator>
    <dc:date>2021-09-20T17:37:42Z</dc:date>
    <item>
      <title>PROC HTTP SSL ISSUE</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-HTTP-SSL-ISSUE/m-p/768618#M81019</link>
      <description>&lt;P&gt;Hello, I am a python guy who has to connect an api with SAS. In python I am able to just do verify = false as the end of the request post to avoid the SSL Certificate check. I am trying to do it in SAS in relation with the documentation but it is not working. I am using SAS Enterprise Studio 7.1 and any help is appreciated, it seems to not recognize the call SSLREQCERT. Without the SSLREQCERT it runs without errors but the api wont actually do anything. When the SSLREQCERT is put in there is a syntax error 22-322 expecting. Any help or advice is appreciated!&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;filename json_in temp;
data _null_;
	file json_in;
	input;
	put _infile_;
	datalines;
       {"data": { "var 1" : "identifier"
                  "var 2" : "identifier2"
                  "var 3" : "identifier3"} 
run;

filename resp temp;
proc http 
	method="POST"
	url="http://blahblah"
	ct="blah/json"
	in=json_in
	SSLREQCERT= "ALLOW"
	out=resp; 
run;
libname posts JSON fileref=resp;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 20 Sep 2021 17:26:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-HTTP-SSL-ISSUE/m-p/768618#M81019</guid>
      <dc:creator>jakemyers2</dc:creator>
      <dc:date>2021-09-20T17:26:17Z</dc:date>
    </item>
    <item>
      <title>Re: PROC HTTP SSL ISSUE</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-HTTP-SSL-ISSUE/m-p/768621#M81020</link>
      <description>&lt;P&gt;Use the SSLPARMS statement to set this like so:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="sas"&gt;proc http 
	method="POST"
	url="http://blahblah"
	ct="blah/json"
	in=json_in
	out=resp; 
	SSLPARMS "SSLREQCERT"="ALLOW";
run;&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;See &lt;A href="https://go.documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/proc/n154smey890g2xn1l6wljfyjcemh.htm" target="_self"&gt;documentation on this here&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Sep 2021 17:37:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-HTTP-SSL-ISSUE/m-p/768621#M81020</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2021-09-20T17:37:42Z</dc:date>
    </item>
    <item>
      <title>Re: PROC HTTP SSL ISSUE</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-HTTP-SSL-ISSUE/m-p/768664#M81021</link>
      <description>&lt;P&gt;Hello Chris,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the help it is much appreciated! I'm getting this error on the SSLPARMS statement, i dont know if it is because I am running SAS Enterprise Guide 7.15, but it doesn't seem to be working.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ERROR 22-322: Syntax error, expecting one of the following: ;, AUTH_ANY, AUTH_BASIC, AUTH_NEGOTIATE, AUTH_NONE, AUTH_NTLM,&lt;BR /&gt;CLEAR_CACHE, CLEAR_CONN_CACHE, CLEAR_COOKIES, CT, EXPECT_100_CONTINUE, FOLLOWLOC, HEADERIN, HEADEROUT,&lt;BR /&gt;HEADEROUT_OVERWRITE, HTTP_TOKENAUTH, IN, METHOD, NOFOLLOW, NOFOLLOWLOC, NO_CONN_CACHE, NO_COOKIES, OAUTH_BEARER, OUT,&lt;BR /&gt;PASSWORD, PROXYHOST, PROXYPASSWORD, PROXYPORT, PROXYUSERNAME, PROXY_AUTH_BASIC, PROXY_AUTH_NEGOTIATE,&lt;BR /&gt;PROXY_AUTH_NONE, PROXY_AUTH_NTLM, TIMEOUT, URL, USERNAME, VERBOSE, WEBAUTHDOMAIN, WEBPASSWORD, WEBUSERNAME.&lt;BR /&gt;ERROR 76-322: Syntax error, statement will be ignored.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Sep 2021 21:05:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-HTTP-SSL-ISSUE/m-p/768664#M81021</guid>
      <dc:creator>jakemyers2</dc:creator>
      <dc:date>2021-09-20T21:05:13Z</dc:date>
    </item>
    <item>
      <title>Re: PROC HTTP SSL ISSUE</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-HTTP-SSL-ISSUE/m-p/768670#M81022</link>
      <description>When I added the semicolon as replied I gor error 180-322: Statement is not valid or it is used out of proper order.&lt;BR /&gt;</description>
      <pubDate>Mon, 20 Sep 2021 21:24:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-HTTP-SSL-ISSUE/m-p/768670#M81022</guid>
      <dc:creator>jakemyers2</dc:creator>
      <dc:date>2021-09-20T21:24:44Z</dc:date>
    </item>
    <item>
      <title>Re: PROC HTTP SSL ISSUE</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-HTTP-SSL-ISSUE/m-p/768681#M81023</link>
      <description>&lt;P&gt;The SSLPARMS statement was added in SAS 9.4 Maint 6. Your version of EG doesn't matter, but you can check your SAS version by running&amp;nbsp;&lt;STRONG&gt;proc product_status; run;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Prior to 9.4m6, you can set the SSLREQCERT option in an environment variable at SAS startup or before running PROC HTTP. &lt;A href="https://go.documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/secref/p04x46b2ixjswen1u03bvv437x25.htm" target="_self"&gt;See this documentation&lt;/A&gt;. You can set an environment variable with the OPTIONS statement. Try:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options set=SSLREQCERT="allow";
proc http ... ;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 20 Sep 2021 23:13:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-HTTP-SSL-ISSUE/m-p/768681#M81023</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2021-09-20T23:13:37Z</dc:date>
    </item>
  </channel>
</rss>

