<?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: Failed to transcode data from UTF-16LE to wlatin1 in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Failed-to-transcode-data-from-UTF-16LE-to-wlatin1/m-p/277768#M55822</link>
    <description>&lt;P&gt;Grrr. Yes the rogue characters have been inserted again.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try the attached file.&lt;/P&gt;</description>
    <pubDate>Thu, 16 Jun 2016 06:04:15 GMT</pubDate>
    <dc:creator>ChrisNZ</dc:creator>
    <dc:date>2016-06-16T06:04:15Z</dc:date>
    <item>
      <title>Failed to transcode data from UTF-16LE to wlatin1</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Failed-to-transcode-data-from-UTF-16LE-to-wlatin1/m-p/277754#M55814</link>
      <description>&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm trying ti import an XML file using this script&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;filename outfile "C:\Users\jgmanalo\Desktop\Sample1\From URL\OutXML.xml" encoding= 'UTF-8';
libname source xml "C:\Users\jgmanalo\Desktop\Sample1\From URL\OutXML.xml";
proc http
	out = outfile
	url = 'https://rbc-svr-pi/webacs/api/v1/data/ClientDetai​ls?.full=true'
	method = 'get';
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;But an error occured.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;IMG title="1.JPG" alt="1.JPG" src="https://communities.sas.com/t5/image/serverpage/image-id/3640i1484CBD692C7D345/image-size/original?v=v2&amp;amp;px=-1" border="0" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;May I know how to solve the error? Thank you!&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jun 2016 03:43:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Failed-to-transcode-data-from-UTF-16LE-to-wlatin1/m-p/277754#M55814</guid>
      <dc:creator>jei</dc:creator>
      <dc:date>2016-06-16T03:43:35Z</dc:date>
    </item>
    <item>
      <title>Re: Failed to transcode data from UTF-16LE to wlatin1</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Failed-to-transcode-data-from-UTF-16LE-to-wlatin1/m-p/277761#M55818</link>
      <description>&lt;P&gt;Can you change your SAS session's encoding &amp;nbsp;into utf-16le? in sas configure file ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jun 2016 05:20:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Failed-to-transcode-data-from-UTF-16LE-to-wlatin1/m-p/277761#M55818</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-06-16T05:20:35Z</dc:date>
    </item>
    <item>
      <title>Re: Failed to transcode data from UTF-16LE to wlatin1</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Failed-to-transcode-data-from-UTF-16LE-to-wlatin1/m-p/277762#M55819</link>
      <description>&lt;P&gt;The error point to bad characters in the program itself. This very web site embeds such characters in posted programs.&lt;/P&gt;
