The LeanFT SDK needs to be properly initialized.
Here are examples of how to properly initialize the LeanFT SDK for Java and C#
Java:
--------
Simple initialization:
SDK.init(SDKConfigurationFactory.createDefaultSDKConfiguration());
With custom server address:
ModifiableSDKConfiguration config = SDKConfigurationFactory.createDefaultSDKConfiguration();
config.setServerAddress(new URI(''ws://localhost:2012''));
SDK.init(config);
C#
--------
Simple initialization:
SDK.Init(new SdkConfiguration());
With custom server address:
SDK.Init(new SdkConfiguration{ ServerAddress = new Uri(''ws://localhost:2012'')});
Micro Focus has more information about using your [own frameworks at this link][1].
[1]: https://leanft-help.saas.hpe.com/en/14.01/HelpCenter/Content/HowTo/CustomFrameworks.htm