Java API for connecting to SAS

Is there a Java API that I can use to connect to the metdata SAS server so that I can dynamically create info maps through Java? Basically, I want to be able to execute "proc infomap" blocks through Java code, is this possible?

THANKS!

+4
source share
1 answer

You can run "proc infomap" (or any other arbitrary sas code) from java if that is what you need to do. There are two ways to do this, either by connecting to a workspace server or to a sas connect spawner. For more information about this, see this documentation.

http://support.sas.com/documentation/cdl/en/itechjcdg/61499/PDF/default/itechjcdg.pdf

You can also directly connect to metadata separated from java, but I don't know if there is a public api for creating info maps.

+3
source

Source: https://habr.com/ru/post/1311244/


All Articles