Jump to content
Software FX Community

runtime error


graeme.mclean

Recommended Posts

I am getting an error when trying to run any of the charts in my xbap application:-

 {"Cannot create instance of 'Chart' defined in assembly 'ChartFX.WPF, Version=0.8.2937.31814, Culture=neutral, PublicKeyToken=a1878e2052c08dce'. Exception has been thrown by the target of an invocation.  Error at object 'chartExpander' in markup file 'WPFSpike;component/default.xaml' Line 20 Position 18."}

Any ideas?

 Cheers,

Graeme

Link to comment
Share on other sites

XBAPs run in low trust and unfortunately since .NET 1.0 the licensing scheme for third party controls has not worked properly in low-trust. The licensing API tries to open your exe as a file (even though it is already running) to extract the resource that contains the license info and in low-trust these API will fail. You can verify this by creating a simple licensed control and try to run it in low-trust.

To workaround this, we have implemented a "manual" licensing scheme where you call an static function somewhere in your app before any chart is created, we handle this scenario on a per-user basis so please contact wpf at softwarefx dot com for more info.

Regards,

JuanC

Link to comment
Share on other sites

  • 9 months later...

  Hello,

 I'm having a similar runtime error:

 Message=" 'System.Windows.Media.Media3D.MeshGeometry3D' is not a validvalue for property 'Geometry'.  Error in markup file'ChartFX.WPF;component/themes/designresources.xaml'."  Source="PresentationFramework"

I'm using a standalone application, witch runs in full trust(not the previous problem ). The only thing i have done is this:

  private void FX_DrawChart(Grid g)   {   ChartFX.WPF.Chart fxChart = new ChartFX.WPF.Chart();  ***     //FX_DrawTitle();   //FX_CreateSeries();   g.Children.Add(fxChart);   } 

 

Where g is the grid where the chart will be added, but the applications crashes  in *** with the attached StackTrace.

The strange is, I do the same thing in a test project and everything gone well. I can

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...