Questions tagged [fusion]

Fusion is the code name for the assembly loader in .NET. Alternatively, it is a compiler optimization that removes intermediate data structures from composed operations on those data structures (also known as "deforestation").

It is fusion's job to seek out assemblies and load them into the current app domain so that a program can execute. The Assembly binding log viewer shows where it looks to find assemblies, and any issues that may arrise in loading them.

225 questions
2
votes
1 answer

Win32 App Compat: Is there a manifest entry to opt my application out of NoExecute?

Is there an assembly manifest (or perhaps a PE Image flag) to opt-out of (or opt-in to) NoExecute protection? By default, Windows only protects its own binaries with NoExecute protection: But i might want to opt my executable into NX protection. i…
Ian Boyd
  • 246,734
  • 253
  • 869
  • 1,219
2
votes
1 answer

Poor performance consuming Analysis service Tabular model via Excel

we run MS Analysis service OnPrem and data are consumed via Power BI and via Excel using Tabular model. In some cases, we are experiencing some performance issue. If we compare some “query execution” from PowerBI and from Excel we notice very…
2
votes
0 answers

linkedConfiguration not taking effect

I have a .dll.config in which I'd like to place a linkedConfiguration:
2
votes
1 answer

Change Lucidworks Fusion 3.15 default cluster

I have installed lucidworks fusion 3.1.5 server in my computer. As you know default solr version for this fusion is 6.6, but I have already configured existing zookeeper cluster with solr v7.2.1. After a lot of researches I have managed to connect…
2
votes
2 answers

Fusion logs show no error after "Could not load file or assembly"

I have a Windows service app that installs beautfully on my localhost (Win8 64bit) and my test VM (WinServer2016). And we have installed it on various other OS's including Win 7 64bit. But when I try to install in a client's desktop (also a Win7…
Casey Crookston
  • 13,016
  • 24
  • 107
  • 193
2
votes
1 answer

Solving Assembly not Found | FileNotFoundException | Fusion Log

I am trying to deploy my solution package (wsp) to SharePoint 2007 environment. The WSP contains a feature which loads the feature receiver class to deploy a timer job at run time. While deploying this WSP, I am consistently getting Feature …
Madhur Ahuja
  • 22,211
  • 14
  • 71
  • 124
2
votes
0 answers

The result of boost::make_unfused cannot be assigned to a boost::function object

The following code is a snippet that illustrates the problem: #include #include #include #include using IntFunc = boost::function
Vik
  • 21
  • 1
2
votes
1 answer

generator for boost::fusion::map initialization with noncopyable value type

I'd like to create a base class which is able to contain N sockets. These are ZeroMQ sockets, and they are not copyable. In that case base class can generically implement shutdown behaviour on managed sockets and other service functions. Whereas…
ovanes
  • 5,483
  • 2
  • 34
  • 60
2
votes
2 answers

IntPtr.ToInt32() Marshal.ThrowExceptionForHR() - Querying the GAC

I've been using some code I've found on the net to query the GAC using the fusion.dll however I've recently been getting a few error reports back complaining of an OverflowException. // If assemblyName is not fully qualified, a random matching…
Marlon
  • 2,129
  • 3
  • 21
  • 40
2
votes
1 answer

Assembly binding error - fusion log and dependency browser mismatch

I'm chasing down an assembly loading/binding error that has popped up recently. During my investigation I've found a confusing contradiction (assuming I'm parsing the fusion log correctly). The exception that is thrown by my application at startup…
scubasteve
  • 2,718
  • 4
  • 38
  • 49
2
votes
1 answer

The custom Factory of ServiceHost cannot be loaded from GAC

I have a WCF service hosted in IIS and the service is working fine. Actually it's using the following Global.asax and OrderService.svc files in order. <%@ Application Codebehind="Global.asax.cs" Inherits="MyCompany.MyOrderServices.Global"…
rebulanyum
  • 487
  • 10
  • 21
2
votes
0 answers

Mosek Markowitz Portfolio Transaction Costs - Python Fusion

I am trying to better understand how various parts of the mosek optimizer work and cannot quite understand the logic of the following constraints etc. It I have the following code: n = 3 x0 = [-20.0, -50.0, -10.0] t = [0.01, 0.01, 0.01] TC =…
bpython
  • 241
  • 5
  • 15
2
votes
0 answers

Fusion Chart Multiple Charts With PHP & MySQl

I am generating a chart from fetching data in my MYSQL database. The JavaScript library I am using is Fusion Charts Suite XT. I have tried the following code which only renders one chart from one single query on a page. I am having trouble rendering…
Dr. Code
  • 21
  • 2
2
votes
1 answer

Initialise const fusion boost list from derived class

Is it possible to initialise a member fusion vector to a value specified in a derived class without making the base class a template class? like this: class container { const auto children; container (auto children):children (children){} } class…
2
votes
1 answer

Trying to Modify a DLL (decompile/re-compile) referenced by another DLL.

Here is the situation. I have DLLs A and B. A.dll reference and uses code in B.dll. B.dLL isn't doing what it is supposed to, so I'm trying to add some debug statements to it. I Decompile B.dll using ilSpy and add the code I want, compile a new…
TizzyFoe
  • 1,489
  • 1
  • 15
  • 28