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?
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
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.
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!
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.
Ready to level-up your skills? Choose your own adventure.