Do you support deploy under a trial license?

A forum dedicated to WPF version of LightningChart Ultimate.

Moderator: Queue Moderators

Post Reply
bool001
Posts: 9
Joined: Wed Apr 04, 2018 3:06 am

Do you support deploy under a trial license?

Post by bool001 » Mon Apr 09, 2018 12:19 pm

I use the trial license now. When I deploy my app and installed into other computers, the whole views related to LightningChartUltimate were not initialized, and I can't see them.

I want to log the exception when initialize LightningChartUltimate look like below, but I can't see the log.

Code: Select all

 try
{
       _chart = new LightningChartUltimate();
}
catch (Exception e)
{
        logger.Error($"Fail to create LightningChart. e: {e}");
        return;
}
I want to know if it is the problem of trial license?
And I want to a way to deploy under the trial license. Thank you!

ArctionKestutis
Posts: 552
Joined: Mon Mar 14, 2016 9:22 am

Re: Do you support deploy under a trial license?

Post by ArctionKestutis » Tue Apr 10, 2018 8:04 am

Hello,

For normal deployment process:
* First, then you deploy your application, you should extract and apply ‘Deployment Key’ as instructed in User’s Manual chapters 3.3-3.4.
* Second, you should deliver Arction DLLs with your executable (see User’s Manual chapter 26.1 Referenced assemblies):

Please note, you could not extract valid ‘Deployment Key’ from Trial License. HOWEVER, your application is still going to work on target computer. As noted in above mentioned chapter, without setting Deployment Key in the application, it enters into 30 days trial mode in the target machine.

My guess that you don't see LightningChartUltimate because DLLs are missing.

Hope this helps.
All the best.

bool001
Posts: 9
Joined: Wed Apr 04, 2018 3:06 am

Re: Do you support deploy under a trial license?

Post by bool001 » Wed Apr 11, 2018 2:04 am

@ArctionKestutis Thanks! Your good answer saves my time!

Post Reply