BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Turla
SAS Employee

im trying to connect to sas viya server, but get an exception 

'unable to find valid certification path to requested target'

what can i make with this
like ignoring or smth else
also i have no access for certificate

1 ACCEPTED SOLUTION

Accepted Solutions
alexal
SAS Employee

@Turla ,

 

The root CA certificate needs to be provided to CAS clients. Clients include SAS 9.4M5 clients that can directly access CAS, SWAT (Java, R, Lua), Python, and REST clients. Please see more details in SAS® Viya® 3.5 Administration -> Data in Motion -> How To.

View solution in original post

3 REPLIES 3
alexal
SAS Employee

@Turla ,

 

How are you trying to connect? Via the browser or EG?

Turla
SAS Employee

through the java code

public static void main(String[] args) throws IOException, CASException, KeyManagementException, NoSuchAlgorithmException {
            
            //-----------------------
            CASClientInterface client = new CASClient("**.**.**.**", 5570, "****", "****"); // 1

            String path = "CASUSER.HEART";
            String table = "HEART";
            String vars = "Status,sex,AgeAtDeath,Weight_Status,Smoking_Status";

            //обращаемся к таблице
            if (path != null){
                LoadTableOptions lto = new LoadTableOptions();
                lto.setPath(path);
                client.invoke(lto);
            }

            //создаем настройки выборки
            FetchOptions opt = new FetchOptions();
            Castable tble = new Castable();
            tble.setName(table);
            String[] vrs = getStringArrayProperty(vars);

            if(vrs != null){
                tble.setParameter(Castable.KEY_VARS, vrs);
            }

            opt.setTable(tble);
            opt.setSasTypes(false);

            //выбираем данные
            CASActionResults<CASValue> results = client.invoke(opt);
            //выводим результат
            if (results.getResultsCount() > 0){
                dumpByRow((CASTable) results.getResult(0).getValue());
            }
        }

 

alexal
SAS Employee

@Turla ,

 

The root CA certificate needs to be provided to CAS clients. Clients include SAS 9.4M5 clients that can directly access CAS, SWAT (Java, R, Lua), Python, and REST clients. Please see more details in SAS® Viya® 3.5 Administration -> Data in Motion -> How To.

SAS INNOVATE 2024

Innovate_SAS_Blue.png

Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.

If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website. 

Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Get the $99 certification deal.jpg

 

 

Back in the Classroom!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 3 replies
  • 843 views
  • 0 likes
  • 2 in conversation