BookmarkSubscribeRSS Feed
zyp911
Calcite | Level 5

I created client app(.NET) and  tried to connect to remote SAS server , but I could not connect to remote server.

Code:

                // Connect remote SAS server

                SASObjectManager.IObjectFactory2 obObjectFactory = new SASObjectManager.ObjectFactoryMulti2();

                SASObjectManager.ServerDef obServer =  new SASObjectManager.ServerDef();

                obServer.MachineDNSName = "abc.sas.com";

                obServer.Protocol = SASObjectManager.Protocols.ProtocolBridge;

                obServer.Port = Convert.ToInt32(8591);

                obServer.ClassIdentifier = "440196d4-90f0-11d0-9f41-00a024bb830c";

                object _workspace = obObjectFactory.CreateObjectByServer( "MyObject", true, obServer,userid,password);

Catch exception "The launch of the server process failed because of a SAS kernel initialization failure"

How to solve this problem?

2 REPLIES 2
ChrisHemedinger
Community Manager

I have a sample .NET application on GitHub, and it shows how to connect.  (See the SasServer.cs file in particular.)  Your sample code looks correct though, so it might be that the SAS command that is registered to launch with SAS object spawner has a bad option.  Also, it's best practice to use the name of the SAS server as registered in metadata ("SASApp" by default).  SAS has a feature of "server security" that may enforce the use of the proper name as described within metadata.

Chris

Check out SAS Innovate on-demand content! Watch the main stage sessions, keynotes, and over 20 technical breakout sessions!
kshirley
Calcite | Level 5

Hi Zyp,  here 's a little help:

The launch of the server process failed because of a SAS kernel initialization failure.

Explanation:   For some reason, the SAS kernel cannot initialize.

Resolution:  Check the command line of the server to make sure that there are no invalid command line options. Also check any configuration files that are used to make sure that they are correct.

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

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

View all other training opportunities.

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