&lt;P&gt;Admins, anything you can do to avoid this?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try this cleaned version:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;filename&lt;/FONT&gt;&lt;FONT face="SAS Monospace" size="1"&gt; outfile &lt;/FONT&gt;&lt;FONT color="#800080" face="SAS Monospace" size="1"&gt;'C:\Users\jgmanalo\Desktop\Sample1\FromURL\OutXML.xml'&lt;/FONT&gt; &lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;encoding&lt;/FONT&gt;&lt;FONT face="SAS Monospace" size="1"&gt;=&lt;/FONT&gt;&lt;FONT color="#800080" face="SAS Monospace" size="1"&gt;'UTF-8'&lt;/FONT&gt;&lt;FONT face="SAS Monospace" size="1"&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;libname&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="SAS Monospace" size="1"&gt;&lt;FONT face="SAS Monospace" size="1"&gt; source &lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;xml&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt; &lt;FONT color="#800080" face="SAS Monospace" size="1"&gt;&lt;FONT color="#800080" face="SAS Monospace" size="1"&gt;&lt;FONT color="#800080" face="SAS Monospace" size="1"&gt;'C:\Users\jgmanalo\Desktop\Sample1\FromURL\OutXML.xml'&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="SAS Monospace" size="1"&gt;&lt;FONT face="SAS Monospace" size="1"&gt;;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000080" face="SAS Monospace" size="1"&gt;&lt;FONT color="#000080" face="SAS Monospace" size="1"&gt;&lt;FONT color="#000080" face="SAS Monospace" size="1"&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt; &lt;STRONG&gt;&lt;FONT color="#000080" face="SAS Monospace" size="1"&gt;&lt;FONT color="#000080" face="SAS Monospace" size="1"&gt;&lt;FONT color="#000080" face="SAS Monospace" size="1"&gt;http&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;out&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="SAS Monospace" size="1"&gt;&lt;FONT face="SAS Monospace" size="1"&gt;=outfile &lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;url&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="SAS Monospace" size="1"&gt;&lt;FONT face="SAS Monospace" size="1"&gt;=&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#800080" face="SAS Monospace" size="1"&gt;&lt;FONT color="#800080" face="SAS Monospace" size="1"&gt;&lt;FONT color="#800080" face="SAS Monospace" size="1"&gt;'https://rbc-svr-pi/webacs/api/v1/data/ClientDetails?.full=true'&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt; &lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="1"&gt;method&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="SAS Monospace" size="1"&gt;&lt;FONT face="SAS Monospace" size="1"&gt;=&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#800080" face="SAS Monospace" size="1"&gt;&lt;FONT color="#800080" face="SAS Monospace" size="1"&gt;&lt;FONT color="#800080" face="SAS Monospace" size="1"&gt;'get'&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="SAS Monospace" size="1"&gt;&lt;FONT face="SAS Monospace" size="1"&gt;;&lt;/FONT&gt;&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#000080" face="SAS Monospace" size="1"&gt;&lt;FONT color="#000080" face="SAS Monospace" size="1"&gt;&lt;FONT color="#000080" face="SAS Monospace" size="1"&gt;run&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="SAS Monospace" size="1"&gt;&lt;FONT face="SAS Monospace" size="1"&gt;;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jun 2016 05:39:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Failed-to-transcode-data-from-UTF-16LE-to-wlatin1/m-p/277762#M55819</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2016-06-16T05:39:30Z</dc:date>
    </item>
    <item>
      <title>Re: Failed to transcode data from UTF-16LE to wlatin1</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Failed-to-transcode-data-from-UTF-16LE-to-wlatin1/m-p/277767#M55821</link>
      <description>The error is still the same.</description>
      <pubDate>Thu, 16 Jun 2016 05:55:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Failed-to-transcode-data-from-UTF-16LE-to-wlatin1/m-p/277767#M55821</guid>
      <dc:creator>jei</dc:creator>
      <dc:date>2016-06-16T05:55:09Z</dc:date>
    </item>
    <item>
      <title>Re: Failed to transcode data from UTF-16LE to wlatin1</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Failed-to-transcode-data-from-UTF-16LE-to-wlatin1/m-p/277768#M55822</link>
      <description>&lt;P&gt;Grrr. Yes the rogue characters have been inserted again.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try the attached file.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jun 2016 06:04:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Failed-to-transcode-data-from-UTF-16LE-to-wlatin1/m-p/277768#M55822</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2016-06-16T06:04:15Z</dc:date>
    </item>
    <item>
      <title>Re: Failed to transcode data from UTF-16LE to wlatin1</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Failed-to-transcode-data-from-UTF-16LE-to-wlatin1/m-p/277771#M55824</link>
      <description>still the same.</description>
      <pubDate>Thu, 16 Jun 2016 06:16:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Failed-to-transcode-data-from-UTF-16LE-to-wlatin1/m-p/277771#M55824</guid>
      <dc:creator>jei</dc:creator>
      <dc:date>2016-06-16T06:16:25Z</dc:date>
    </item>
    <item>
      <title>Re: Failed to transcode data from UTF-16LE to wlatin1</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Failed-to-transcode-data-from-UTF-16LE-to-wlatin1/m-p/277773#M55825</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Mmm don't know what to say except that this web site really screws characters sometimes (but not always).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I get the same message as you but after cleaning I can run the code and I get the expected proc http error&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ERROR: Host name resolution failed&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To clean, delete every space and end-of-line character and add them manually again.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Run each line separately to see which one still contains bad characters.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jun 2016 06:22:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Failed-to-transcode-data-from-UTF-16LE-to-wlatin1/m-p/277773#M55825</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2016-06-16T06:22:44Z</dc:date>
    </item>
    <item>
      <title>Re: Failed to transcode data from UTF-16LE to wlatin1</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Failed-to-transcode-data-from-UTF-16LE-to-wlatin1/m-p/277779#M55826</link>
      <description>&lt;P&gt;Hi &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/16961"&gt;@ChrisNZ﻿&lt;/a&gt;&lt;/P&gt;&lt;P&gt;I retyped all and no error occured. But no data on the resuletd XML file as seen on the image below&lt;/P&gt;&lt;P&gt;&lt;IMG title="2.JPG" alt="2.JPG" src="https://communities.sas.com/t5/image/serverpage/image-id/3642i7DC3CF05BE0915AC/image-size/original?v=v2&amp;amp;px=-1" border="0" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;May I know if you have any idea about resful API on sas and how to code it? I think the step on the link should follow in order to get the data.&lt;/P&gt;&lt;P&gt;&lt;A href="https://developer.cisco.com/media/prime-infrastructure-api-reference-v3-0/192.168.115.187/webacs/api/v1/index7733.html?id=tutorials" target="_blank"&gt;https://developer.cisco.com/media/prime-infrastructure-api-reference-v3-0/192.168.115.187/webacs/api/v1/index7733.html?id=tutorials&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jun 2016 06:36:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Failed-to-transcode-data-from-UTF-16LE-to-wlatin1/m-p/277779#M55826</guid>
      <dc:creator>jei</dc:creator>
      <dc:date>2016-06-16T06:36:06Z</dc:date>
    </item>
    <item>
      <title>Re: Failed to transcode data from UTF-16LE to wlatin1</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Failed-to-transcode-data-from-UTF-16LE-to-wlatin1/m-p/277780#M55827</link>
      <description>&lt;P&gt;That's a a different issue. Now that this is solved and the code can run, best to open a new incident with the appropriate title so the right people can be involved.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jun 2016 06:39:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Failed-to-transcode-data-from-UTF-16LE-to-wlatin1/m-p/277780#M55827</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2016-06-16T06:39:24Z</dc:date>
    </item>
    <item>
      <title>Re: Failed to transcode data from UTF-16LE to wlatin1</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Failed-to-transcode-data-from-UTF-16LE-to-wlatin1/m-p/277791#M55829</link>
      <description>Alright. Thanks!</description>
      <pubDate>Thu, 16 Jun 2016 07:02:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Failed-to-transcode-data-from-UTF-16LE-to-wlatin1/m-p/277791#M55829</guid>
      <dc:creator>jei</dc:creator>
      <dc:date>2016-06-16T07:02:56Z</dc:date>
    </item>
    <item>
      <title>Re: Failed to transcode data from UTF-16LE to wlatin1</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Failed-to-transcode-data-from-UTF-16LE-to-wlatin1/m-p/277804#M55830</link>
      <description>Please mark the thread as solved.</description>
      <pubDate>Thu, 16 Jun 2016 08:19:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Failed-to-transcode-data-from-UTF-16LE-to-wlatin1/m-p/277804#M55830</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2016-06-16T08:19:55Z</dc:date>
    </item>
    <item>
      <title>Re: Failed to transcode data from UTF-16LE to wlatin1</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Failed-to-transcode-data-from-UTF-16LE-to-wlatin1/m-p/277819#M55833</link>
      <description>&lt;P&gt;Can you run OS command at SAS side ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;x 'curl -k "https://user:password@my_server/webacs/api/v1/data/Devices?.full=true"  &amp;gt;  C:\Users\jgmanalo\Desktop\Sample1\FromURL\OutXML.xml ';
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Then run my code .&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jun 2016 09:15:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Failed-to-transcode-data-from-UTF-16LE-to-wlatin1/m-p/277819#M55833</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-06-16T09:15:07Z</dc:date>
    </item>
    <item>
      <title>Re: Failed to transcode data from UTF-16LE to wlatin1</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Failed-to-transcode-data-from-UTF-16LE-to-wlatin1/m-p/278036#M55908</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt; Sorry I didn't see your answer when I asked for the solved flag to be set. I didn't mean to discount your post.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jun 2016 21:11:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Failed-to-transcode-data-from-UTF-16LE-to-wlatin1/m-p/278036#M55908</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2016-06-16T21:11:50Z</dc:date>
    </item>
    <item>
      <title>Re: Failed to transcode data from UTF-16LE to wlatin1</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Failed-to-transcode-data-from-UTF-16LE-to-wlatin1/m-p/278057#M55912</link>
      <description>&lt;P&gt;Chris,&lt;/P&gt;
