<?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: Is it possible to run a SAS program from JAVA? in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Is-it-possible-to-run-a-SAS-program-from-JAVA/m-p/141962#M11332</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yep, it is possible.&amp;nbsp; Try this article:&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.lexjansen.com/pharmasug/2001/proceed/techtech/tt07_curnutt.pdf" title="http://www.lexjansen.com/pharmasug/2001/proceed/techtech/tt07_curnutt.pdf"&gt;http://www.lexjansen.com/pharmasug/2001/proceed/techtech/tt07_curnutt.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or check out SAS AppDev Studio.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 13 Mar 2014 11:52:17 GMT</pubDate>
    <dc:creator>RW9</dc:creator>
    <dc:date>2014-03-13T11:52:17Z</dc:date>
    <item>
      <title>Is it possible to run a SAS program from JAVA?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Is-it-possible-to-run-a-SAS-program-from-JAVA/m-p/141961#M11331</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: black; font-family: 'Tahoma','sans-serif'; font-size: 8pt;"&gt;Dear all,&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black; font-family: 'Tahoma','sans-serif'; font-size: 8pt;"&gt;I would like to know whether it is possible to run SAS programs from a JAVA (e.g. Eclipse) running on a WINDOWS computer; and if yes, what is the best way.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black; font-family: 'Tahoma','sans-serif'; font-size: 8pt;"&gt;Thank you in advance.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black; font-family: 'Tahoma','sans-serif'; font-size: 8pt;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black; font-family: 'Tahoma','sans-serif'; font-size: 8pt;"&gt;Fabrice&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Mar 2014 08:04:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Is-it-possible-to-run-a-SAS-program-from-JAVA/m-p/141961#M11331</guid>
      <dc:creator>Fabrice</dc:creator>
      <dc:date>2014-03-13T08:04:37Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to run a SAS program from JAVA?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Is-it-possible-to-run-a-SAS-program-from-JAVA/m-p/141962#M11332</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yep, it is possible.&amp;nbsp; Try this article:&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.lexjansen.com/pharmasug/2001/proceed/techtech/tt07_curnutt.pdf" title="http://www.lexjansen.com/pharmasug/2001/proceed/techtech/tt07_curnutt.pdf"&gt;http://www.lexjansen.com/pharmasug/2001/proceed/techtech/tt07_curnutt.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or check out SAS AppDev Studio.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Mar 2014 11:52:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Is-it-possible-to-run-a-SAS-program-from-JAVA/m-p/141962#M11332</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2014-03-13T11:52:17Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to run a SAS program from JAVA?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Is-it-possible-to-run-a-SAS-program-from-JAVA/m-p/141963#M11333</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use the SAS IOM Bridge which allows you to use CORBA in your Java application (e.g inside Eclipse) to remotely execute SAS code as well as reading SAS data.&lt;/P&gt;&lt;P&gt;The SAS AppDev Studio comes with the required JARs.&lt;/P&gt;&lt;P&gt;In Eclipse you have to add the libraries under SASVersionedJarRepository which you will find under your local SAS installation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Lexjansen approach previously mentioned by RW9 does not actually run the SAS program but generates SAS code from Java then you have to submit the generated program using SAS connect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The best way?&lt;/P&gt;&lt;P&gt;If you must run the SAS code from inside the Java application either you have to use SAS IOM Bridge. This requires understanding of SAS IOM as well as CORBA to set up.&lt;/P&gt;&lt;P&gt;Altenatively you need sas.exe on your system then you can use Runtime.getRuntime().exec from inside eclipse.&lt;/P&gt;&lt;P&gt;Choose what suits your environment and skills the best.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Mar 2014 14:39:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Is-it-possible-to-run-a-SAS-program-from-JAVA/m-p/141963#M11333</guid>
      <dc:creator>PeterAndersson</dc:creator>
      <dc:date>2014-03-14T14:39:58Z</dc:date>
    </item>
  </channel>
</rss>

