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

Learn from the Experts! Check out the huge catalog of free sessions in the Ask the Expert webinar series.
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 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 2128 views
  • 0 likes
  • 3 in conversation