&lt;P&gt;That is OK. I really don't care about&amp;nbsp;that.&lt;/P&gt;
&lt;P&gt;You must are using IE ? Try Chrome .&lt;/P&gt;</description>
      <pubDate>Fri, 17 Jun 2016 00:49:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Failed-to-transcode-data-from-UTF-16LE-to-wlatin1/m-p/278057#M55912</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-06-17T00:49:32Z</dc:date>
    </item>
    <item>
      <title>Re: Failed to transcode data from UTF-16LE to wlatin1</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Failed-to-transcode-data-from-UTF-16LE-to-wlatin1/m-p/278082#M55922</link>
      <description>yes I'm trying this code</description>
      <pubDate>Fri, 17 Jun 2016 02:32:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Failed-to-transcode-data-from-UTF-16LE-to-wlatin1/m-p/278082#M55922</guid>
      <dc:creator>jei</dc:creator>
      <dc:date>2016-06-17T02:32:53Z</dc:date>
    </item>
    <item>
      <title>Re: Failed to transcode data from UTF-16LE to wlatin1</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Failed-to-transcode-data-from-UTF-16LE-to-wlatin1/m-p/278130#M55934</link>
      <description>&lt;P&gt;Hi &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried this code&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;x 'curl -k "https://user:password@my_server/webacs/api/v1/dat​a/Devices?.full=true"  &amp;gt;  C:\Users\jgmanalo\Desktop\Sample1\FromURL\OutXML.x​ml ';&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;It says that &amp;gt;C does not recognized.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and I tried only the&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;x &lt;SPAN class="token string"&gt;&lt;FONT color="#800000"&gt;'curl -k "https://user:password@my_server/webacs/api/v1/dat​a/Devices?.full=true" &amp;gt;OutXML.x​ml ';&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="token string"&gt;&lt;FONT color="#800000"&gt;&lt;FONT color="#000000"&gt;and it was successful. But I don't know where local file it was saved and when I'm searching it it says that no result found.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="token string"&gt;&lt;FONT color="#800000"&gt;&lt;FONT color="#000000"&gt;Do you have any idea where i can found the file?&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="token string"&gt;&lt;FONT color="#800000"&gt;&lt;FONT color="#000000"&gt;Thank you!&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Jun 2016 08:10:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Failed-to-transcode-data-from-UTF-16LE-to-wlatin1/m-p/278130#M55934</guid>
      <dc:creator>jei</dc:creator>
      <dc:date>2016-06-17T08:10:51Z</dc:date>
    </item>
    <item>
      <title>Re: Failed to transcode data from UTF-16LE to wlatin1</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Failed-to-transcode-data-from-UTF-16LE-to-wlatin1/m-p/278132#M55935</link>
      <description>&lt;P&gt;Maybe your SAS is not under WIN , is under Linux/AIX &amp;nbsp;?&lt;/P&gt;
