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

SAS For Dummies 3rd Edition! Check out the new edition, covering SAS 9.4, SAS Viya, and all of the modern ways to use SAS!
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.

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

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