&lt;P&gt;Do you know any available fold you can use like &amp;nbsp;/home/etc/out.xml&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or Can you talk to your Admin and let him tell where it should be ?&lt;/P&gt;</description>
      <pubDate>Fri, 17 Jun 2016 08:21:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Failed-to-transcode-data-from-UTF-16LE-to-wlatin1/m-p/278132#M55935</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-06-17T08:21:51Z</dc:date>
    </item>
    <item>
      <title>Re: Failed to transcode data from UTF-16LE to wlatin1</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Failed-to-transcode-data-from-UTF-16LE-to-wlatin1/m-p/326958#M72910</link>
      <description>&lt;P&gt;Hi;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I Know it's an old topic but I have same problem and I don't know how can I solve it. I'm new at SAS, I try to learn it. When I try to list data like this &amp;nbsp; &amp;nbsp;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/6863i81FCE70E4CC2DE4B/image-size/medium?v=1.0&amp;amp;px=-1" border="0" alt="project.jpg" title="project.jpg" /&gt;&amp;nbsp;then this error occures,&amp;nbsp;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/6864i0D8D58AC4BA21A77/image-size/medium?v=1.0&amp;amp;px=-1" border="0" alt="error_message.jpg" title="error_message.jpg" /&gt;&amp;nbsp;thank you for your help.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Jan 2017 06:52:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Failed-to-transcode-data-from-UTF-16LE-to-wlatin1/m-p/326958#M72910</guid>
      <dc:creator>Diyarhan</dc:creator>
      <dc:date>2017-01-24T06:52:07Z</dc:date>
    </item>
  </channel>
</rss>

